am cd6fe63f: am b4116c09: Fix the incorrect environment variable name for the thread pool size.

Merge commit 'cd6fe63fdc2e99da11b19a233afd81e2448d0db2'

* commit 'cd6fe63fdc2e99da11b19a233afd81e2448d0db2':
  Fix the incorrect environment variable name for the thread pool size.
This commit is contained in:
Chung-yih Wang
2010-10-19 11:18:42 -07:00
committed by Android Git Automerger

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