fix can't stop bug (#15191)
Co-authored-by: Leoric Yue <leoric.yue@zoom.us>
This commit is contained in:
parent
9be81be328
commit
cca1c4a172
|
|
@ -63,10 +63,13 @@ public class WorkflowStateEventHandler implements StateEventHandler {
|
|||
}
|
||||
workflowExecuteRunnable.endProcess();
|
||||
}
|
||||
if (processInstance.getState().isReadyStop()) {
|
||||
workflowExecuteRunnable.killAllTasks();
|
||||
}
|
||||
|
||||
if (workflowStateEvent.getStatus().isReadyStop()) {
|
||||
workflowExecuteRunnable.refreshProcessInstance(processInstance.getId());
|
||||
if (processInstance.getState().isReadyStop()) {
|
||||
workflowExecuteRunnable.killAllTasks();
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue