forked from TrueCloudLab/frostfs-node
[#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>
This commit is contained in:
parent
f604d6bbdc
commit
429a87e83b
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
}()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue