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

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

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

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

Change-Id: I7df60a45973c3d6c5eec064bf0c9768a4123f74f
parents cc922ade a861ad8c
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;