[#39] ir: Use defer for wg.Done()

Not important, but `exitOnErr` can alter control flow, let's be
explicit.

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
feature/325-policer_off
Evgenii Stratonikov 2023-05-12 11:38:43 +03:00
parent f604d6bbdc
commit 429a87e83b
1 changed files with 1 additions and 1 deletions

View File

@ -50,8 +50,8 @@ func (c *httpComponent) start() {
log.Info(fmt.Sprintf("start %s", c.name))
wg.Add(1)
go func() {
defer wg.Done()
exitErr(c.srv.Serve())
wg.Done()
}()
}
}