diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2010-08-19 18:21:28 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2010-08-19 18:21:28 +0000 |
commit | 83f5171b8c2c8d30a9858e98679c045dc8a53a28 (patch) | |
tree | 80fcb7fa3139cae919acdc742c3546ada08c1240 /share/www | |
parent | 678cd66689ad9ea2f5c47f41af6bf3b9ae0a3c59 (diff) |
Fix behaviour of the view query option stale=update_after.
Somehow it was not working for all cases.
Issue found by Volker Mische. Thanks.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@987257 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r-- | share/www/script/test/view_update_seq.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/share/www/script/test/view_update_seq.js b/share/www/script/test/view_update_seq.js index 9b07a777..a002536c 100644 --- a/share/www/script/test/view_update_seq.js +++ b/share/www/script/test/view_update_seq.js @@ -79,6 +79,17 @@ couchTests.view_update_seq = function(debug) { T(resp.rows.length == 1); T(resp.update_seq == 101); + // wait 5 seconds for the next assertions to pass in very slow machines + var t0 = new Date(), t1; + do { + CouchDB.request("GET", "/"); + t1 = new Date(); + } while ((t1 - t0) < 5000); + + resp = db.view('test/all_docs', {limit: 1, stale: "ok", update_seq: true}); + T(resp.rows.length == 1); + T(resp.update_seq == 103); + resp = db.view('test/all_docs', {limit: 1, update_seq:true}); T(resp.rows.length == 1); T(resp.update_seq == 103); |