This is an automated email from the ASF dual-hosted git repository.

leonbao pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 67094d0  [BUG-6353][MasterServer] fix event handle slowly (#6375)
67094d0 is described below

commit 67094d0f7f1803e263e73a0164ecbbd829c57129
Author: caishunfeng <[email protected]>
AuthorDate: Mon Sep 27 19:31:22 2021 +0800

    [BUG-6353][MasterServer] fix event handle slowly (#6375)
    
    Co-authored-by: caishunfeng <[email protected]>
---
 .../dolphinscheduler/server/master/runner/WorkflowExecuteThread.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
 
b/dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
index 7b3b535..2e151cb 100644
--- 
a/dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
+++ 
b/dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
@@ -263,7 +263,7 @@ public class WorkflowExecuteThread implements Runnable {
             return key;
         }
 
-        key = String.format("{}_{}_{}",
+        key = String.format("%d_%d_%d",
                 this.processDefinition.getCode(),
                 this.processDefinition.getVersion(),
                 this.processInstance.getId());

Reply via email to