diff options
author | David Storch <david.storch@10gen.com> | 2014-12-04 16:27:31 -0500 |
---|---|---|
committer | David Storch <david.storch@10gen.com> | 2014-12-05 10:29:32 -0500 |
commit | 2dc85453cee5fdc0312c44a2f0633be9f23e7ca0 (patch) | |
tree | f857f96bd115bea790a85d38a29d96c89726b501 /src/mongo/db/dbhelpers.cpp | |
parent | 5a0d148ffd2db70901eb0cdbeaf159b77bc1fc91 (diff) | |
download | mongo-2dc85453cee5fdc0312c44a2f0633be9f23e7ca0.tar.gz |
SERVER-15812 Rename PlanExecutor::EXEC_ERROR to PlanExecutor::FAILURE
Done in order to be consistent with PlanStage::StageState. Also cleans up use of PlanStage::DEAD
in the IDHackStage.
Diffstat (limited to 'src/mongo/db/dbhelpers.cpp')
-rw-r--r-- | src/mongo/db/dbhelpers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/dbhelpers.cpp b/src/mongo/db/dbhelpers.cpp index ad9e5c60a15..e6258c23a2c 100644 --- a/src/mongo/db/dbhelpers.cpp +++ b/src/mongo/db/dbhelpers.cpp @@ -403,7 +403,7 @@ namespace mongo { break; } - if (PlanExecutor::EXEC_ERROR == state) { + if (PlanExecutor::FAILURE == state) { warning(LogComponent::kSharding) << "cursor error while trying to delete " << min << " to " << max << " in " << ns << ": " |