diff options
author | cdoern <cbdoer23@g.holycross.edu> | 2022-09-22 15:05:43 -0400 |
---|---|---|
committer | cdoern <cbdoer23@g.holycross.edu> | 2022-09-22 15:11:19 -0400 |
commit | 2478e32ca334692dd18c4534c1f9b2a6a2c296cf (patch) | |
tree | 047379d0d53d04eae29abf6228bb07eed0e2c4d4 /test/e2e | |
parent | 08993516a939576fa009db6e7ed32524026a822d (diff) | |
download | podman-2478e32ca334692dd18c4534c1f9b2a6a2c296cf.tar.gz podman-2478e32ca334692dd18c4534c1f9b2a6a2c296cf.tar.bz2 podman-2478e32ca334692dd18c4534c1f9b2a6a2c296cf.zip |
fix restore API endpoint
restore endpoint was totally ignoring --pod, it was missing from the schema and from query handling
on the api handlers side. add support for it here.
resolves #15018
Signed-off-by: cdoern <cbdoer23@g.holycross.edu>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/checkpoint_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/e2e/checkpoint_test.go b/test/e2e/checkpoint_test.go index a33936549..b0c1d36d3 100644 --- a/test/e2e/checkpoint_test.go +++ b/test/e2e/checkpoint_test.go @@ -1170,10 +1170,6 @@ var _ = Describe("Podman checkpoint", func() { share := share // copy into local scope, for use inside function It(testName, func() { - if podmanTest.Host.Distribution == "ubuntu" && IsRemote() { - Skip("FIXME: #15018. Cannot restore --pod under cgroupsV1 and remote") - } - if !criu.CheckForCriu(criu.PodCriuVersion) { Skip("CRIU is missing or too old.") } |