与master分支同步
This commit is contained in:
parent
45bc2f60f2
commit
809d650893
@ -121,7 +121,9 @@ public class SipLayer implements SipListener {
|
|||||||
logger.debug(evt.getRequest().toString());
|
logger.debug(evt.getRequest().toString());
|
||||||
// 由于jainsip是单线程程序,为提高性能并发处理
|
// 由于jainsip是单线程程序,为提高性能并发处理
|
||||||
processThreadPool.execute(() -> {
|
processThreadPool.execute(() -> {
|
||||||
processorFactory.createRequestProcessor(evt).process();
|
if (processorFactory != null) {
|
||||||
|
processorFactory.createRequestProcessor(evt).process();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,5 +66,4 @@ public interface DeviceMapper {
|
|||||||
|
|
||||||
@Delete("DELETE FROM device WHERE deviceId=#{deviceId}")
|
@Delete("DELETE FROM device WHERE deviceId=#{deviceId}")
|
||||||
int del(String deviceId);
|
int del(String deviceId);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user