summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-13 20:28:42 +0200
committerGitHub <noreply@github.com>2020-04-13 20:28:42 +0200
commitd7695dd957b162ed24c807dc91200fe1abaecff1 (patch)
tree449aa4d72af1ab130561b12935a5aeb8f1b2a5c6 /cmd
parent465b4bc563b274ec166868aae079a65ee0284b1d (diff)
parentf8892e7c6b07cb77979199cf0474ac2af80829fd (diff)
downloadpodman-d7695dd957b162ed24c807dc91200fe1abaecff1.tar.gz
podman-d7695dd957b162ed24c807dc91200fe1abaecff1.tar.bz2
podman-d7695dd957b162ed24c807dc91200fe1abaecff1.zip
Merge pull request #5777 from jwhonce/issues/5599
Refactor service idle support
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/service.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/podman/service.go b/cmd/podman/service.go
index 41ec499a1..0280b01a4 100644
--- a/cmd/podman/service.go
+++ b/cmd/podman/service.go
@@ -155,9 +155,7 @@ func runREST(r *libpod.Runtime, uri string, timeout time.Duration) error {
}
}()
- err = server.Serve()
- logrus.Debugf("%d/%d Active connections/Total connections\n", server.ActiveConnections, server.TotalConnections)
- return err
+ return server.Serve()
}
func runVarlink(r *libpod.Runtime, uri string, timeout time.Duration, c *cliconfig.ServiceValues) error {