fix: block check if healthcheck fails

This commit is contained in:
zzjc1234 2024-08-30 15:22:18 +08:00 committed by Boming Zhang
parent 43b8f374db
commit 8d2c4932e8
GPG Key ID: D47306D7062CDA9D

View File

@ -38,6 +38,9 @@ func Run(stages []Stage) []StageResult {
ForceQuit: forceQuit,
})
if forceQuit {
if stage.Name == "healthcheck" {
return stageResults
}
break
}
}