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.
2 parents aade055 + ea6ba89 commit 7e53472Copy full SHA for 7e53472
packages/grpc-js/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@grpc/grpc-js",
3
- "version": "1.9.3",
+ "version": "1.9.4",
4
"description": "gRPC Library for Node - pure JS implementation",
5
"homepage": "https://grpc.io/",
6
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
packages/grpc-js/src/subchannel.ts
@@ -120,6 +120,7 @@ export class Subchannel {
120
this.backoffTimeout = new BackoffTimeout(() => {
121
this.handleBackoffTimer();
122
}, backoffOptions);
123
+ this.backoffTimeout.unref();
124
this.subchannelAddressString = subchannelAddressToString(subchannelAddress);
125
126
this.keepaliveTime = options['grpc.keepalive_time_ms'] ?? -1;
0 commit comments