summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec
diff options
context:
space:
mode:
authorCharlie Swanson <cswanson310@gmail.com>2015-01-22 13:21:02 -0500
committerCharlie Swanson <cswanson310@gmail.com>2015-02-26 14:56:08 -0500
commit6769eca988fd96f68f15d54a37f135eea3298406 (patch)
tree8d9fd0b2b4168561b1db1c54178aa1e58e2e5d49 /src/mongo/db/exec
parentd6991bb3bdc0fb13d238f0b6c5327205ea0af898 (diff)
downloadmongo-6769eca988fd96f68f15d54a37f135eea3298406.tar.gz
SERVER-17395: Add FSM tests to stress yielding.
Diffstat (limited to 'src/mongo/db/exec')
-rw-r--r--src/mongo/db/exec/stagedebug_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/stagedebug_cmd.cpp b/src/mongo/db/exec/stagedebug_cmd.cpp
index d93a4637a41..7b581155f02 100644
--- a/src/mongo/db/exec/stagedebug_cmd.cpp
+++ b/src/mongo/db/exec/stagedebug_cmd.cpp
@@ -154,7 +154,7 @@ namespace mongo {
PlanExecutor* rawExec;
Status execStatus = PlanExecutor::make(txn, ws.release(), rootFetch, collection,
- PlanExecutor::YIELD_MANUAL, &rawExec);
+ PlanExecutor::YIELD_AUTO, &rawExec);
fassert(28536, execStatus);
boost::scoped_ptr<PlanExecutor> exec(rawExec);