Skip to content

Commit a7d469e

Browse files
committed
FirestoreClient.java: Reduce MAX_CONCURRENT_LIMBO_RESOLUTIONS to 10 (was 100). This will help make the issue more reproducible and the logs produced by the previous commit more manageable.
1 parent ff388f2 commit a7d469e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/core/FirestoreClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
public final class FirestoreClient {
5555

5656
private static final String LOG_TAG = "FirestoreClient";
57-
private static final int MAX_CONCURRENT_LIMBO_RESOLUTIONS = 100;
57+
private static final int MAX_CONCURRENT_LIMBO_RESOLUTIONS = 10;
5858

5959
private final DatabaseInfo databaseInfo;
6060
private final CredentialsProvider credentialsProvider;

0 commit comments

Comments
 (0)