From 3489e3364535dff9b5cb5de5b9f7c71c7237f395 Mon Sep 17 00:00:00 2001 From: Michael Butler Date: Wed, 14 Aug 2024 09:38:47 -0400 Subject: [PATCH] roachtest: add 24.3 min version to multitenant-upgrade As an aside, we should sunset this test in favor of one that uses the new mixed version framework, but lets do that once the PCR test has landed. Fixes #128950 Release note: none --- pkg/cmd/roachtest/tests/multitenant_upgrade.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/roachtest/tests/multitenant_upgrade.go b/pkg/cmd/roachtest/tests/multitenant_upgrade.go index 7d5df685e668..9456805e714b 100644 --- a/pkg/cmd/roachtest/tests/multitenant_upgrade.go +++ b/pkg/cmd/roachtest/tests/multitenant_upgrade.go @@ -80,8 +80,8 @@ func runMultiTenantUpgrade( versionToMinSupportedVersion := map[string]string{ "23.2": "23.1", "24.1": "23.2", - // TODO: test out version skipping, since it is available internally. "24.2": "24.1", + "24.3": "24.1", } curBinaryMajorAndMinorVersion := getMajorAndMinorVersionOnly(v) currentBinaryMinSupportedVersion, ok := versionToMinSupportedVersion[curBinaryMajorAndMinorVersion]