summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/storage_interface_impl_test.cpp
diff options
context:
space:
mode:
authorSophia Tan <sophia_tll@hotmail.com>2023-05-12 19:44:44 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-15 23:20:28 +0000
commit6be86d8987dbad1c33160ef1779b598bc7cfa6b4 (patch)
treeb3484e6c70e402ddf66482df828c3b3f221457b3 /src/mongo/db/repl/storage_interface_impl_test.cpp
parentba0986ac66e3a22d211ad3707ad037fdc10910af (diff)
downloadmongo-6be86d8987dbad1c33160ef1779b598bc7cfa6b4.tar.gz
SERVER-75276 writeConflictRetry should properly be using a NamespaceStringOrUUID instead of a StringData
Diffstat (limited to 'src/mongo/db/repl/storage_interface_impl_test.cpp')
-rw-r--r--src/mongo/db/repl/storage_interface_impl_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/storage_interface_impl_test.cpp b/src/mongo/db/repl/storage_interface_impl_test.cpp
index ac3b69e80f5..8837d1831bf 100644
--- a/src/mongo/db/repl/storage_interface_impl_test.cpp
+++ b/src/mongo/db/repl/storage_interface_impl_test.cpp
@@ -120,7 +120,7 @@ CollectionOptions createOplogCollectionOptions() {
void createCollection(OperationContext* opCtx,
const NamespaceString& nss,
const CollectionOptions& options = generateOptionsWithUuid()) {
- writeConflictRetry(opCtx, "createCollection", nss.ns(), [&] {
+ writeConflictRetry(opCtx, "createCollection", nss, [&] {
Lock::DBLock dblk(opCtx, nss.dbName(), MODE_X);
OldClientContext ctx(opCtx, nss);
auto db = ctx.db();