Skip to content

Commit 9630ff1

Browse files
committed
increase timeout interval (#6219)
1 parent f9c01c0 commit 9630ff1

File tree

1 file changed

+2
-2
lines changed
  • firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/common

1 file changed

+2
-2
lines changed

firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/common/Utils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
@SuppressWarnings({"ResultOfMethodCallIgnored", "UnusedReturnValue"})
2828
public final class Utils {
2929
/** Timeout in milliseconds for blocking on background threads. */
30-
private static final int BACKGROUND_TIMEOUT_MILLIS = 3_000;
30+
private static final int BACKGROUND_TIMEOUT_MILLIS = 4_000;
3131

3232
/** Timeout in milliseconds for blocking on the main thread. Be careful about ANRs. */
33-
private static final int MAIN_TIMEOUT_MILLIS = 2_000;
33+
private static final int MAIN_TIMEOUT_MILLIS = 3_000;
3434

3535
/**
3636
* Blocks until the given Task completes, and then returns the value the Task was resolved with,

0 commit comments

Comments
 (0)