You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/09/01 15:06:46 UTC

[2/2] couchdb commit: updated refs/heads/master to 7465fe8

flush stats in test


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/32412d95
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/32412d95
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/32412d95

Branch: refs/heads/master
Commit: 32412d95333e058b6a9fc2aab1c714d419575eef
Parents: eba4562
Author: Robert Newson <rn...@apache.org>
Authored: Fri Aug 29 21:36:05 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Mon Sep 1 12:16:05 2014 +0100

----------------------------------------------------------------------
 share/www/script/test/changes.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/32412d95/share/www/script/test/changes.js
----------------------------------------------------------------------
diff --git a/share/www/script/test/changes.js b/share/www/script/test/changes.js
index d1c0c02..d5a4236 100644
--- a/share/www/script/test/changes.js
+++ b/share/www/script/test/changes.js
@@ -609,9 +609,9 @@ couchTests.changes = function(debug) {
   TEquals("0", resp.results[0].id);
   TEquals("1", resp.results[1].id);
 
-  TEquals(0, CouchDB.requestStats(['couchdb', 'httpd', 'clients_requesting_changes']).value);
+  TEquals(0, CouchDB.requestStats(['couchdb', 'httpd', 'clients_requesting_changes'], true).value);
   CouchDB.request("GET", "/" + db.name + "/_changes");
-  TEquals(0, CouchDB.requestStats(['couchdb', 'httpd', 'clients_requesting_changes']).value);
+  TEquals(0, CouchDB.requestStats(['couchdb', 'httpd', 'clients_requesting_changes'], true).value);
 
   // COUCHDB-1256
   T(db.deleteDb());