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

Commit 4a52d58a authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Reduce the UiccCarrierPrivilegeRules loading retry interval" am:...

Merge "Reduce the UiccCarrierPrivilegeRules loading retry interval" am: a861ad8c am: 4b535be9 am: 32e743e4 am: 6ced9c6a am: 712e6b62

Original change: https://android-review.googlesource.com/c/platform/frameworks/opt/telephony/+/1382311

Change-Id: If53dc62bbe89b651df991a71d8e2a87135027513
parents 4b63e26a 712e6b62
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -112,9 +112,9 @@ public class UiccCarrierPrivilegeRules extends Handler {
    private static final int STATE_LOADED   = 1;
    private static final int STATE_ERROR    = 2;

    // Max number of retries for open logical channel, interval is 10s.
    private static final int MAX_RETRY = 1;
    private static final int RETRY_INTERVAL_MS = 10000;
    // Max number of retries for open logical channel, interval is 5s.
    private static final int MAX_RETRY = 2;
    private static final int RETRY_INTERVAL_MS = 5000;
    private static final int STATUS_CODE_CONDITION_NOT_SATISFIED = 0x6985;
    private static final int STATUS_CODE_APPLET_SELECT_FAILED = 0x6999;