mirror of https://github.com/fatedier/frp
[client] Fixed a bug where service loops reconnection after disconnection.service is shut down and can not exit goroutine (#3012)
Co-authored-by: lizhisheng <zhishengli@deepglint.com>pull/3016/head
parent
fa7c05c617
commit
6f2571980c
|
@ -198,6 +198,10 @@ func (svr *Service) keepControllerWorking() {
|
|||
}
|
||||
|
||||
for {
|
||||
if atomic.LoadUint32(&svr.exit) != 0 {
|
||||
return
|
||||
}
|
||||
|
||||
xl.Info("try to reconnect to server...")
|
||||
conn, session, err := svr.login()
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue