From b6b366066f1ff819bb2b8f43c18e0a748ba432a4 Mon Sep 17 00:00:00 2001 From: Vyacheslav Starostin <32613074+vstarostin@users.noreply.github.com> Date: Fri, 5 Jul 2024 17:23:57 +0500 Subject: [PATCH] Disable telemetry reporting (#4983) --- cmd/piper.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/piper.go b/cmd/piper.go index 91c9ea0b40..fa6f585363 100644 --- a/cmd/piper.go +++ b/cmd/piper.go @@ -420,6 +420,11 @@ func PrepareConfig(cmd *cobra.Command, metadata *config.StepData, stepName strin } } + // since Pendo has been sunset + // disable telemetry reporting in go + // follow-up cleanup needed + GeneralConfig.NoTelemetry = true + stepConfig.Config = checkTypes(stepConfig.Config, options) confJSON, _ := json.Marshal(stepConfig.Config) _ = json.Unmarshal(confJSON, &options)