File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @grpc/grpc-js" ,
3
- "version" : " 1.5.3 " ,
3
+ "version" : " 1.5.4 " ,
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 @@ -125,9 +125,9 @@ export class ChildLoadBalancerHandler implements LoadBalancer {
125
125
}
126
126
exitIdle ( ) : void {
127
127
if ( this . currentChild ) {
128
- this . currentChild . resetBackoff ( ) ;
128
+ this . currentChild . exitIdle ( ) ;
129
129
if ( this . pendingChild ) {
130
- this . pendingChild . resetBackoff ( ) ;
130
+ this . pendingChild . exitIdle ( ) ;
131
131
}
132
132
}
133
133
}
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ class DnsResolver implements Resolver {
144
144
if ( this . ipResult !== null ) {
145
145
trace ( 'Returning IP address for target ' + uriToString ( this . target ) ) ;
146
146
setImmediate ( ( ) => {
147
+ this . backoff . reset ( ) ;
147
148
this . listener . onSuccessfulResolution (
148
149
this . ipResult ! ,
149
150
null ,
You can’t perform that action at this time.
0 commit comments