Browse Source

to #7108 (#7109)

3.0.0/version-upgrade
zwZjut 3 years ago committed by GitHub
parent
commit
c42531e39c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java

2
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java

@ -251,7 +251,7 @@ public class WorkflowExecuteThread implements Runnable {
}
private void handleEvents() {
while (this.stateEvents.size() > 0) {
while (!this.stateEvents.isEmpty()) {
try {
StateEvent stateEvent = this.stateEvents.peek();

Loading…
Cancel
Save