This commit is contained in:
zxb 2024-03-17 17:11:58 +08:00
parent 5e982bfb02
commit e7339a5f78

View File

@ -201,9 +201,11 @@ public class AckRequestProcessor extends SIPRequestProcessorParent implements In
if(resp != null){
if(resp.getInteger("code") != 0){
String msg = resp.getString("msg");
if (!msg.equalsIgnoreCase(failMag.get()) && !StringUtils.containsIgnoreCase(msg,"can not find the source stream")) {
if (!msg.equalsIgnoreCase(failMag.get())){
failMag.set(msg);
logger.debug("rtp转推失败 {} {}, {}, {}", msg, channelId, mediaInfo, param);
if (!StringUtils.containsIgnoreCase(msg, "can not find the source stream")) {
logger.debug("rtp转推失败 {} {}, {}, {}", msg, channelId, mediaInfo, param);
}
}
}
}