mirror of https://github.com/grpc/grpc-node.git
Improve round robin error message
This commit is contained in:
parent
2a4cd42f82
commit
fad797fd92
|
@ -164,7 +164,7 @@ export class RoundRobinLoadBalancer implements LoadBalancer {
|
|||
} else if (
|
||||
this.countChildrenWithState(ConnectivityState.TRANSIENT_FAILURE) > 0
|
||||
) {
|
||||
const errorMessage = `No connection established. Last error: ${this.lastError}`;
|
||||
const errorMessage = `round_robin: No connection established. Last error: ${this.lastError}`;
|
||||
this.updateState(
|
||||
ConnectivityState.TRANSIENT_FAILURE,
|
||||
new UnavailablePicker({
|
||||
|
|
Loading…
Reference in New Issue