pull/6906/head
Medya Gh 2020-03-05 22:45:38 -08:00
parent 0335fb1ad7
commit 1c37fc5505
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ func (d *Driver) Create() error {
if oci.IsCreatedByMinikube(d.OCIBinary, params.Name) {
glog.Info("Found already existing abandoned minikube container, will try to delete.")
if err := oci.DeleteContainer(d.OCIBinary, params.Name); err != nil {
glog.Errorf("Failed to delete a conflicting minikube container %s. You might need to restart your %s daemon and delete it manually and try again.", params.Name)
glog.Errorf("Failed to delete a conflicting minikube container %s. You might need to restart your %s daemon and delete it manually and try again.", params.Name, params.OCIBinary)
return errors.Wrapf(err, "deleting already in-use mini-created container %s", params.Name)
}
} else {