Skip to content

Commit

Permalink
Merge 0e3ad47 into b427843
Browse files Browse the repository at this point in the history
  • Loading branch information
gituser173 committed Mar 22, 2019
2 parents b427843 + 0e3ad47 commit 52172ab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ public Object[] getExecutionParameters() {
for (SeqStep step : seqSteps) {
String args = step.getArgs();
if (StringUtils.startsWith(args, SEQUENTIAL_PARAMETER)) {
String paramName = substring(args, SEQUENTIAL_PARAMETER.length(), args.length() - 1);
String paramName = substring(args, SEQUENTIAL_PARAMETER.length(), args.length() - 1)
.replaceAll("^\"|\"$", "");
Value value = currentContext.get(paramName);
if (value != null) {
//TODO handle sensitive values
Expand Down

0 comments on commit 52172ab

Please sign in to comment.