summaryrefslogtreecommitdiff
path: root/src/mongo/db/index_rebuilder.cpp
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2014-10-03 17:25:41 -0400
committerGeert Bosch <geert@mongodb.com>2014-10-03 17:25:41 -0400
commitf2daf8addd4ef391c135a3da2a1472777405ba06 (patch)
tree0e53c98e5ca8a317cd90e75ba5c3cff66cae5ad1 /src/mongo/db/index_rebuilder.cpp
parent6d8ef4551dfb1e76b480602e8f1d6224656e5841 (diff)
downloadmongo-f2daf8addd4ef391c135a3da2a1472777405ba06.tar.gz
Revert "SERVER-14668: Replace uses of DBWrite lock with DBLock"
This reverts commit da599844c97ef6d290c03e073a9bafe41c1a914e. Conflicts: src/mongo/db/repl/repl_coordinator_external_state_impl.cpp src/mongo/dbtests/counttests.cpp src/mongo/dbtests/querytests.cpp
Diffstat (limited to 'src/mongo/db/index_rebuilder.cpp')
-rw-r--r--src/mongo/db/index_rebuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index_rebuilder.cpp b/src/mongo/db/index_rebuilder.cpp
index 8dd345de946..cbde00dbf04 100644
--- a/src/mongo/db/index_rebuilder.cpp
+++ b/src/mongo/db/index_rebuilder.cpp
@@ -64,7 +64,7 @@ namespace {
// This write lock is held throughout the index building process
// for this namespace.
- Lock::DBLock lk(txn->lockState(), nsToDatabaseSubstring(ns), newlm::MODE_X);
+ Lock::DBWrite lk(txn->lockState(), ns);
Client::Context ctx(txn, ns);
Collection* collection = ctx.db()->getCollection(txn, ns);