You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Working on recent PR I noticed that for some sync.WaitGroup we called wg.Add(...), wg.Done() but there was no wg.Wait() which means it was not used properly.
Preferrably we should change the way services are initialized and how one can trigger shutdown (graceful) for entire service.
The text was updated successfully, but these errors were encountered:
Working on recent PR I noticed that for some
sync.WaitGroup
we calledwg.Add(...)
,wg.Done()
but there was nowg.Wait()
which means it was not used properly.Preferrably we should change the way services are initialized and how one can trigger shutdown (graceful) for entire service.
The text was updated successfully, but these errors were encountered: