Merge pull request #38029 from lifubang/checkpointrm

fixes checkpoint rm fail
This commit is contained in:
Sebastiaan van Stijn
2018-11-05 19:09:35 +01:00
committed by GitHub

View File

@@ -95,7 +95,7 @@ func (daemon *Daemon) CheckpointDelete(name string, config types.CheckpointDelet
}
checkpointDir, err := getCheckpointDir(config.CheckpointDir, config.CheckpointID, name, container.ID, container.CheckpointDir(), false)
if err == nil {
return os.RemoveAll(filepath.Join(checkpointDir, config.CheckpointID))
return os.RemoveAll(checkpointDir)
}
return err
}