From 4844f169f422fc156b5772a80fc47d8c1fa9c62e Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Sun, 9 May 2021 17:27:52 +0200 Subject: [PATCH] conf: fix default pprof address --- internal/conf/conf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/conf/conf.go b/internal/conf/conf.go index e5a35b90..2aeb8976 100644 --- a/internal/conf/conf.go +++ b/internal/conf/conf.go @@ -149,7 +149,7 @@ func (conf *Conf) fillAndCheck() error { } if conf.PPROFAddress == "" { - conf.MetricsAddress = ":9999" + conf.PPROFAddress = ":9999" } if len(conf.Protocols) == 0 {