summaryrefslogtreecommitdiff
path: root/src/mongo/db/ttl.cpp
diff options
context:
space:
mode:
authorMatthew Russotto <matthew.russotto@10gen.com>2017-03-06 17:51:46 -0500
committerMatthew Russotto <matthew.russotto@10gen.com>2017-03-06 17:51:46 -0500
commita271833d0edd7ca4aac67f3e7be55e102c631a93 (patch)
tree0a778dc3fd99a4df25505dbf49c724afcd4dff81 /src/mongo/db/ttl.cpp
parent3e5314c3f2be49666ca5d7aa766c934ba7d6cbe9 (diff)
downloadmongo-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.cpp2
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;
}