Skip to content

Commit

Permalink
Merge pull request TencentBlueKing#1228 from cnlkl/issue_1227
Browse files Browse the repository at this point in the history
bug: 修复PULL状态的分析任务未正常超时 TencentBlueKing#1227
  • Loading branch information
owenlxu authored Sep 28, 2023
2 parents 137b1e1 + 3a03613 commit 9f6819d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ class TaskStateMachineConfiguration(
transition(PULLED, CREATED, DISPATCH_FAILED, subtaskActions)
// 超过最长允许执行的时间时,可能会从PULLED转移到FAILED状态
transition(PULLED, FAILED, SubtaskEvent.FAILED, subtaskActions)
transition(PULLED, TIMEOUT, SubtaskEvent.TIMEOUT, subtaskActions)

// finished state
transition(BLOCKED, BLOCK_TIMEOUT, SubtaskEvent.BLOCK_TIMEOUT, subtaskActions)
Expand Down

0 comments on commit 9f6819d

Please sign in to comment.