diff options
author | Matthew Russotto <matthew.russotto@10gen.com> | 2017-03-06 17:51:17 -0500 |
---|---|---|
committer | Matthew Russotto <matthew.russotto@10gen.com> | 2017-03-06 17:51:17 -0500 |
commit | 3e5314c3f2be49666ca5d7aa766c934ba7d6cbe9 (patch) | |
tree | 33b65bce922be15c8aed1e423ea5a3061ad1ff2b /src/mongo/db/exec/update.cpp | |
parent | b078623660b1f4582cbb90998f8e6c252d3bd7b8 (diff) | |
download | mongo-3e5314c3f2be49666ca5d7aa766c934ba7d6cbe9.tar.gz |
Revert "SERVER-26965 Use RAII type for turning off replicated writes."
This reverts commit befb3ab22daa1f6e0db54af4caa426cfca1b7cd2.
Diffstat (limited to 'src/mongo/db/exec/update.cpp')
-rw-r--r-- | src/mongo/db/exec/update.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/update.cpp b/src/mongo/db/exec/update.cpp index a1b43a2e21d..b5dbe6eff99 100644 --- a/src/mongo/db/exec/update.cpp +++ b/src/mongo/db/exec/update.cpp @@ -1003,7 +1003,7 @@ Status UpdateStage::restoreUpdateState() { // We may have stepped down during the yield. bool userInitiatedWritesAndNotPrimary = getOpCtx()->writesAreReplicated() && - !repl::getGlobalReplicationCoordinator()->canAcceptWritesFor(getOpCtx(), nsString); + !repl::getGlobalReplicationCoordinator()->canAcceptWritesFor(nsString); if (userInitiatedWritesAndNotPrimary) { return Status(ErrorCodes::PrimarySteppedDown, |