Credit to joan.bruguera-mico@mongodb.com who caught that we are incorrectly calculating the programMajorMinorVersion.
Current formula is `major * 100 + minor + 10`
The correct formula based on who the code is used should be `major * 100 + minor * 10`
- related to
-
SERVER-98451 Do not set reshardingDelayBeforeRemainingOperationTimeQueryMillis when launching patch versions where this parameter doesn't exist
- Closed