Skip to content

Commit

Permalink
Merge pull request #1379 from CloudSlang/praveen_activity_validation_fix
Browse files Browse the repository at this point in the history
highlight id  &  snapshot  are valid attributes for  wait  step
  • Loading branch information
praveenkumar-aa authored Oct 19, 2022
2 parents 15c76a7 + 4338935 commit 12b0e0f
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 12b0e0f

Please sign in to comment.