Skip to content

Commit

Permalink
perf: 详情页的旧数据兼容下架 TencentBlueKing#9522
Browse files Browse the repository at this point in the history
  • Loading branch information
carlyin0801 committed Aug 14, 2024
1 parent c591e80 commit 0326f8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ enum class BuildStatus(

fun isNeverRun(): Boolean = this == UNEXEC || this == TRIGGER_REVIEWING

fun isFinish(): Boolean = isFailure() || isSuccess() || isCancel()
fun isFinish(): Boolean = isFailure() || isSuccess() || isCancel() || this == UNEXEC

fun isFailure(): Boolean = this == FAILED || isPassiveStop() || isTimeout() || this == QUOTA_FAILED

Expand Down

0 comments on commit 0326f8e

Please sign in to comment.