We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 027ec13 commit 003dab7Copy full SHA for 003dab7
internal/orchestrator/system.go
@@ -54,7 +54,7 @@ func SystemInit(ctx context.Context, cfg config.Configuration, staticStore *stor
54
for _, container := range containersToPreinstall {
55
feedback.Printf("Pulling container image %s ...", container)
56
if err := pullImage(ctx, stdout, docker.Client(), container); err != nil {
57
- feedback.Printf("Warning: failed to read image pull response - %v", err)
+ return fmt.Errorf("failed to pull image %s: %w", container, err)
58
}
59
60
0 commit comments