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

Commit ace52242 authored by Hunsuk Choi's avatar Hunsuk Choi Committed by Android (Google) Code Review
Browse files

Merge "Make binder call non-blocked in DomainSelectionService" into main

parents ad2bf673 6134198b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -831,7 +831,7 @@ public abstract class DomainSelectionService extends Service {
            @NonNull String tag, @NonNull String errorLogName) {
        try {
            CompletableFuture.runAsync(
                    () -> TelephonyUtils.runWithCleanCallingIdentity(r), executor).join();
                    () -> TelephonyUtils.runWithCleanCallingIdentity(r), executor);
        } catch (CancellationException | CompletionException e) {
            Rlog.w(tag, "Binder - " + errorLogName + " exception: " + e.getMessage());
        }