Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Okstad <pokstad@gitlab.com>2020-04-21 07:58:23 +0300
committerPaul Okstad <pokstad@gitlab.com>2020-04-21 07:58:23 +0300
commitdca26f3a6d09e3cea5d05373bd2c35ddc03c05c8 (patch)
treef91c630bc38c497eb127867595e95f2a2e455510
parentb9a3d5b5ff104e93a40bf1b21548999c73dd8c3e (diff)
parent2083e18840a385cb9063b5139c1a1555cdc995c0 (diff)
Merge branch 'jv-connectioncounter-tls' into 'master'
Distinguish TLS connections in connectioncounter See merge request gitlab-org/gitaly!2064
-rw-r--r--internal/bootstrap/starter/starter.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/bootstrap/starter/starter.go b/internal/bootstrap/starter/starter.go
index 48d00f095..ac98ba5e1 100644
--- a/internal/bootstrap/starter/starter.go
+++ b/internal/bootstrap/starter/starter.go
@@ -41,7 +41,7 @@ func New(cfg Config, servers bootstrap.GracefulStoppableServer) bootstrap.Starte
}
logrus.WithField("address", cfg.Addr).Infof("listening at %s address", cfg.Name)
- l = connectioncounter.New(cfg.family(), l)
+ l = connectioncounter.New(cfg.Name, l)
go func() {
errCh <- servers.Serve(l, cfg.isSecure())