This is an automated email from the ASF dual-hosted git repository.
caishunfeng 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 778018dcfb [Bug] [worker] fix CommandType TASK_EXECUTE_RUNNING_ACK
don't consumed (#9849) (#9850)
778018dcfb is described below
commit 778018dcfb21420516b9194f77c199aaf4b56768
Author: LongJGun <[email protected]>
AuthorDate: Tue May 3 14:28:19 2022 +0800
[Bug] [worker] fix CommandType TASK_EXECUTE_RUNNING_ACK don't consumed
(#9849) (#9850)
---
.../dolphinscheduler/server/worker/processor/TaskCallbackService.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskCallbackService.java
b/dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskCallbackService.java
index c3eb07b2ad..3641de8453 100644
---
a/dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskCallbackService.java
+++
b/dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskCallbackService.java
@@ -55,7 +55,7 @@ public class TaskCallbackService {
private static final int[] RETRY_BACKOFF = {1, 2, 3, 5, 10, 20, 40, 100,
100, 100, 100, 200, 200, 200};
@Autowired
- private TaskExecuteResponseAckProcessor taskExecuteRunningProcessor;
+ private TaskExecuteRunningAckProcessor taskExecuteRunningProcessor;
@Autowired
private TaskExecuteResponseAckProcessor taskExecuteResponseAckProcessor;