Skip to content

Commit

Permalink
have BuildSubtaskEvent use InProgress status (#5963)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarlonGamez authored Jun 7, 2021
1 parent 903acf3 commit 4bd76de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/skaffold/event/v2/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func AssignArtifactIDs(artifacts []*latestV1.Artifact) {
}

func CacheCheckInProgress(artifact string) {
buildSubtaskEvent(artifact, Cache, Started, nil)
buildSubtaskEvent(artifact, Cache, InProgress, nil)
}

func CacheCheckMiss(artifact string) {
Expand All @@ -52,7 +52,7 @@ func CacheCheckHit(artifact string) {
}

func BuildInProgress(artifact string) {
buildSubtaskEvent(artifact, Build, Started, nil)
buildSubtaskEvent(artifact, Build, InProgress, nil)
}

func BuildFailed(artifact string, err error) {
Expand Down

0 comments on commit 4bd76de

Please sign in to comment.