Browse Source

Merge pull request #3947 from lenboo/133-fault

[FIX-3615] master exit  gracefully
pull/3/MERGE
Kirs 4 years ago committed by GitHub
parent
commit
4f94943b2d
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/MasterExecThread.java

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

@ -973,7 +973,7 @@ public class MasterExecThread implements Runnable {
// submit start node // submit start node
submitPostNode(null); submitPostNode(null);
boolean sendTimeWarning = false; boolean sendTimeWarning = false;
while(!processInstance.isProcessInstanceStop()){ while(!processInstance.isProcessInstanceStop() && Stopper.isRunning()){
// send warning email if process time out. // send warning email if process time out.
if(!sendTimeWarning && checkProcessTimeOut(processInstance) ){ if(!sendTimeWarning && checkProcessTimeOut(processInstance) ){

Loading…
Cancel
Save