Ver código fonte

[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>
ChristLZS 2 anos atrás
pai
commit
6f2571980c
1 arquivos alterados com 4 adições e 0 exclusões
  1. 4 0
      client/service.go

+ 4 - 0
client/service.go

@@ -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 {