修复通道更新

pull/626/head
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) { } catch (DocumentException e) {
logger.error("处理NOTIFY消息时错误", e); logger.error("处理NOTIFY消息时错误", e);
} finally { }
}
taskQueueHandlerRun = false; taskQueueHandlerRun = false;
}
}
}); });
} }
} catch (SipException | InvalidArgumentException | ParseException e) { } catch (SipException | InvalidArgumentException | ParseException e) {

View File

@ -55,25 +55,9 @@ public class CatalogResponseMessageHandler extends SIPRequestProcessorParent imp
@Autowired @Autowired
private IVideoManagerStorage storager; private IVideoManagerStorage storager;
@Autowired
private DeferredResultHolder deferredResultHolder;
@Autowired @Autowired
private CatalogDataCatch catalogDataCatch; private CatalogDataCatch catalogDataCatch;
@Autowired
private SipConfig config;
@Autowired
private EventPublisher publisher;
//by brewswang
@Autowired
private UserSetting userSetting;
@Autowired
private IRedisCatchStorage redisCatchStorage;
@Qualifier("taskExecutor") @Qualifier("taskExecutor")
@Autowired @Autowired
private ThreadPoolTaskExecutor taskExecutor; 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) { } catch (DocumentException e) {
logger.error("xml解析异常 ", e); logger.error("xml解析异常 ", e);
} finally { }
}
taskQueueHandlerRun = false; taskQueueHandlerRun = false;
}
}
}); });
} }