Browse Source

[Improvement][Master] batch remove TaskInstaceId and workflowInstanceId (#10620)

3.1.0-release
pinkhello 2 years ago committed by GitHub
parent
commit
628c8ab2a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/processor/TaskRecallProcessor.java

2
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/processor/TaskRecallProcessor.java

@ -62,7 +62,7 @@ public class TaskRecallProcessor implements NettyRequestProcessor {
logger.info("Receive task recall command: {}", recallCommand); logger.info("Receive task recall command: {}", recallCommand);
taskEventService.addEvent(taskEvent); taskEventService.addEvent(taskEvent);
} finally { } finally {
LoggerUtils.removeWorkflowInstanceIdMDC(); LoggerUtils.removeWorkflowAndTaskInstanceIdMDC();
} }
} }
} }

Loading…
Cancel
Save