diff options
| author | 2023-06-22 00:12:48 +0000 | |
|---|---|---|
| committer | 2023-06-22 00:12:48 +0000 | |
| commit | 2f7078a5ca3d15f4d04d8f804b2693843295ed28 (patch) | |
| tree | 2a2206060bf28c15b88e05a7df6ce24745833b04 | |
| parent | 563fe1116c5e1260b185fbacbeb662feaecfb124 (diff) | |
| parent | 09c55d36e5b01284ff39e1fdcfff7c83a8a88aa6 (diff) | |
[DO NOT MERGE] Increase timeout for UIAutomation am: 09c55d36e5
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2617830
Change-Id: Ibfb600a3d6ea489c6a6d6fe4ec9e625bb131f78a
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | core/java/android/app/Instrumentation.java | 2 | ||||
| -rw-r--r-- | core/java/android/app/UiAutomation.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/app/Instrumentation.java b/core/java/android/app/Instrumentation.java index 8984c4292023..da5f308a9958 100644 --- a/core/java/android/app/Instrumentation.java +++ b/core/java/android/app/Instrumentation.java @@ -91,7 +91,7 @@ public class Instrumentation { private static final String TAG = "Instrumentation"; - private static final long CONNECT_TIMEOUT_MILLIS = 5000; + private static final long CONNECT_TIMEOUT_MILLIS = 60000; /** * @hide diff --git a/core/java/android/app/UiAutomation.java b/core/java/android/app/UiAutomation.java index ac6759396c8f..9568f68fb99c 100644 --- a/core/java/android/app/UiAutomation.java +++ b/core/java/android/app/UiAutomation.java @@ -113,7 +113,7 @@ public final class UiAutomation { private static final int CONNECTION_ID_UNDEFINED = -1; - private static final long CONNECT_TIMEOUT_MILLIS = 5000; + private static final long CONNECT_TIMEOUT_MILLIS = 60000; /** Rotation constant: Unfreeze rotation (rotating the device changes its rotation state). */ public static final int ROTATION_UNFREEZE = -2; |