Fix checkpoint ls
Use create=false when calling getCheckpointDir Fix #33263 Signed-off-by: Jacob Wen <jian.w.wen@oracle.com>
This commit is contained in:
parent
6ef7afce83
commit
c0d2ec1eb5
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ func (daemon *Daemon) CheckpointList(name string, config types.CheckpointListOpt
|
|||
return nil, err
|
||||
}
|
||||
|
||||
checkpointDir, err := getCheckpointDir(config.CheckpointDir, "", name, container.ID, container.CheckpointDir(), true)
|
||||
checkpointDir, err := getCheckpointDir(config.CheckpointDir, "", name, container.ID, container.CheckpointDir(), false)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue