Skip to content

Commit

Permalink
Fix intents-operator sending STARTED telemetry with 0-count, which is…
Browse files Browse the repository at this point in the history
… inconsistent with other operators (#556)
  • Loading branch information
amitlicht authored Feb 10, 2025
1 parent f9492af commit 406ad1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ func main() {
}

logrus.Info("starting manager")
telemetrysender.SendIntentOperator(telemetriesgql.EventTypeStarted, 0)
telemetrysender.SendIntentOperator(telemetriesgql.EventTypeStarted, 1)
telemetrysender.IntentsOperatorRunActiveReporter(signalHandlerCtx)

if err := mgr.Start(signalHandlerCtx); err != nil {
Expand Down

0 comments on commit 406ad1b

Please sign in to comment.