You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnfmt.Sprintf("%s is missing in your params.yaml", paramsError.Key)
642
642
case"parameter":
643
-
returnfmt.Sprintf("%s can not be '%s', please enter a namespace", paramsError.Key, *paramsError.Value)
643
+
returnfmt.Sprintf("%s can not be '%s', please enter a different value for %v. %v", paramsError.Key, *paramsError.Value, paramsError.ShortKey, paramsError.ValidationMessage)
644
644
case"blank":
645
-
returnfmt.Sprintf("%s can not be blank, please use a different namespace in your params.yaml", paramsError.Key)
645
+
returnfmt.Sprintf("%s can not be blank, please use a different %v in your params.yaml", paramsError.Key, paramsError.ShortKey)
646
646
case"reserved":
647
-
returnfmt.Sprintf("%s can not be '%v' please use a different namespace in your params.yaml", paramsError.Key, *paramsError.Value)
647
+
returnfmt.Sprintf("%s can not be '%v' please use a different %v in your params.yaml", paramsError.Key, *paramsError.Value, paramsError.ShortKey)
0 commit comments