diff options
author | Damien F. Katz <damien@apache.org> | 2008-07-22 22:04:58 +0000 |
---|---|---|
committer | Damien F. Katz <damien@apache.org> | 2008-07-22 22:04:58 +0000 |
commit | c63d078f876652088a1c3f344f716306f4a24043 (patch) | |
tree | bdf9a8a7a49a7cc7d23d00611be3ffba10cc3889 /share/www | |
parent | 0d2ec1a8800926543d9c859fe37f761bdf1cd65d (diff) |
Fix for compacted databases reporting 0 documents after compaction
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@678923 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r-- | share/www/script/couch_tests.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index c65e98b5..852f9cfe 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -1331,14 +1331,13 @@ var tests = { T(xhr.status == 202); // compaction isn't instantaneous, loop until done while (db.info().compact_running) {}; - + + restartServer(); var xhr = CouchDB.request("GET", "/test_suite_db/bin_doc/foo.txt"); T(xhr.responseText == "This is a base64 encoded text") T(xhr.getResponseHeader("Content-Type") == "text/plain") - - var compactedsize = db.info().disk_size; - - T(compactedsize < deletesize); + T(db.info().doc_count == 1); + T(db.info().disk_size < deletesize); } }; |