aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcdoern <cdoern@redhat.com>2022-06-16 16:21:46 -0400
committercdoern <cdoern@redhat.com>2022-06-16 16:32:01 -0400
commita3b3f1723bcfffd5b79fa5c88ccfd6212485a442 (patch)
treeaf8e720874adeb6321d9ab026bdbea1ccfb7b67a
parent2af8851787d2c34d6264945372deaec4c387882a (diff)
downloadpodman-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>
-rw-r--r--pkg/domain/entities/pods.go2
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 {