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

Commit 397344a6 authored by yinxu's avatar yinxu
Browse files

Reduce the UiccCarrierPrivilegeRules loading retry interval

Bug: 161494717
Test: Telephony Unit Tests
Change-Id: I68c210c81aa4b9bcad9252905d908ea300d1ed45
parent 24fb324f
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;