We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a94d79a commit 1d836a1Copy full SHA for 1d836a1
firebase-firestore/src/main/java/com/google/firebase/firestore/remote/GrpcCallProvider.java
@@ -254,7 +254,7 @@ private void initChannelTask() {
254
Executors.BACKGROUND_EXECUTOR,
255
() -> {
256
ManagedChannel channel = initChannel(context, databaseInfo);
257
- onConnectivityStateChange(channel);
+ asyncQueue.enqueueAndForget(() -> onConnectivityStateChange(channel));
258
FirestoreGrpc.FirestoreStub firestoreStub =
259
FirestoreGrpc.newStub(channel)
260
.withCallCredentials(firestoreHeaders)
0 commit comments