You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Revert D51346658: Multisect successfully blamed "D51346658: [RN][Android] Handle all incoming Inspector messages on main thread, downgrade some errors to logs" for otest failure
Summary:
This diff is reverting D51346658
D51346658: [RN][Android] Handle all incoming Inspector messages on main thread, downgrade some errors to logs by motiz88 has been identified to be causing the following test failure:
Tests affected:
- [xplat/endtoend/jest-e2e/apps/facebook_xplat/ReactNativeTTRCTester/__tests__/ReactNativeTTRCTester-storeOrNetworkWithoutCachedContent-android-e2e.js](https://www.internalfb.com/intern/test/281475019301167/)
Here's the Multisect link:
https://www.internalfb.com/multisect/3539088
Here are the tasks that are relevant to this breakage:
We're generating a revert to back out the changes in this diff, please note the backout may land if someone accepts it.
If you believe this diff has been generated in error you may Commandeer and Abandon it.
bypass-github-export-checks
Changelog: [Internal]
Reviewed By: motiz88
Differential Revision: D51512872
fbshipit-source-id: 8bc8e12b651f91a6f74243a0a85fca7fd1953bdb
Copy file name to clipboardExpand all lines: packages/react-native/ReactAndroid/src/main/java/com/facebook/react/devsupport/InspectorPackagerConnection.java
+31-48Lines changed: 31 additions & 48 deletions
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,12 @@
8
8
packagecom.facebook.react.devsupport;
9
9
10
10
importandroid.os.AsyncTask;
11
+
importandroid.os.Handler;
12
+
importandroid.os.Looper;
11
13
importandroidx.annotation.Nullable;
12
14
importcom.facebook.common.logging.FLog;
13
15
importcom.facebook.react.bridge.Inspector;
14
-
importcom.facebook.react.bridge.UiThreadUtil;
16
+
importjava.io.IOException;
15
17
importjava.util.HashMap;
16
18
importjava.util.List;
17
19
importjava.util.Map;
@@ -35,20 +37,17 @@ public class InspectorPackagerConnection {
0 commit comments