Skip to content

Commit 0e29095

Browse files
Merge pull request #4113 from justinsb/better_image_filtering
docker execution: trim "image up to date" lines
2 parents e3e24eb + 1249cac commit 0e29095

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

internal/fnruntime/container.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ func isdockerCLIoutput(s string) bool {
286286
strings.Contains(s, ": Pull complete") ||
287287
strings.Contains(s, "Digest: sha256") ||
288288
strings.Contains(s, "Status: Downloaded newer image") ||
289+
strings.Contains(s, "Status: Image is up to date for") ||
289290
strings.Contains(s, "Unable to find image") {
290291
return true
291292
}

0 commit comments

Comments
 (0)