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

Commit 6561d91e authored by Chavi Weingarten's avatar Chavi Weingarten Committed by Android (Google) Code Review
Browse files

Merge "Blast sync timeout should be in s, not ms" into main

parents 2d0e77b0 0bdfabdf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11991,7 +11991,7 @@ public final class ViewRootImpl implements ViewParent,
                        Runnable timeoutRunnable = () -> Log.e(mTag,
                                "Failed to submit the sync transaction after 4s. Likely to ANR "
                                        + "soon");
                        mHandler.postDelayed(timeoutRunnable, 4L * Build.HW_TIMEOUT_MULTIPLIER);
                        mHandler.postDelayed(timeoutRunnable, 4000L * Build.HW_TIMEOUT_MULTIPLIER);
                        transaction.addTransactionCommittedListener(mSimpleExecutor,
                                () -> mHandler.removeCallbacks(timeoutRunnable));
                        surfaceSyncGroup.addTransaction(transaction);