summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/tenant_migration_recipient_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/tenant_migration_recipient_service.cpp')
-rw-r--r--src/mongo/db/repl/tenant_migration_recipient_service.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/tenant_migration_recipient_service.cpp b/src/mongo/db/repl/tenant_migration_recipient_service.cpp
index 3d2ba358d21..1ac857ed1f4 100644
--- a/src/mongo/db/repl/tenant_migration_recipient_service.cpp
+++ b/src/mongo/db/repl/tenant_migration_recipient_service.cpp
@@ -1225,7 +1225,7 @@ TenantMigrationRecipientService::Instance::_fetchRetryableWritesOplogBeforeStart
// re-create the collection.
auto coordinator = repl::ReplicationCoordinator::get(opCtx.get());
Lock::GlobalLock globalLock(opCtx.get(), MODE_IX);
- if (!coordinator->canAcceptWritesForDatabase(opCtx.get(), oplogBufferNS.db())) {
+ if (!coordinator->canAcceptWritesForDatabase(opCtx.get(), oplogBufferNS.dbName())) {
uassertStatusOK(
Status(ErrorCodes::NotWritablePrimary,
"Recipient node is not primary, cannot clear oplog buffer collection."));
@@ -2237,7 +2237,7 @@ void TenantMigrationRecipientService::Instance::_setup() {
auto oplogBufferNS = getOplogBufferNs(getMigrationUUID());
if (!repl::ReplicationCoordinator::get(opCtx)->canAcceptWritesForDatabase(
- opCtx, oplogBufferNS.db())) {
+ opCtx, oplogBufferNS.dbName())) {
uassertStatusOK(
Status(ErrorCodes::NotWritablePrimary, "Recipient node is no longer a primary."));
}