File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -101,10 +101,10 @@ func NewGatewayDApp(cmd *cobra.Command) *GatewayDApp {
101101 stopChan : make (chan struct {}),
102102 ranStopGracefully : & atomic.Bool {},
103103 }
104- app .EnableTracing , _ = cmd .Flags ().GetBool ("enable- tracing" )
105- app .EnableSentry , _ = cmd .Flags ().GetBool ("enable- sentry" )
106- app .EnableUsageReport , _ = cmd .Flags ().GetBool ("enable- usage-report" )
107- app .EnableLinting , _ = cmd .Flags ().GetBool ("enable-linting " )
104+ app .EnableTracing , _ = cmd .Flags ().GetBool ("tracing" )
105+ app .EnableSentry , _ = cmd .Flags ().GetBool ("sentry" )
106+ app .EnableUsageReport , _ = cmd .Flags ().GetBool ("usage-report" )
107+ app .EnableLinting , _ = cmd .Flags ().GetBool ("lint " )
108108 app .DevMode , _ = cmd .Flags ().GetBool ("dev" )
109109 app .CollectorURL , _ = cmd .Flags ().GetString ("collector-url" )
110110 app .GlobalConfigFile , _ = cmd .Flags ().GetString ("config" )
Original file line number Diff line number Diff line change @@ -259,5 +259,4 @@ func init() {
259259 runCmd .Flags ().Bool ("sentry" , true , "Enable Sentry" )
260260 runCmd .Flags ().Bool ("usage-report" , true , "Enable usage report" )
261261 runCmd .Flags ().Bool ("lint" , true , "Enable linting of configuration files" )
262- runCmd .Flags ().Bool ("metrics-merger" , true , "Enable metrics merger" )
263262}
You can’t perform that action at this time.
0 commit comments