瀏覽代碼

用户设备数量,在线设备,离线设备数量

baozhensong 6 年之前
父節點
當前提交
a32dc113ac
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      services/knowoapi/services/device.go

+ 1 - 1
services/knowoapi/services/device.go

@@ -109,7 +109,7 @@ func (a deviceservice) GetDevicesCountByVenderId(vendorid uint) (map[string]inte
 			return nil, err
 		}
 
-		if int(onlinereply.HeartbeatInterval) > 0 && len(onlinereply.ClientIP) > 0 {
+		if int(onlinereply.HeartbeatInterval) > 0 && len(onlinereply.ClientIP) > 0 && err.Error() != "redigo: nil returned" {
 			onlineCount += 1
 		} else {
 			offlineCount += 1