From df0ea18084f8d2fda5cd0a5d287188c6f26d80a5 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 17 Dec 2025 12:27:43 -0800 Subject: [PATCH] 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 --- weed/command/master_follower.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/command/master_follower.go b/weed/command/master_follower.go index 8a1ecb3fe..60d6e65ee 100644 --- a/weed/command/master_follower.go +++ b/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) }