Skip to content

Commit

Permalink
Fixed the tabs vs spaces ugliness
Browse files Browse the repository at this point in the history
  • Loading branch information
Morten Bekkelund committed Nov 15, 2023
1 parent 399b086 commit 275ee54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ var (
adminPasswordFlag = flag.String("admin-password", "", "Admin password")
metricsUsernameFlag = flag.String("metrics-username", "", "Metrics username")
metricsPasswordFlag = flag.String("metrics-password", "", "Metrics password")
metricsFlag = flag.Bool("metrics", false, "Enable the metrics endpoint")
metricsFlag = flag.Bool("metrics", false, "Enable the metrics endpoint")
metricsAuthFlag = flag.String("metrics-auth", "", "Set the auth type for the metrics endpoint")
metricsIdFlag = flag.String("metrics-id", os.Getenv("METRICS_ID"), "Metrics instance identification")
metricsProxyURLFlag = flag.String("metrics-proxy-url", "", "URL to another Prometheus exporter that we should proxy")
Expand Down Expand Up @@ -198,8 +198,8 @@ func main() {
AdminUsername: *adminUsernameFlag,
MetricsPassword: *metricsPasswordFlag,
MetricsUsername: *metricsUsernameFlag,
Metrics: *metricsFlag,
MetricsAuth: *metricsAuthFlag,
Metrics: *metricsFlag,
MetricsAuth: *metricsAuthFlag,
MetricsProxyURL: *metricsProxyURLFlag,
AllowRobots: *allowRobotsFlag,
BaseUrl: *u,
Expand Down

0 comments on commit 275ee54

Please sign in to comment.