summaryrefslogtreecommitdiff
path: root/src/mongo/db/dbhelpers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/dbhelpers.cpp')
-rw-r--r--src/mongo/db/dbhelpers.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mongo/db/dbhelpers.cpp b/src/mongo/db/dbhelpers.cpp
index 6f47e7bff7e..38815864034 100644
--- a/src/mongo/db/dbhelpers.cpp
+++ b/src/mongo/db/dbhelpers.cpp
@@ -379,7 +379,6 @@ namespace mongo {
InternalPlanner::FORWARD,
InternalPlanner::IXSCAN_FETCH));
- runner->setYieldPolicy(Runner::YIELD_AUTO);
DiskLoc rloc;
BSONObj obj;
Runner::RunnerState state;
@@ -530,7 +529,6 @@ namespace mongo {
auto_ptr<Runner> runner(InternalPlanner::indexScan(collection, idx, min, max, false));
// we can afford to yield here because any change to the base data that we might miss is
// already being queued and will be migrated in the 'transferMods' stage
- runner->setYieldPolicy(Runner::YIELD_AUTO);
DiskLoc loc;
Runner::RunnerState state;