Merge pull request #38029 from lifubang/checkpointrm
fixes checkpoint rm fail
This commit is contained in:
commit
12bba16306
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue