proxy: fix high CPU when websocket not connected
This commit is contained in:
parent
e909e7fa8a
commit
903cdeaa7f
|
@ -65,8 +65,13 @@ func (ac *APIController) Shutdown() {
|
|||
}
|
||||
|
||||
func (ac *APIController) startWSHandler() {
|
||||
notConnectedBackoff := 1
|
||||
for {
|
||||
if !ac.wsConn.IsConnected() {
|
||||
notConnectedWait := time.Duration(notConnectedBackoff) * time.Second
|
||||
ac.logger.WithField("loop", "ws-handler").WithField("wait", notConnectedWait).Info("Not connected loop")
|
||||
time.Sleep(notConnectedWait)
|
||||
notConnectedBackoff += notConnectedBackoff
|
||||
continue
|
||||
}
|
||||
var wsMsg websocketMessage
|
||||
|
@ -76,9 +81,6 @@ func (ac *APIController) startWSHandler() {
|
|||
ac.wsConn.CloseAndReconnect()
|
||||
continue
|
||||
}
|
||||
if wsMsg.Instruction != WebsocketInstructionAck {
|
||||
ac.logger.Debugf("%+v\n", wsMsg)
|
||||
}
|
||||
if wsMsg.Instruction == WebsocketInstructionTriggerUpdate {
|
||||
err := ac.UpdateIfRequired()
|
||||
if err != nil {
|
||||
|
|
Reference in New Issue