Skip to content

Commit

Permalink
revert using ratelimiting on queue adds
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Oct 31, 2023
1 parent 4f5edf6 commit 6fb84b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (agent *Agent) Run() {

for _, svc := range svcs {
log.Info("sending update for", "service", svc.ID)
agent.svcQueue.AddRateLimited(svc.ID)
agent.svcQueue.Add(svc.ID)
}

info, err := agent.discoveryClient.ServerVersion()
Expand Down

0 comments on commit 6fb84b8

Please sign in to comment.