From 777f2e21217fcc4ee3a946cc071602da8b977258 Mon Sep 17 00:00:00 2001 From: chenjialing <595168663@qq.com> Date: 星期五, 25 二月 2022 09:54:18 +0800 Subject: [PATCH] 日志优化--修改本地配置文件local的mysql连接方式 --- src/main/java/com/genersoft/iot/vmp/gb28181/event/offline/KeepaliveTimeoutListenerForPlatform.java | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/gb28181/event/offline/KeepaliveTimeoutListenerForPlatform.java b/src/main/java/com/genersoft/iot/vmp/gb28181/event/offline/KeepaliveTimeoutListenerForPlatform.java index 9ba0c05..aaf5b5d 100644 --- a/src/main/java/com/genersoft/iot/vmp/gb28181/event/offline/KeepaliveTimeoutListenerForPlatform.java +++ b/src/main/java/com/genersoft/iot/vmp/gb28181/event/offline/KeepaliveTimeoutListenerForPlatform.java @@ -76,7 +76,10 @@ eventResult.callId = callid; eventResult.msg = "娉ㄥ唽瓒呮椂"; eventResult.type = "register timeout"; - sipSubscribe.getErrorSubscribe(callid).response(eventResult); + if (sipSubscribe.getErrorSubscribe(callid) != null) { + sipSubscribe.getErrorSubscribe(callid).response(eventResult); + } + } } -- Gitblit v1.8.0