Make TelemetrySubmissionPeriodical leader-only (#24145)

* Make TelemetrySubmissionPeriodical leader-only

* Add changelog

---------

Co-authored-by: Florian Petersen <188503754+fpetersen-gl@users.noreply.github.com>
This commit is contained in:
Ismail Belkacim
2025-11-06 14:36:47 +01:00
committed by GitHub
parent 9ec4aa1700
commit 987bac8819
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
type = "c"
message = "Backend telemetry is now sent only by the leader node."
pulls = ["24145"]

View File

@@ -101,4 +101,9 @@ public class TelemetrySubmissionPeriodical extends Periodical {
protected Logger getLogger() {
return LOG;
}
@Override
public boolean leaderOnly() {
return true;
}
}