Merge remote-tracking branch 'origin/master' into wvp-28181-2.0

This commit is contained in:
panlinlin
2021-01-11 17:46:16 +08:00
4 changed files with 9 additions and 7 deletions

View File

@@ -121,7 +121,9 @@ public class SipLayer implements SipListener {
logger.debug(evt.getRequest().toString());
// 由于jainsip是单线程程序为提高性能并发处理
processThreadPool.execute(() -> {
processorFactory.createRequestProcessor(evt).process();
if (processorFactory != null) {
processorFactory.createRequestProcessor(evt).process();
}
});
}