Skip to content

Commit 6e2d647

Browse files
authored
Merge pull request #106 from mattiacerutti/main
Fix IPC close function
2 parents 14bc0bd + eb86432 commit 6e2d647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transport/IPC.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ export class IPCTransport extends Transport {
246246
this.socket = undefined;
247247
resolve();
248248
});
249-
this.socket!.end();
249+
this.socket!.destroy();
250250
});
251251
}
252252
}

0 commit comments

Comments
 (0)