diff options
Diffstat (limited to 'src/mongo/db/repl/initial_syncer_test.cpp')
-rw-r--r-- | src/mongo/db/repl/initial_syncer_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/initial_syncer_test.cpp b/src/mongo/db/repl/initial_syncer_test.cpp index df015013477..5b5737f2f2d 100644 --- a/src/mongo/db/repl/initial_syncer_test.cpp +++ b/src/mongo/db/repl/initial_syncer_test.cpp @@ -330,7 +330,7 @@ protected: _storageInterface->dropCollFn = [this](OperationContext* opCtx, const NamespaceString& nss) { LockGuard lock(_storageInterfaceWorkDoneMutex); - _storageInterfaceWorkDone.droppedCollections.push_back(nss.ns()); + _storageInterfaceWorkDone.droppedCollections.push_back(nss.ns().toString()); return Status::OK(); }; _storageInterface->dropUserDBsFn = [this](OperationContext* opCtx) { |