Fix the incorrect environment variable name for the thread pool size.

bug: http://b/3099715
Change-Id: I531048414f22c8edcd9c4f815c12a0bdd6347640
This commit is contained in:
Chung-yih Wang
2010-10-19 10:20:21 +08:00
parent dd7341f775
commit b4116c09fb

View File

@@ -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);