Fix the incorrect environment variable name for the thread pool size.
bug: http://b/3099715 Change-Id: I531048414f22c8edcd9c4f815c12a0bdd6347640
This commit is contained in:
@@ -134,7 +134,8 @@ class SipSessionGroup implements SipListener {
|
||||
SipFactory sipFactory = SipFactory.getInstance();
|
||||
Properties properties = new Properties();
|
||||
properties.setProperty("javax.sip.STACK_NAME", getStackName());
|
||||
properties.setProperty("javax.sip.THREAD_POOL_SIZE", THREAD_POOL_SIZE);
|
||||
properties.setProperty(
|
||||
"gov.nist.javax.sip.THREAD_POOL_SIZE", THREAD_POOL_SIZE);
|
||||
String outboundProxy = myself.getProxyAddress();
|
||||
if (!TextUtils.isEmpty(outboundProxy)) {
|
||||
Log.v(TAG, "outboundProxy is " + outboundProxy);
|
||||
|
||||
Reference in New Issue
Block a user