From d5c11a3c86bf1eeb7ae6b1c243ec889432fcd881 Mon Sep 17 00:00:00 2001 From: Devon Hudson Date: Wed, 3 May 2023 18:21:33 -0600 Subject: [PATCH] Fix flaky test in process context --- setup/process/process.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/process/process.go b/setup/process/process.go index b2d2844a8..9a3d6401c 100644 --- a/setup/process/process.go +++ b/setup/process/process.go @@ -10,7 +10,7 @@ import ( type ProcessContext struct { mu sync.RWMutex - wg *sync.WaitGroup // used to wait for components to shutdown + wg sync.WaitGroup // used to wait for components to shutdown ctx context.Context // cancelled when Stop is called shutdown context.CancelFunc // shut down Dendrite degraded map[string]struct{} // reasons why the process is degraded @@ -21,7 +21,7 @@ func NewProcessContext() *ProcessContext { return &ProcessContext{ ctx: ctx, shutdown: shutdown, - wg: &sync.WaitGroup{}, + wg: sync.WaitGroup{}, } }