Skip to content

Commit

Permalink
chore: correctly specify upgrade plan env
Browse files Browse the repository at this point in the history
  • Loading branch information
chatton committed Nov 29, 2024
1 parent 223e5ad commit 1b83600
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions e2e/testsuite/testconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,10 @@ func applyEnvironmentVariableOverrides(fromFile TestConfig) TestConfig {
fromFile.ActiveRelayer = envTc.ActiveRelayer
}

if os.Getenv(ChainUpgradePlanEnv) != "" {
fromFile.UpgradePlanName = envTc.UpgradePlanName
}

if isEnvTrue(KeepContainersEnv) {
fromFile.DebugConfig.KeepContainers = true
}
Expand Down

0 comments on commit 1b83600

Please sign in to comment.