From 087d9261440de705484c5c89afeebaf42461eaaf Mon Sep 17 00:00:00 2001 From: Gavin Frazar Date: Fri, 13 Dec 2024 17:14:09 -0800 Subject: [PATCH] wait for supervisor services to exit (#50041) --- integration/hsm/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/hsm/helpers.go b/integration/hsm/helpers.go index a51f1ea2e8dbd..a8a91c470a814 100644 --- a/integration/hsm/helpers.go +++ b/integration/hsm/helpers.go @@ -71,7 +71,7 @@ func newTeleportService(ctx context.Context, config *servicecfg.Config, name str } go func() { defer close(t.errC) - t.err = svc.WaitForSignals(ctx, nil) + t.err = svc.Wait() }() t.process = svc