Skip to content

Commit e258f43

Browse files
committed
Fix inconsistency
1 parent 62280c1 commit e258f43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/dev/dsf/bpe/service/ping/CheckPingTaskStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ protected void doExecuteWithErrorHandling(DelegateExecution delegateExecution, V
3636
Target target = variables.getTarget();
3737
String correlationKey = target.getCorrelationKey();
3838

39-
//Do not use getVariableLocal here. CheckPingTaskStatus gets executed in a child execution of the one that
40-
//stored the variable. GetVariableLocal will only look in the child execution's variables and find nothing.
39+
//Do not use getVariableLocal() here. CheckPingTaskStatus gets executed in a child execution of the one that
40+
//stored the variable. GetVariableLocal() will only look in the child execution's variables and find nothing.
4141
//GetVariable() or the DSF API's getString() does look for values in the parent execution's variables.
4242
String taskId = variables.getString(ExecutionVariables.pingTaskId.name());
4343

0 commit comments

Comments
 (0)