diff options
author | Milivoje Legenovic <m.legenovic@gmail.com> | 2021-02-25 00:42:06 +0100 |
---|---|---|
committer | Milivoje Legenovic <m.legenovic@gmail.com> | 2021-02-26 03:08:10 +0100 |
commit | fcce1da1bbeae708961f3002540fbd04b46e5f40 (patch) | |
tree | 488a33dfa208676cfea444ace7b6eadcde37ca79 /pkg/checkpoint/checkpoint_restore.go | |
parent | 25d81955ec959d0cfa2958edba0935d1257dd787 (diff) | |
download | podman-fcce1da1bbeae708961f3002540fbd04b46e5f40.tar.gz podman-fcce1da1bbeae708961f3002540fbd04b46e5f40.tar.bz2 podman-fcce1da1bbeae708961f3002540fbd04b46e5f40.zip |
Correct compat images/create?fromImage response
Signed-off-by: Milivoje Legenovic <m.legenovic@gmail.com>
Diffstat (limited to 'pkg/checkpoint/checkpoint_restore.go')
-rw-r--r-- | pkg/checkpoint/checkpoint_restore.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/checkpoint/checkpoint_restore.go b/pkg/checkpoint/checkpoint_restore.go index a608762b5..6285680c0 100644 --- a/pkg/checkpoint/checkpoint_restore.go +++ b/pkg/checkpoint/checkpoint_restore.go @@ -121,7 +121,7 @@ func CRImportCheckpoint(ctx context.Context, runtime *libpod.Runtime, restoreOpt return nil, err } - _, err = runtime.ImageRuntime().New(ctx, config.RootfsImageName, rtc.Engine.SignaturePolicyPath, "", writer, nil, image.SigningOptions{}, nil, util.PullImageMissing) + _, err = runtime.ImageRuntime().New(ctx, config.RootfsImageName, rtc.Engine.SignaturePolicyPath, "", writer, nil, image.SigningOptions{}, nil, util.PullImageMissing, nil) if err != nil { return nil, err } |