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

Commit a861ad8c authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Reduce the UiccCarrierPrivilegeRules loading retry interval"

parents 24fb324f 397344a6
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;