Parcourir la source

[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 il y a 2 ans
Parent
commit
6f2571980c
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  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 {