We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 144062e commit ffc4b4aCopy full SHA for ffc4b4a
CHANGES.md
@@ -1,3 +1,7 @@
1
+In the next release ...
2
+
3
+- Fix issue handling connection error during secure startup.
4
5
1.8.0 (2023-12-14)
6
------------------
7
src/client.ts
@@ -278,11 +278,8 @@ export class Client {
278
writer.startupSSL();
279
280
const abort = (error: Error) => {
281
- if (!this.handleError(error)) {
282
- throw new Error("Internal error occurred while establishing connection");
283
- }
+ this.handleError(error);
284
this.events.connect.emit(error);
285
- this.end();
286
}
287
288
const startup = (stream?: Socket) => {
0 commit comments