summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWenbin Zhu <wenbin.zhu@mongodb.com>2021-05-18 20:54:49 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-05-20 19:46:24 +0000
commit77686251442d303c65b2c9cd0876c1fe5dccdc34 (patch)
tree5cf547eb6e7e0297eaa1c285bde1280980bc4c16
parenta3a1ba9ce895697fa827eb1794ad939b3c4801da (diff)
downloadmongo-77686251442d303c65b2c9cd0876c1fe5dccdc34.tar.gz
SERVER-55343 Include temp collections for tenant migration DBHash check.
(cherry picked from commit 532a6a8ae7b8e7ab5939e900759c00794862963d)
-rw-r--r--jstests/replsets/libs/tenant_migration_util.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/jstests/replsets/libs/tenant_migration_util.js b/jstests/replsets/libs/tenant_migration_util.js
index 0c347adac07..6de578fac86 100644
--- a/jstests/replsets/libs/tenant_migration_util.js
+++ b/jstests/replsets/libs/tenant_migration_util.js
@@ -321,12 +321,6 @@ var TenantMigrationUtil = (function() {
const recipientCollInfos = new CollInfos(recipientPrimary, 'recipientPrimary', dbName);
recipientCollInfos.filter(recipientCollections);
- // TODO (SERVER-55343): Investigate temp collection behavior during tenant migrations.
- donorCollInfos.collInfosRes =
- donorCollInfos.collInfosRes.filter(info => !info.options.temp);
- recipientCollInfos.collInfosRes =
- recipientCollInfos.collInfosRes.filter(info => !info.options.temp);
-
print(`checking db hash between donor: ${donorPrimary} and recipient: ${
recipientPrimary}`);