Files
mongo/buildscripts/resmokelib/multiversionconstants.py
Amirsaman Memaripour 7df217f9db SERVER-46726 Make multiversion tests work with the new parameter
This patch addresses issues concerning running mongos in multiversion tests.

(cherry picked from commit 87de9a0cb1)
2020-08-19 02:10:48 +00:00

11 lines
381 B
Python

"""FCV and Server binary version constants used for multiversion testing."""
LAST_STABLE_BIN_VERSION = "4.2"
LAST_STABLE_FCV = "4.2"
LATEST_FCV = "4.4"
LAST_STABLE_MONGO_BINARY = "mongo-" + LAST_STABLE_BIN_VERSION
LAST_STABLE_MONGOD_BINARY = "mongod-" + LAST_STABLE_BIN_VERSION
LAST_STABLE_MONGOS_BINARY = "mongos-" + LAST_STABLE_BIN_VERSION
REQUIRES_FCV_TAG = "requires_fcv_44"