From fca19d906d0613057111a8bd741eae130f5bfc9a Mon Sep 17 00:00:00 2001 From: Rootul Patel Date: Mon, 11 Dec 2023 15:55:07 -0500 Subject: [PATCH] chore: remove redundant newlines --- tools/upgrademonitor/cmd/root.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/upgrademonitor/cmd/root.go b/tools/upgrademonitor/cmd/root.go index 1ed685b32f..0c163339e2 100644 --- a/tools/upgrademonitor/cmd/root.go +++ b/tools/upgrademonitor/cmd/root.go @@ -39,13 +39,10 @@ var rootCmd = &cobra.Command{ func Execute() { // Bind the version variable to the --version flag rootCmd.Flags().Uint64Var(&version, "version", defaultVersion, "version to monitor") - // Bind the grpcEndpoint variable to the --grpc-endpoint flag rootCmd.Flags().StringVar(&grpcEndpoint, "grpc-endpoint", defaultGrpcEndpoint, "GRPC endpoint") - // Bind the pollFrequency variable to the --poll-frequency flag rootCmd.Flags().Int64Var(&pollFrequency, "poll-frequency", defaultPollFrequency, "poll frequency in seconds") - // Bind the autoTry variable to the --auto-try flag rootCmd.Flags().BoolVar(&autoTry, "auto-try", defaultAutoTry, "auto try upgrade")