Skip to content

Commit

Permalink
[Improve] flink app cancel bug fixed. (#4013)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfboys authored Aug 31, 2024
1 parent bfdb289 commit 4441df3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ public static Integer shouldTracking(@Nonnull FlinkAppState state) {
case FINISHED:
case FAILED:
case CANCELED:
case KILLED:
case TERMINATED:
case POS_TERMINATED:
case LOST:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export const stateMap = {
[AppStateEnum.FAILED]: { color: '#f5222d', title: t('flink.app.runState.failed') },
[AppStateEnum.CANCELLING]: { color: '#faad14', title: t('flink.app.runState.cancelling') },
[AppStateEnum.CANCELED]: { color: '#fa8c16', title: t('flink.app.runState.canceled') },
[AppStateEnum.KILLED]: { color: '#fa8c16', title: t('flink.app.runState.canceled') },
[AppStateEnum.FINISHED]: { color: '#1890ff', title: t('flink.app.runState.finished') },
[AppStateEnum.SUSPENDED]: { color: '#722ed1', title: t('flink.app.runState.suspended') },
[AppStateEnum.RECONCILING]: {
Expand Down

0 comments on commit 4441df3

Please sign in to comment.