Skip to content

Commit c501da5

Browse files
committed
fix: default is empty
1 parent ea71598 commit c501da5

File tree

1 file changed

+1
-1
lines changed
  • common/src/main/java/com/netflix/conductor/common/metadata/workflow

1 file changed

+1
-1
lines changed

common/src/main/java/com/netflix/conductor/common/metadata/workflow/WorkflowDef.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public enum TimeoutPolicy {
107107
private boolean enforceSchema = true;
108108

109109
@ProtoField(id = 22)
110-
private Map<String, Object> metadata;
110+
private Map<String, Object> metadata = new HashMap<>();
111111

112112
public boolean isEnforceSchema() {
113113
return enforceSchema;

0 commit comments

Comments
 (0)