Skip to content

Commit

Permalink
Rename "docker pull" scope to "image pull"
Browse files Browse the repository at this point in the history
  • Loading branch information
edigaryev committed Nov 9, 2020
1 parent be8883e commit 43f152d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/executor/instance/instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func RunContainerizedAgent(ctx context.Context, config *RunConfig, params *Param
}

if config.ContainerOptions.ShouldPullImage(params.Image) {
dockerPullLogger := logger.Scoped("docker pull")
dockerPullLogger := logger.Scoped("image pull")
dockerPullLogger.Infof("Pulling image %s...", params.Image)
if err := backend.ImagePull(ctx, params.Image); err != nil {
dockerPullLogger.Errorf("Failed to pull %s: %v", params.Image, err)
Expand Down

0 comments on commit 43f152d

Please sign in to comment.