summaryrefslogtreecommitdiff
path: root/pkg/api
diff options
context:
space:
mode:
authorMatej Vasek <mvasek@redhat.com>2021-03-23 18:04:18 +0100
committerMatthew Heon <mheon@redhat.com>2021-03-29 13:25:40 -0400
commitd1589f280474dd90236a59f8b32bb2a4a04fd683 (patch)
tree190a7014190a93e468d50b955fdc4c95cea48d1d /pkg/api
parent31351ad94bf961a1e2341abbdf66145073445526 (diff)
downloadpodman-d1589f280474dd90236a59f8b32bb2a4a04fd683.tar.gz
podman-d1589f280474dd90236a59f8b32bb2a4a04fd683.tar.bz2
podman-d1589f280474dd90236a59f8b32bb2a4a04fd683.zip
fixup
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'pkg/api')
-rw-r--r--pkg/api/handlers/compat/images_build.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/compat/images_build.go b/pkg/api/handlers/compat/images_build.go
index fb759b7aa..20331600d 100644
--- a/pkg/api/handlers/compat/images_build.go
+++ b/pkg/api/handlers/compat/images_build.go
@@ -487,7 +487,7 @@ func parseNetworkConfigurationPolicy(network string) buildah.NetworkConfiguratio
}
}
-func parseLibPodIsolation(isolation string) buildah.Isolation {
+func parseLibPodIsolation(isolation string) buildah.Isolation { // nolint
if val, err := strconv.Atoi(isolation); err == nil {
return buildah.Isolation(val)
}