From 9dc331033297e7a2c3aa6ef1fc4891f906b5868d Mon Sep 17 00:00:00 2001 From: Laurent Luce Date: Mon, 26 Aug 2024 13:35:58 -0400 Subject: [PATCH] Remove comment --- kontrol-service/api/analytics.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/kontrol-service/api/analytics.go b/kontrol-service/api/analytics.go index efbed17..2aac9bd 100644 --- a/kontrol-service/api/analytics.go +++ b/kontrol-service/api/analytics.go @@ -21,9 +21,6 @@ const ( // NewAnalyticsWrapper creates a new AnalyticsWrapper func NewAnalyticsWrapper(isDevMode bool, writeKey string) *AnalyticsWrapper { if !isDevMode && writeKey != "" { - // This is the Segment write key for the "kontrol-service" project. It is not - // a sensitive value, but it could be extracted to an env var in the future - // to separate dev and prod traffic if desired. client := analytics.New(writeKey) logrus.Info("Segment analytics client initialized") return &AnalyticsWrapper{client: &client}