-
Type: Bug
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: None
-
Fully Compatible
-
ALL
-
v5.0
-
Sharding 2021-05-31
-
34
There are a number of tenant migration tests that use Object.assign() to create nodeOptions from the global migrationX509Options, for example this one. Object.assign() mutates the first argument and returns it so to make each test case use the intended nodeOptions, Object.assign(migrationX509Options...., ...) should be changed to Object.assign({}, migrationX509Options..., ...) instead.