From c6d978bd020d9cb3ea1e564c1ce8f52d164a167b Mon Sep 17 00:00:00 2001 From: Gavin Frazar Date: Tue, 10 Dec 2024 13:56:11 -0800 Subject: [PATCH] wait for supervisor services to exit (#49972) --- 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