File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @grpc/grpc-js" ,
3
- "version" : " 1.9.1 " ,
3
+ "version" : " 1.9.2 " ,
4
4
"description" : " gRPC Library for Node - pure JS implementation" ,
5
5
"homepage" : " https://grpc.io/" ,
6
6
"repository" : " https://github.com/grpc/grpc-node/tree/master/packages/grpc-js" ,
Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ export class PickFirstLoadBalancer implements LoadBalancer {
315
315
}
316
316
317
317
private pickSubchannel ( subchannel : SubchannelInterface ) {
318
- if ( subchannel === this . currentPick ) {
318
+ if ( this . currentPick && subchannel . realSubchannelEquals ( this . currentPick ) ) {
319
319
return ;
320
320
}
321
321
trace ( 'Pick subchannel with address ' + subchannel . getAddress ( ) ) ;
You can’t perform that action at this time.
0 commit comments