diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-13 20:28:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 20:28:42 +0200 |
commit | d7695dd957b162ed24c807dc91200fe1abaecff1 (patch) | |
tree | 449aa4d72af1ab130561b12935a5aeb8f1b2a5c6 /cmd | |
parent | 465b4bc563b274ec166868aae079a65ee0284b1d (diff) | |
parent | f8892e7c6b07cb77979199cf0474ac2af80829fd (diff) | |
download | podman-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.go | 4 |
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 { |