Skip to content

Commit 27a7100

Browse files
committed
Add back 'end' event and fix graceful shutdown error handling
1 parent 4449fb8 commit 27a7100

File tree

3 files changed

+26
-12
lines changed

3 files changed

+26
-12
lines changed

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
In next release ...
22

3+
- Added "end" event which was removed in v1.8.0.
4+
5+
- The `end` method now correctly throws an error if a network error
6+
occurred during the resulting protocol traffic.
7+
38
## v2.0.3 (2024-06-15)
49

510
- Fix issue where larger results would sometimes have duplicates (#122).

src/client.ts

+18-12
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,17 @@ interface PreFlightQueue {
142142

143143
const DEFAULTS = new Defaults(env as Record<string, string>);
144144

145-
export type EventMap<
146-
T = {
147-
error: DatabaseError;
148-
notice: ClientNotice;
149-
notification: Notification;
150-
},
151-
> = {
152-
[K in keyof T]: [T[K]];
153-
};
145+
146+
export interface EventMap {
147+
/** The connection has ended, possibly due to a network error. */
148+
end: [NodeJS.ErrnoException | null];
149+
/** A database error has occurred. */
150+
error: [DatabaseError];
151+
/** A client notice (typically a warning) has been received. */
152+
notice: [ClientNotice];
153+
/** A client notification has been received. */
154+
notification: [Notification];
155+
}
154156

155157
type Resolve<T> = (value?: T) => void;
156158

@@ -209,6 +211,7 @@ export class ClientImpl {
209211

210212
this.stream.on('close', () => {
211213
this.closed = true;
214+
this.events.emit('end', null);
212215
this.ending?.();
213216
});
214217

@@ -233,10 +236,12 @@ export class ClientImpl {
233236
} else {
234237
// Don't raise ECONNRESET errors - they can & should be
235238
// ignored during disconnect.
239+
if (error.errno === constants.errno.ECONNRESET) return;
240+
236241
if (this.ending) {
237-
if (error.errno === constants.errno.ECONNRESET) return;
238-
this.ending();
242+
this.ending(error);
239243
}
244+
this.events.emit('end', error);
240245
}
241246
});
242247

@@ -286,7 +291,8 @@ export class ClientImpl {
286291

287292
const abort = (error: Error) => {
288293
this.handleError(error);
289-
this.connecting?.(error);
294+
if (!this.connecting) throw error;
295+
this.connecting(error);
290296
};
291297

292298
const startup = (stream?: Socket) => {

test/client.test.ts

+3
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,12 @@ describe('Query', () => {
287287
idleInTransactionSessionTimeout: 500,
288288
});
289289
const errors: string[] = [];
290+
let error: NodeJS.ErrnoException | null = null;
291+
client.on('end', (isError) => error = isError);
290292
client.on('error', (error) => errors.push(error.code));
291293
await new Promise((resolve) => setTimeout(resolve, 625));
292294
equal(client.closed, true);
295+
equal(error, null);
293296
deepEqual(errors, ['57P05']);
294297
});
295298

0 commit comments

Comments
 (0)