From b2d31fec4dd186b1f76d0196a9a183618e23fa2a Mon Sep 17 00:00:00 2001 From: Patrick O'Grady Date: Fri, 4 Dec 2020 17:30:36 -0600 Subject: [PATCH] debug shutdown --- reconciler/reconciler.go | 1 + 1 file changed, 1 insertion(+) 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) })