We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 903acf3 commit 4bd76deCopy full SHA for 4bd76de
pkg/skaffold/event/v2/build.go
@@ -40,7 +40,7 @@ func AssignArtifactIDs(artifacts []*latestV1.Artifact) {
40
}
41
42
func CacheCheckInProgress(artifact string) {
43
- buildSubtaskEvent(artifact, Cache, Started, nil)
+ buildSubtaskEvent(artifact, Cache, InProgress, nil)
44
45
46
func CacheCheckMiss(artifact string) {
@@ -52,7 +52,7 @@ func CacheCheckHit(artifact string) {
52
53
54
func BuildInProgress(artifact string) {
55
- buildSubtaskEvent(artifact, Build, Started, nil)
+ buildSubtaskEvent(artifact, Build, InProgress, nil)
56
57
58
func BuildFailed(artifact string, err error) {
0 commit comments