diff options
author | David Storch <david.storch@mongodb.com> | 2019-11-06 23:58:41 +0000 |
---|---|---|
committer | evergreen <evergreen@mongodb.com> | 2019-11-06 23:58:41 +0000 |
commit | 045aa4415cf096c59509c6e6867fe3615f6fd43c (patch) | |
tree | f5b84ae0ad2f76fa95e111e511ebb89cb175f064 /jstests/gle | |
parent | a86ca08c2e7c385821c8bf0eabef16f10e6f4cec (diff) | |
download | mongo-045aa4415cf096c59509c6e6867fe3615f6fd43c.tar.gz |
SERVER-44453 Address several orphaned TODOs.
Diffstat (limited to 'jstests/gle')
-rw-r--r-- | jstests/gle/opcounters_legacy.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/jstests/gle/opcounters_legacy.js b/jstests/gle/opcounters_legacy.js index f4168305e2c..425f6bb4f42 100644 --- a/jstests/gle/opcounters_legacy.js +++ b/jstests/gle/opcounters_legacy.js @@ -128,7 +128,7 @@ assert.eq(opCounters.query + (isMongos ? 0 : 1), db.serverStatus().opcounters.qu // // 5. Getmore. // -// - counted as 1 op per getmore issued, regardless of errors +// - counted as 1 op per getmore issued // t.drop(); @@ -140,8 +140,6 @@ t.find().batchSize(2).toArray(); // 3 documents, batchSize=2 => 1 query + 1 get assert.eq(opCounters.query + 1, db.serverStatus().opcounters.query); assert.eq(opCounters.getmore + 1, db.serverStatus().opcounters.getmore); -// Getmore, with error (TODO implement when SERVER-5813 is resolved). - // // 6. Command. // |