Skip to content

Commit

Permalink
Don't test protocol upgrade for NuoDB 5.x (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
kontaras authored Aug 20, 2024
1 parent ccbb4af commit 085b9f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/minikube/minikube_rolling_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ func TestKubernetesUpgradeFullDatabase(t *testing.T) {
verifyAllProcessesRunning(t, namespaceName, admin0, 2)
})

testlib.RunOnNuoDBVersionCondition(t, ">4.2.2", func(version *semver.Version) {
// In order to have a protocol upgrade, there has to be a protocol change between
// OLD_RELEASE and the version under test.
testlib.RunOnNuoDBVersionCondition(t, ">6.0.0", func(version *semver.Version) {
// check that KAA will upgrade database protocol version and restart TE
// automatically
t.Run("verifyProtocolVersion", func(t *testing.T) {
Expand Down

0 comments on commit 085b9f1

Please sign in to comment.