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 dc50232 commit 22a5302Copy full SHA for 22a5302
packages/firestore/src/platform_node/grpc_connection.ts
@@ -97,14 +97,7 @@ export class GrpcConnection implements Connection {
97
: grpc.credentials.createInsecure();
98
this.cachedStub = new this.firestore.Firestore(
99
this.databaseInfo.host,
100
- credentials,
101
- {
102
- // We do our own connection backoff (that for example is aware of whether or
103
- // not a write stream error is permanent or not) so we don't want gRPC to do
104
- // backoff on top of that. 100ms is the minimum value that gRPC allows.
105
- 'grpc.initial_reconnect_backoff_ms': 100,
106
- 'grpc.max_reconnect_backoff_ms': 100
107
- }
+ credentials
108
);
109
}
110
return this.cachedStub;
0 commit comments