diff options
author | cdoern <cdoern@redhat.com> | 2022-06-16 16:21:46 -0400 |
---|---|---|
committer | cdoern <cdoern@redhat.com> | 2022-06-16 16:32:01 -0400 |
commit | a3b3f1723bcfffd5b79fa5c88ccfd6212485a442 (patch) | |
tree | af8e720874adeb6321d9ab026bdbea1ccfb7b67a /pkg | |
parent | 2af8851787d2c34d6264945372deaec4c387882a (diff) | |
download | podman-a3b3f1723bcfffd5b79fa5c88ccfd6212485a442.tar.gz podman-a3b3f1723bcfffd5b79fa5c88ccfd6212485a442.tar.bz2 podman-a3b3f1723bcfffd5b79fa5c88ccfd6212485a442.zip |
linter fix from #14299
[NO NEW TESTS NEEDED] podman pod clone somehow snuck by the new linter code that went in while it was in flight
fix that here
Signed-off-by: cdoern <cdoern@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/domain/entities/pods.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/pods.go b/pkg/domain/entities/pods.go index 19dc2fc4f..14ce370c1 100644 --- a/pkg/domain/entities/pods.go +++ b/pkg/domain/entities/pods.go @@ -301,7 +301,7 @@ type PodCreateReport struct { } type PodCloneReport struct { - Id string //nolint + Id string //nolint:revive,stylecheck } func (p *PodCreateOptions) CPULimits() *specs.LinuxCPU { |