Skip to content

Commit

Permalink
Merge pull request #425 from nirmoy/continue-rm
Browse files Browse the repository at this point in the history
crictl: do not error out if one rm operation fails
  • Loading branch information
k8s-ci-robot authored Jan 24, 2019
2 parents dd69210 + 6ad84dc commit db87490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/crictl/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ var removeContainerCommand = cli.Command{
containerID := context.Args().Get(i)
err := RemoveContainer(runtimeClient, containerID)
if err != nil {
return fmt.Errorf("Removing the container %q failed: %v", containerID, err)
fmt.Printf("Removing the container %q failed: %v\n", containerID, err)
}
}
return nil
Expand Down

0 comments on commit db87490

Please # to comment.