Skip to content

Commit

Permalink
Merge pull request #1001 from kyanagimoto/main
Browse files Browse the repository at this point in the history
fix: 🐛 trigger unexpected canary deployment.
  • Loading branch information
stefanprodan authored Sep 20, 2021
2 parents 1e88e2f + 873b745 commit 374a55d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/canary/config_tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func (ct *ConfigTracker) GetTargetConfigs(cd *flaggerv1.Canary) (map[string]Conf

func fieldIsMandatory(p *bool) bool {
if p == nil {
return false
return true
}
return !*p
}
Expand Down

0 comments on commit 374a55d

Please sign in to comment.