Переглянути джерело

[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 роки тому
батько
коміт
6f2571980c
1 змінених файлів з 4 додано та 0 видалено
  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 {