diff options
author | Matthew Russotto <matthew.russotto@10gen.com> | 2017-03-06 17:51:46 -0500 |
---|---|---|
committer | Matthew Russotto <matthew.russotto@10gen.com> | 2017-03-06 17:51:46 -0500 |
commit | a271833d0edd7ca4aac67f3e7be55e102c631a93 (patch) | |
tree | 0a778dc3fd99a4df25505dbf49c724afcd4dff81 /src/mongo/db/ttl.cpp | |
parent | 3e5314c3f2be49666ca5d7aa766c934ba7d6cbe9 (diff) | |
download | mongo-a271833d0edd7ca4aac67f3e7be55e102c631a93.tar.gz |
SERVER-27914 Verify canAcceptWritesForDatabase() is called while the caller holds the global lock
This reverts commit 3e5314c3f2be49666ca5d7aa766c934ba7d6cbe9.
Diffstat (limited to 'src/mongo/db/ttl.cpp')
-rw-r--r-- | src/mongo/db/ttl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/ttl.cpp b/src/mongo/db/ttl.cpp index 5c9c743b021..250663a98ad 100644 --- a/src/mongo/db/ttl.cpp +++ b/src/mongo/db/ttl.cpp @@ -189,7 +189,7 @@ private: return; } - if (!repl::getGlobalReplicationCoordinator()->canAcceptWritesFor(collectionNSS)) { + if (!repl::getGlobalReplicationCoordinator()->canAcceptWritesFor(txn, collectionNSS)) { return; } |