mirror of
https://github.com/fatedier/frp.git
synced 2024-11-08 00:54:12 +01:00
[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>
This commit is contained in:
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
Block a user