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 4475a9f + 2fe961d commit e7e199cCopy full SHA for e7e199c
packages/grpc-js/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@grpc/grpc-js",
3
- "version": "1.9.1",
+ "version": "1.9.2",
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/load-balancer-pick-first.ts
@@ -315,7 +315,7 @@ export class PickFirstLoadBalancer implements LoadBalancer {
315
}
316
317
private pickSubchannel(subchannel: SubchannelInterface) {
318
- if (subchannel === this.currentPick) {
+ if (this.currentPick && subchannel.realSubchannelEquals(this.currentPick)) {
319
return;
320
321
trace('Pick subchannel with address ' + subchannel.getAddress());
0 commit comments