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

Commit 32e743e4 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Reduce the UiccCarrierPrivilegeRules loading retry interval" am: a861ad8c am: 4b535be9

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

Change-Id: I309b0b4497e0e98e8ac5a3c96d83343f0999ae39
parents ab96ecbe 4b535be9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -111,9 +111,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;