instead of skipping missing values, set them

This commit is contained in:
rushtehrani
2020-04-30 11:55:13 -07:00
parent 14b8e4c1c6
commit a002f32a5a

View File

@@ -1059,7 +1059,7 @@ func filterOutCustomTypesFromManifest(manifest []byte) (result []byte, err error
// If the parameter does not have a value, skip it so argo doesn't try to process it and fail.
if _, hasValue := paramMap["value"]; !hasValue {
continue
paramMap["value"] = "<value>"
}
parametersToKeep = append(parametersToKeep, parameter)