Skip to content

Commit 4bd76de

Browse files
authored
have BuildSubtaskEvent use InProgress status (#5963)
1 parent 903acf3 commit 4bd76de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/skaffold/event/v2/build.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func AssignArtifactIDs(artifacts []*latestV1.Artifact) {
4040
}
4141

4242
func CacheCheckInProgress(artifact string) {
43-
buildSubtaskEvent(artifact, Cache, Started, nil)
43+
buildSubtaskEvent(artifact, Cache, InProgress, nil)
4444
}
4545

4646
func CacheCheckMiss(artifact string) {
@@ -52,7 +52,7 @@ func CacheCheckHit(artifact string) {
5252
}
5353

5454
func BuildInProgress(artifact string) {
55-
buildSubtaskEvent(artifact, Build, Started, nil)
55+
buildSubtaskEvent(artifact, Build, InProgress, nil)
5656
}
5757

5858
func BuildFailed(artifact string, err error) {

0 commit comments

Comments
 (0)