Skip to content

Commit

Permalink
fix: Turn comma delimited ASG tests off by default (#1139)
Browse files Browse the repository at this point in the history
Turns the comma delimited ASG tests off by default, as they the relevant feature in Cloud Controller is not on by default.

This test should only be turned on if the relevant opt-in feature is turned on in Cloud Controller.

Signed-off-by: Geoff Franks <[email protected]>
  • Loading branch information
geofffranks authored May 20, 2024
1 parent 6a54fe5 commit d93638e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/config/config_struct.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ func getDefaults() config {
defaults.RequireProxiedAppTraffic = ptrToBool(false)

defaults.DynamicASGsEnabled = ptrToBool(true)
defaults.CommaDelimitedASGsEnabled = ptrToBool(true)
defaults.CommaDelimitedASGsEnabled = ptrToBool(false)
defaults.ReadinessHealthChecksEnabled = ptrToBool(true)

defaults.NamePrefix = ptrToString("CATS")
Expand Down

0 comments on commit d93638e

Please sign in to comment.