Skip to content

Commit 3f363ff

Browse files
Cleanup fleet gateway Run (elastic#5169)
Co-authored-by: Pierre HILBERT <pierre.hilbert@elastic.co>
1 parent 2ff1cd6 commit 3f363ff

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

internal/pkg/agent/application/gateway/fleet/fleet_gateway.go

+1-9
Original file line numberDiff line numberDiff line change
@@ -130,19 +130,11 @@ func (f *FleetGateway) Actions() <-chan []fleetapi.Action {
130130
}
131131

132132
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{})
136133
backoff := backoff.NewEqualJitterBackoff(
137-
done,
134+
ctx.Done(),
138135
f.settings.Backoff.Init,
139136
f.settings.Backoff.Max,
140137
)
141-
go func() {
142-
<-ctx.Done()
143-
close(done)
144-
}()
145-
146138
f.log.Info("Fleet gateway started")
147139
for {
148140
select {

0 commit comments

Comments
 (0)