Skip to content

Commit

Permalink
ex: dockergc: make gc pass failure non-fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
sjenning committed Dec 11, 2017
1 parent 6a1ddee commit 3547f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/oc/experimental/dockergc/dockergc.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ func Run(f *clientcmd.Factory, options *dockerGCConfigCmdOptions, cmd *cobra.Com
for {
err := doGarbageCollection(client, options, rootDir)
if err != nil {
return err
glog.Errorf("garbage collection attempt failed: %v", err)
}
if options.DryRun {
return nil
Expand Down

0 comments on commit 3547f93

Please sign in to comment.