summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/backup_block.cpp
diff options
context:
space:
mode:
authorjannaerin <golden.janna@gmail.com>2022-03-23 21:58:00 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-04-01 00:08:33 +0000
commite683ab82364fe2a9923e9035aa5eb6f8f197fbc8 (patch)
tree281a272cc76ce0087d7a4219c2acc0e7a77a7a18 /src/mongo/db/storage/backup_block.cpp
parent9be91a1223cd166ce515e4b6b2abd9bd604ebfbe (diff)
downloadmongo-e683ab82364fe2a9923e9035aa5eb6f8f197fbc8.tar.gz
SERVER-64606 Remove TenantNamespace
Diffstat (limited to 'src/mongo/db/storage/backup_block.cpp')
-rw-r--r--src/mongo/db/storage/backup_block.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/storage/backup_block.cpp b/src/mongo/db/storage/backup_block.cpp
index ce3e83f1a97..db1c9978dd7 100644
--- a/src/mongo/db/storage/backup_block.cpp
+++ b/src/mongo/db/storage/backup_block.cpp
@@ -135,14 +135,14 @@ void BackupBlock::_initialize(OperationContext* opCtx,
// Index idents will get the namespace and UUID of their respective collection.
catalog->isIndexInEntry(opCtx, e.catalogId, _filenameStem)) {
_setUuid(opCtx, catalog, e.catalogId);
- _setNamespaceString(e.tenantNs.getNss());
+ _setNamespaceString(e.nss);
break;
}
if (e.ident == _filenameStem) {
// This ident represents the collection.
_setUuid(opCtx, catalog, e.catalogId);
- _setNamespaceString(e.tenantNs.getNss());
+ _setNamespaceString(e.nss);
break;
}
}