We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff1cd6 commit 3f363ffCopy full SHA for 3f363ff
internal/pkg/agent/application/gateway/fleet/fleet_gateway.go
@@ -130,19 +130,11 @@ func (f *FleetGateway) Actions() <-chan []fleetapi.Action {
130
}
131
132
func (f *FleetGateway) Run(ctx context.Context) error {
133
- // Backoff implementation doesn't support the use of a context [cancellation] as the shutdown mechanism.
134
- // So we keep a done channel that will be closed when the current context is shutdown.
135
- done := make(chan struct{})
136
backoff := backoff.NewEqualJitterBackoff(
137
- done,
+ ctx.Done(),
138
f.settings.Backoff.Init,
139
f.settings.Backoff.Max,
140
)
141
- go func() {
142
- <-ctx.Done()
143
- close(done)
144
- }()
145
-
146
f.log.Info("Fleet gateway started")
147
for {
148
select {
0 commit comments