fix: 当wvp作为下级平台时,上级以tcp-主动模式发起点播请求,这个5ms时间太短,下级的zlm刚准备好端口,上级还没来得及连接,zlm就超时端口关闭,导致上级一直报拒绝连接

This commit is contained in:
樊冲 2025-09-18 17:37:57 +08:00
parent c1672728d3
commit c543840830

View File

@ -215,7 +215,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
if (sendRtpItem.isTcpActive()) {
MediaServer mediaServer = mediaServerService.getOne(sendRtpItem.getMediaServerId());
try {
mediaServerService.startSendRtpPassive(mediaServer, sendRtpItem, 5);
mediaServerService.startSendRtpPassive(mediaServer, sendRtpItem, 5*1000);
DeviceChannel deviceChannel = deviceChannelService.getOneForSourceById(sendRtpItem.getChannelId());
if (deviceChannel != null) {
redisCatchStorage.sendPlatformStartPlayMsg(sendRtpItem, deviceChannel, platform);