Skip to content

Commit e51aec9

Browse files
committed
Don't append the container id to custom directory checkpoints. Fixes #34601.
Signed-off-by: Ross Boucher <[email protected]>
1 parent 7ef9266 commit e51aec9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

daemon/checkpoint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func getCheckpointDir(checkDir, checkpointID, ctrName, ctrID, ctrCheckpointDir s
2222
var checkpointDir string
2323
var err2 error
2424
if checkDir != "" {
25-
checkpointDir = filepath.Join(checkDir, ctrID, "checkpoints")
25+
checkpointDir = checkDir
2626
} else {
2727
checkpointDir = ctrCheckpointDir
2828
}

0 commit comments

Comments
 (0)