summaryrefslogtreecommitdiff
path: root/libpod/container_internal.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-29 13:26:03 -0400
committerGitHub <noreply@github.com>2021-09-29 13:26:03 -0400
commit4b9cd9201b97c4ef4c6ef50d53f35757f1ddb187 (patch)
treec8e69e7090cb658564474fa295ea0c0a28d2521e /libpod/container_internal.go
parenta22a9a5218774ba809a60a650f10ff300551faa5 (diff)
parentccff77025c4ef6907c91c42cf84e1c92b65716ba (diff)
downloadpodman-4b9cd9201b97c4ef4c6ef50d53f35757f1ddb187.tar.gz
podman-4b9cd9201b97c4ef4c6ef50d53f35757f1ddb187.tar.bz2
podman-4b9cd9201b97c4ef4c6ef50d53f35757f1ddb187.zip
Merge pull request #11781 from vrothberg/spec
podman run - avoid calls to JSONDeepCopy
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r--libpod/container_internal.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go
index e81f2ec5f..3f9738411 100644
--- a/libpod/container_internal.go
+++ b/libpod/container_internal.go
@@ -2004,7 +2004,7 @@ func (c *Container) setupOCIHooks(ctx context.Context, config *spec.Spec) (map[s
}
return nil, err
}
- ociHooks, err := manager.Hooks(config, c.Spec().Annotations, len(c.config.UserVolumes) > 0)
+ ociHooks, err := manager.Hooks(config, c.config.Spec.Annotations, len(c.config.UserVolumes) > 0)
if err != nil {
return nil, err
}
@@ -2021,7 +2021,7 @@ func (c *Container) setupOCIHooks(ctx context.Context, config *spec.Spec) (map[s
return nil, err
}
- allHooks, err = manager.Hooks(config, c.Spec().Annotations, len(c.config.UserVolumes) > 0)
+ allHooks, err = manager.Hooks(config, c.config.Spec.Annotations, len(c.config.UserVolumes) > 0)
if err != nil {
return nil, err
}