diff options
Diffstat (limited to 'jstests/noPassthrough/yield_group.js')
-rw-r--r-- | jstests/noPassthrough/yield_group.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/yield_group.js b/jstests/noPassthrough/yield_group.js index 4eb40623e19..91fd2d9b202 100644 --- a/jstests/noPassthrough/yield_group.js +++ b/jstests/noPassthrough/yield_group.js @@ -8,8 +8,8 @@ const worksPerYield = 50; // Start a mongod that will yield every 50 work cycles. - var conn = - MongoRunner.runMongod({setParameter: `internalQueryExecYieldIterations=${worksPerYield}`}); + var conn = MongoRunner.runMongod( + {setParameter: `internalQueryExecYieldIterations = ${worksPerYield}`}); assert.neq(null, conn, 'mongod was unable to start up'); var coll = conn.getDB('test').yield_group; |