diff --git a/reconciler/reconciler.go b/reconciler/reconciler.go index 816a7bb3..fd5c7dbc 100644 --- a/reconciler/reconciler.go +++ b/reconciler/reconciler.go @@ -941,6 +941,7 @@ func (r *Reconciler) reconcileInactiveAccounts( // nolint:gocognit func (r *Reconciler) Reconcile(ctx context.Context) error { g, ctx := errgroup.WithContext(ctx) g.Go(func() error { + defer fmt.Println("shutdown queue worker") return r.queueWorker(ctx) })