summaryrefslogtreecommitdiff
path: root/share/www/script/couch.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/script/couch.js')
-rw-r--r--share/www/script/couch.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/www/script/couch.js b/share/www/script/couch.js
index 1c529183..f6c1199a 100644
--- a/share/www/script/couch.js
+++ b/share/www/script/couch.js
@@ -426,7 +426,8 @@ CouchDB.requestStats = function(module, key, test) {
query_arg = "?flush=true";
}
- var stat = CouchDB.request("GET", "/_stats/" + module + "/" + key + query_arg).responseText;
+ var url = "/_stats/" + module + "/" + key + query_arg;
+ var stat = CouchDB.request("GET", url).responseText;
return JSON.parse(stat)[module][key];
}