Browse Source

fix: use consistent telemetryUrl default in master.follower (#7809)

Update telemetryUrl to use the same default value as the master command
for consistency and maintainability.

Addresses review feedback from PR #7808
pull/7811/head
Chris Lu 2 days ago
committed by GitHub
parent
commit
df0ea18084
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      weed/command/master_follower.go

2
weed/command/master_follower.go

@ -42,7 +42,7 @@ func init() {
mf.metricsIntervalSec = aws.Int(0)
mf.raftResumeState = aws.Bool(false)
mf.maxParallelVacuumPerServer = aws.Int(1)
mf.telemetryUrl = aws.String("")
mf.telemetryUrl = aws.String("https://telemetry.seaweedfs.com/api/collect")
mf.telemetryEnabled = aws.Bool(false)
}

Loading…
Cancel
Save