mirror of https://github.com/grpc/grpc-node.git
Merge pull request #2680 from murgatroid99/grpc-js_pick_first_disconnect_fix
grpc-js: pick_first: Don't automatically reconnect after connection drop
This commit is contained in:
commit
cb966dfcd6
|
@ -348,7 +348,6 @@ export class PickFirstLoadBalancer implements LoadBalancer {
|
||||||
if (newState !== ConnectivityState.READY) {
|
if (newState !== ConnectivityState.READY) {
|
||||||
this.removeCurrentPick();
|
this.removeCurrentPick();
|
||||||
this.calculateAndReportNewState();
|
this.calculateAndReportNewState();
|
||||||
this.requestReresolution();
|
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue