summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/find_common.h
diff options
context:
space:
mode:
authorJames Wahlin <james@mongodb.com>2019-02-08 08:43:44 -0500
committerJames Wahlin <james@mongodb.com>2019-02-08 08:43:44 -0500
commit87ea6539360b6003aa75a1f40c0e294a8ae4a359 (patch)
tree252d0e9e53c3805168142326fa29f7fc1d137632 /src/mongo/db/query/find_common.h
parent4da738debb1aea49524ff8e364254afb5bfda612 (diff)
downloadmongo-87ea6539360b6003aa75a1f40c0e294a8ae4a359.tar.gz
Revert "SERVER-39149 Homogenize getMore behavior"
This reverts commit 4d703e26c2801971d538f948a4dc3191994f0074.
Diffstat (limited to 'src/mongo/db/query/find_common.h')
-rw-r--r--src/mongo/db/query/find_common.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mongo/db/query/find_common.h b/src/mongo/db/query/find_common.h
index ca4111dd754..4dfa751a110 100644
--- a/src/mongo/db/query/find_common.h
+++ b/src/mongo/db/query/find_common.h
@@ -63,15 +63,11 @@ MONGO_FAIL_POINT_DECLARE(waitInFindBeforeMakingBatch);
// tests.
MONGO_FAIL_POINT_DECLARE(disableAwaitDataForGetMoreCmd);
-// Enabling this fail point will cause getMores to busy wait after pinning the cursor
+// Enabling this fail point will cause the getMore command to busy wait after pinning the cursor
// but before we have started building the batch, until the fail point is disabled.
MONGO_FAIL_POINT_DECLARE(waitAfterPinningCursorBeforeGetMoreBatch);
-// Enabling this fail point will cause getMores to busy wait after setting up the plan executor and
-// before beginning the batch.
-MONGO_FAIL_POINT_DECLARE(waitWithPinnedCursorDuringGetMoreBatch);
-
-// Enabling this failpoint will cause getMores to wait just before it unpins its cursor after it
+// Enabling this failpoint will cause the getMore to wait just before it unpins its cursor after it
// has completed building the current batch.
MONGO_FAIL_POINT_DECLARE(waitBeforeUnpinningOrDeletingCursorAfterGetMoreBatch);