From c9db9588b7ea4008dc47373264096f1a5f2a0cef Mon Sep 17 00:00:00 2001 From: Kevin Wan Date: Fri, 17 Sep 2021 17:11:03 +0800 Subject: [PATCH] chore: fix comment issues (#1056) --- core/service/serviceconf.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/service/serviceconf.go b/core/service/serviceconf.go index 46bea43d..6a36e682 100644 --- a/core/service/serviceconf.go +++ b/core/service/serviceconf.go @@ -29,7 +29,7 @@ type ServiceConf struct { Mode string `json:",default=pro,options=dev|test|rt|pre|pro"` MetricsUrl string `json:",optional"` Prometheus prometheus.Config `json:",optional"` - // TODO: enable it in v1.2.1 + // TODO: enable it in v1.2.2 // Telemetry opentelemetry.Config `json:",optional"` } @@ -52,7 +52,7 @@ func (sc ServiceConf) SetUp() error { sc.initMode() prometheus.StartAgent(sc.Prometheus) - // TODO: enable it in v1.2.1 + // TODO: enable it in v1.2.2 // if len(sc.Telemetry.Name) == 0 { // sc.Telemetry.Name = sc.Name // }