summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2022-02-11 10:16:02 +0000
committerAdrian Reber <areber@redhat.com>2022-02-11 15:11:48 +0000
commit4b90542d5be977db79abbbfc442aca3553024246 (patch)
tree91f2124702f547fa1accaaa3cf1f816316c891b8 /libpod
parent466b8991c4025006eeb43cb30e6dc990d92df72d (diff)
downloadpodman-4b90542d5be977db79abbbfc442aca3553024246.tar.gz
podman-4b90542d5be977db79abbbfc442aca3553024246.tar.bz2
podman-4b90542d5be977db79abbbfc442aca3553024246.zip
Fix checkpoint/restore pod tests
Checkpoint/restore pod tests are not running with an older runc and now that runc 1.1.0 appears in the repositories it was detected that the tests were failing. This was not detected in CI as CI was not using runc 1.1.0 yet. Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r--libpod/runtime_ctr.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/runtime_ctr.go b/libpod/runtime_ctr.go
index 3799b463f..44364100e 100644
--- a/libpod/runtime_ctr.go
+++ b/libpod/runtime_ctr.go
@@ -192,6 +192,11 @@ func (r *Runtime) initContainerVariables(rSpec *spec.Spec, config *ContainerConf
}
// Reset the log path to point to the default
ctr.config.LogPath = ""
+ // Later in validate() the check is for nil. JSONDeepCopy sets it to an empty
+ // object. Resetting it to nil if it was nil before.
+ if config.StaticMAC == nil {
+ ctr.config.StaticMAC = nil
+ }
}
ctr.config.Spec = rSpec