From b85a7274144701d53ccde3faefdce02f51ed6221 Mon Sep 17 00:00:00 2001 From: Josh Dover <1813008+joshdover@users.noreply.github.com> Date: Thu, 8 Sep 2022 16:30:22 +0200 Subject: [PATCH] Remove experimental warning log in upgrade command (#1106) (cherry picked from commit 3951c33a199ef210796bd6a48d4719152d5f739b) --- internal/pkg/agent/cmd/upgrade.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/pkg/agent/cmd/upgrade.go b/internal/pkg/agent/cmd/upgrade.go index 83128b970e..5e5d75aeeb 100644 --- a/internal/pkg/agent/cmd/upgrade.go +++ b/internal/pkg/agent/cmd/upgrade.go @@ -36,8 +36,6 @@ func newUpgradeCommandWithArgs(_ []string, streams *cli.IOStreams) *cobra.Comman } func upgradeCmd(streams *cli.IOStreams, cmd *cobra.Command, args []string) error { - fmt.Fprintln(streams.Out, "The upgrade process of Elastic Agent is currently EXPERIMENTAL and should not be used in production") - version := args[0] sourceURI, _ := cmd.Flags().GetString("source-uri")