Merge pull request #6179 from q384566678/fix-pause

pkg/drivers/kic: fix wrong command in Unpause
pull/6188/head
Medya Ghazizadeh 2019-12-30 18:42:28 -08:00 committed by GitHub
commit e5f5abda89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ func (d *Driver) Restart() error {
// Unpause a kic container
func (d *Driver) Unpause() error {
cmd := exec.Command(d.NodeConfig.OCIBinary, "pause", d.MachineName)
cmd := exec.Command(d.NodeConfig.OCIBinary, "unpause", d.MachineName)
if err := cmd.Run(); err != nil {
return errors.Wrapf(err, "unpausing %s", d.MachineName)
}