Fix ConnGauge nil crash

This commit is contained in:
Toby 2021-04-27 23:10:09 -07:00
parent ac1233a6f9
commit 214f1cf72c

View file

@ -81,11 +81,15 @@ func (c *serverClient) Run() {
if err != nil {
break
}
c.ConnGauge.Inc()
if c.ConnGauge != nil {
c.ConnGauge.Inc()
}
go func() {
c.handleStream(stream)
_ = stream.Close()
c.ConnGauge.Dec()
if c.ConnGauge != nil {
c.ConnGauge.Dec()
}
}()
}
}