Skip to content

Commit 1459495

Browse files
committed
Ignore waitForReady completing for stale daemon clients
1 parent 0454d16 commit 1459495

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

gui/src/main/daemon-rpc.ts

+9
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,13 @@ export class DaemonRpc {
176176

177177
public connect(): Promise<void> {
178178
return new Promise((resolve, reject) => {
179+
const usedClient = this.client;
179180
this.client.waitForReady(this.deadlineFromNow(), (error) => {
181+
if (this.client !== usedClient) {
182+
reject(new Error('Stale connection attempt'));
183+
return;
184+
}
185+
180186
if (error) {
181187
this.onClose(error);
182188
this.ensureConnectivity();
@@ -831,6 +837,9 @@ export class DaemonRpc {
831837
// check the connectivity state and nudge the client into connecting.
832838
// `grpc.Channel.getConnectivityState(true)` should make it attempt to connect.
833839
private ensureConnectivity() {
840+
if (this.reconnectionTimeout) {
841+
clearTimeout(this.reconnectionTimeout);
842+
}
834843
this.reconnectionTimeout = setTimeout(() => {
835844
const lastState = this.client.getChannel().getConnectivityState(true);
836845
if (this.channelDisconnected(lastState)) {

0 commit comments

Comments
 (0)