summaryrefslogtreecommitdiff
path: root/jstests/sharding/features3.js
diff options
context:
space:
mode:
authorSpencer T Brody <spencer@mongodb.com>2014-11-21 14:37:09 -0500
committerSpencer T Brody <spencer@mongodb.com>2014-12-01 16:31:10 -0500
commit06928da7d219ac9085d666274af4a82d81e99d4c (patch)
treed7fe946b2c80e79c831cd573864f12a9b53328a3 /jstests/sharding/features3.js
parent080fb4ec9e610402aeee0db4d37cf291812a3c58 (diff)
downloadmongo-06928da7d219ac9085d666274af4a82d81e99d4c.tar.gz
SERVER-14143 Re-enable javascript interruption.
This restores the behavior from 2.6 to interrupt server-side javascript contexts, but doesn't fix the existing bugs with it due to multiple javascript scopes being associated with a single opId and opIds changing between getMore calls.
Diffstat (limited to 'jstests/sharding/features3.js')
-rw-r--r--jstests/sharding/features3.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/jstests/sharding/features3.js b/jstests/sharding/features3.js
index 6199c45c8b5..5496ad37ecd 100644
--- a/jstests/sharding/features3.js
+++ b/jstests/sharding/features3.js
@@ -52,8 +52,6 @@ assert.eq(1, x.count, "XXX1");
assert.eq("test.bar", x.ns, "XXX2");
assert(!x.sharded, "XXX3: " + tojson(x));
-if (0) {// SERVER-14143
-
// fork shell and start querying the data
var start = new Date();
@@ -139,8 +137,6 @@ join();
var end = new Date();
print("elapsed: " + (end.getTime() - start.getTime()));
-}
-
// test fsync command on non-admin db
x = db.runCommand("fsync");
assert(!x.ok , "fsync on non-admin namespace should fail : " + tojson(x));