diff options
author | Matt Kangas <matt.kangas@mongodb.com> | 2014-11-13 22:57:37 -0500 |
---|---|---|
committer | Matt Kangas <matt.kangas@mongodb.com> | 2014-11-14 10:45:13 -0500 |
commit | 80102d2ba97e5c35587bbba618e9501debb0d268 (patch) | |
tree | 3872e76d7e4771259c06cbd868f85bed07e88e37 /src/mongo/db/background.cpp | |
parent | 085feab6152583399cdf885f245e631d7a2a9ef6 (diff) | |
download | mongo-80102d2ba97e5c35587bbba618e9501debb0d268.tar.gz |
SERVER-16136 fix drop index errmsg
Diffstat (limited to 'src/mongo/db/background.cpp')
-rw-r--r-- | src/mongo/db/background.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/background.cpp b/src/mongo/db/background.cpp index eb9860ba405..d3449915f61 100644 --- a/src/mongo/db/background.cpp +++ b/src/mongo/db/background.cpp @@ -136,7 +136,7 @@ namespace { void BackgroundOperation::assertNoBgOpInProgForNs(const StringData& ns) { uassert(ErrorCodes::BackgroundOperationInProgressForNamespace, mongoutils::str::stream() << "cannot perform operation: a background operation is currently running for " - "collection" << ns, + "collection " << ns, !inProgForNs(ns)); } |