Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment