Skip to content

Commit

Permalink
highlight id & snapshot are valid attributes for wait step
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenkumar-aa committed Oct 18, 2022
1 parent 44c52e0 commit 4338935
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public class SeqStepsTransformer extends AbstractInOutForTransformer
SEQ_STEP_PATH_KEY, SEQ_STEP_ACTION_KEY);
private static final Set<String> WAIT_MANDATORY_KEYS = newHashSet(SEQ_STEP_ID_KEY, SEQ_STEP_ACTION_KEY,
SEQ_STEP_DEFAULT_ARGS_KEY);
private static final Set<String> WAIT_OPTIONAL_KEY_SET = newHashSet(SEQ_STEP_ARGS_KEY, SEQ_STEP_COMMENT_KEY);
private static final Set<String> WAIT_OPTIONAL_KEY_SET = newHashSet(SEQ_STEP_ARGS_KEY, SEQ_STEP_COMMENT_KEY,
SEQ_STEP_HIGHLIGHT_ID_KEY, SEQ_STEP_SNAPSHOT_KEY);
private static final Set<String> OPTIONAL_KEY_SET = newHashSet(SEQ_STEP_ARGS_KEY,
SEQ_STEP_DEFAULT_ARGS_KEY, SEQ_STEP_HIGHLIGHT_ID_KEY,
SEQ_STEP_SNAPSHOT_KEY, SEQ_STEP_NAME_KEY, SEQ_STEP_COMMENT_KEY);
Expand Down

0 comments on commit 4338935

Please sign in to comment.