File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,13 @@ export class DaemonRpc {
176
176
177
177
public connect ( ) : Promise < void > {
178
178
return new Promise ( ( resolve , reject ) => {
179
+ const usedClient = this . client ;
179
180
this . client . waitForReady ( this . deadlineFromNow ( ) , ( error ) => {
181
+ if ( this . client !== usedClient ) {
182
+ reject ( new Error ( 'Stale connection attempt' ) ) ;
183
+ return ;
184
+ }
185
+
180
186
if ( error ) {
181
187
this . onClose ( error ) ;
182
188
this . ensureConnectivity ( ) ;
@@ -831,6 +837,9 @@ export class DaemonRpc {
831
837
// check the connectivity state and nudge the client into connecting.
832
838
// `grpc.Channel.getConnectivityState(true)` should make it attempt to connect.
833
839
private ensureConnectivity ( ) {
840
+ if ( this . reconnectionTimeout ) {
841
+ clearTimeout ( this . reconnectionTimeout ) ;
842
+ }
834
843
this . reconnectionTimeout = setTimeout ( ( ) => {
835
844
const lastState = this . client . getChannel ( ) . getConnectivityState ( true ) ;
836
845
if ( this . channelDisconnected ( lastState ) ) {
You can’t perform that action at this time.
0 commit comments