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

Commit b290ce3d authored by Robert Greenwalt's avatar Robert Greenwalt
Browse files

Make DcTracker RetryFailures.ONLY_ON_CHANGE work.

We should only be retrying things if there was a substantial change.

Don't call trySetupData from Dct.setupDataOnConnectableApns when
in ONLY_ON_CHANGE mode unless there was a change for the FAILED
APN.

bug:24179336
Change-Id: Ia65dbd9789978548b70fb990ccfd5c55dcc51163
parent 440c27dc
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -814,7 +814,11 @@ public final class DcTracker extends DcTrackerBase {
                        if (originalApns.size() != waitingApns.size() ||
                                originalApns.containsAll(waitingApns) == false) {
                            apnContext.releaseDataConnection(reason);
                        } else {
                            continue;
                        }
                    } else {
                        continue;
                    }
                }
            }