|
|
@@ -109,7 +109,11 @@ public class KeepaliveNotifyMessageHandler extends SIPRequestProcessorParent imp
|
|
|
|
|
|
@Override
|
|
|
public void handForPlatform(RequestEvent evt, ParentPlatform parentPlatform, Element element) {
|
|
|
- // 不会收到上级平台的心跳信息
|
|
|
-
|
|
|
+ // 个别平台保活不回复200OK会判定离线
|
|
|
+ try {
|
|
|
+ responseAck((SIPRequest) evt.getRequest(), Response.OK);
|
|
|
+ } catch (SipException | InvalidArgumentException | ParseException e) {
|
|
|
+ logger.error("[命令发送失败] 心跳回复: {}", e.getMessage());
|
|
|
+ }
|
|
|
}
|
|
|
}
|