diff options
author | Mike Grundy <michael.grundy@10gen.com> | 2016-02-04 12:29:53 -0500 |
---|---|---|
committer | Mike Grundy <michael.grundy@10gen.com> | 2016-02-05 15:00:51 -0500 |
commit | b4b016d9732a189fceddbcad5be378a7848d95b1 (patch) | |
tree | feeff66064abfc886e2cc01f83262fe5be43b31e /jstests/noPassthrough/write_local.js | |
parent | 2689df80fa1a476b26d02937456d34191feb1087 (diff) | |
download | mongo-b4b016d9732a189fceddbcad5be378a7848d95b1.tar.gz |
SERVER-22341 fix jslint errors in jstests/noPassthrough with eslint --fix
Diffstat (limited to 'jstests/noPassthrough/write_local.js')
-rw-r--r-- | jstests/noPassthrough/write_local.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/noPassthrough/write_local.js b/jstests/noPassthrough/write_local.js index 66b50f968ca..2f9cedba080 100644 --- a/jstests/noPassthrough/write_local.js +++ b/jstests/noPassthrough/write_local.js @@ -1,6 +1,6 @@ // SERVER-22011: Deadlock in ticket distribution (function() { - 'use strict' + 'use strict'; // Limit concurrent WiredTiger transactions to maximize locking issues, harmless for other SEs. var options = { verbose: 1 }; @@ -37,11 +37,11 @@ for (var i = 0; i < 1000; i++) { print(local.stats().objects); sleep(1); - }; + } // Wait for parallel shells to terminate and stop our replset. shells.forEach((function(f) { f(); })); replTest.stopSet(); -}()) +}()); |