add err type for start too

pull/8501/head
Medya Gh 2020-06-17 15:15:23 -07:00
parent ca2d0f97ec
commit dacd980fe7
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ func (d *Driver) Start() error {
return errors.Wrapf(oci.ErrDaemonInfo, "container name %q", d.MachineName)
}
return err
return errors.Wrapf(oci.ErrExitedAfterCreate, "container name %q", d.MachineName)
}
return nil
}