From f8892e7c6b07cb77979199cf0474ac2af80829fd Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Thu, 9 Apr 2020 11:05:18 -0700 Subject: Refactor service idle support * Move connection tracking into APIServer using ConnState() * Remove Connection counters from CLI code * Update events handler to support client not closing connection * Improve logging messages Fixes #5599 Signed-off-by: Jhon Honce --- pkg/domain/infra/abi/system.go | 1 - 1 file changed, 1 deletion(-) (limited to 'pkg/domain/infra') diff --git a/pkg/domain/infra/abi/system.go b/pkg/domain/infra/abi/system.go index 2df11cc1b..adec94f6c 100644 --- a/pkg/domain/infra/abi/system.go +++ b/pkg/domain/infra/abi/system.go @@ -51,7 +51,6 @@ func (ic *ContainerEngine) RestService(_ context.Context, opts entities.ServiceO }() err = server.Serve() - logrus.Debugf("%d/%d Active connections/Total connections\n", server.ActiveConnections, server.TotalConnections) _ = listener.Close() return err } -- cgit v1.2.3-54-g00ecf