修复通道更新

This commit is contained in:
648540858 2022-09-26 10:14:31 +08:00
parent 559fbf1258
commit 0cc5917d8a
3 changed files with 3 additions and 20 deletions

View File

@ -124,10 +124,9 @@ public class NotifyRequestProcessor extends SIPRequestProcessorParent implements
}
} catch (DocumentException e) {
logger.error("处理NOTIFY消息时错误", e);
} finally {
taskQueueHandlerRun = false;
}
}
taskQueueHandlerRun = false;
});
}
} catch (SipException | InvalidArgumentException | ParseException e) {

View File

@ -55,25 +55,9 @@ public class CatalogResponseMessageHandler extends SIPRequestProcessorParent imp
@Autowired
private IVideoManagerStorage storager;
@Autowired
private DeferredResultHolder deferredResultHolder;
@Autowired
private CatalogDataCatch catalogDataCatch;
@Autowired
private SipConfig config;
@Autowired
private EventPublisher publisher;
//by brewswang
@Autowired
private UserSetting userSetting;
@Autowired
private IRedisCatchStorage redisCatchStorage;
@Qualifier("taskExecutor")
@Autowired
private ThreadPoolTaskExecutor taskExecutor;
@ -153,6 +137,7 @@ public class CatalogResponseMessageHandler extends SIPRequestProcessorParent imp
}
}
taskQueueHandlerRun = false;
});
}

View File

@ -148,10 +148,9 @@ public class RecordInfoResponseMessageHandler extends SIPRequestProcessorParent
}
} catch (DocumentException e) {
logger.error("xml解析异常 ", e);
} finally {
taskQueueHandlerRun = false;
}
}
taskQueueHandlerRun = false;
});
}