Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd6fe63f authored by Chung-yih Wang's avatar Chung-yih Wang Committed by Android Git Automerger
Browse files

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

Merge commit 'b4116c09' into gingerbread-plus-aosp

* commit 'b4116c09':
  Fix the incorrect environment variable name for the thread pool size.
parents 824de4b3 b4116c09
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);