Merge pull request #1001 from kyanagimoto/main

fix: 🐛 trigger unexpected canary deployment.
This commit is contained in:
Stefan Prodan
2021-09-20 18:36:09 +03:00
committed by GitHub
+1 -1
View File
@@ -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
}