Quick fix for nested Templates that were breaking --list-workloads

This commit is contained in:
Mike Yaacoub
2024-06-30 21:02:23 -04:00
parent 52e9a1a14f
commit eb1adcff5e
5 changed files with 18 additions and 18 deletions

View File

@@ -140,7 +140,7 @@ public class RawOpDef extends RawOpFields {
if (v == null) {
throw new OpConfigError("A map key '" + k.toString() + "' with a null value was encountered. This is not" +
" allowed, and may be the result of using an unquoted binding, like {" + k + "}. You can simply wrap this in quotes" +
" like \"{"+ k +"\"} to avoid interpreting this as a JSON map." +
" like \"{"+ k +"}\" to avoid interpreting this as a JSON map." +
(path.size()>0 ? String.join(".",path):""));
} else {
if (v instanceof Map) {