|
This ticket should remove the special-case handling for reshardingMinimumOperationDurationMillis introduced by SERVER-53918 once the LTS version is 4.9+.
This ticket should replace the first code block with the second block:
if "reshardingMinimumOperationDurationMillis" in suite_set_parameters:
|
if executable == LAST_LTS_MONGOD_BINARY:
|
del suite_set_parameters["reshardingMinimumOperationDurationMillis"]
|
elif executable != LAST_LTS_MONGOD_BINARY:
|
suite_set_parameters["reshardingMinimumOperationDurationMillis"] = 5000
|
if "reshardingMinimumOperationDurationMillis" not in suite_set_parameters:
|
suite_set_parameters["reshardingMinimumOperationDurationMillis"] = 5000
|
|