@@ -142,15 +142,17 @@ interface PreFlightQueue {
142
142
143
143
const DEFAULTS = new Defaults ( env as Record < string , string > ) ;
144
144
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
+ }
154
156
155
157
type Resolve < T > = ( value ?: T ) => void ;
156
158
@@ -209,6 +211,7 @@ export class ClientImpl {
209
211
210
212
this . stream . on ( 'close' , ( ) => {
211
213
this . closed = true ;
214
+ this . events . emit ( 'end' , null ) ;
212
215
this . ending ?.( ) ;
213
216
} ) ;
214
217
@@ -233,10 +236,12 @@ export class ClientImpl {
233
236
} else {
234
237
// Don't raise ECONNRESET errors - they can & should be
235
238
// ignored during disconnect.
239
+ if ( error . errno === constants . errno . ECONNRESET ) return ;
240
+
236
241
if ( this . ending ) {
237
- if ( error . errno === constants . errno . ECONNRESET ) return ;
238
- this . ending ( ) ;
242
+ this . ending ( error ) ;
239
243
}
244
+ this . events . emit ( 'end' , error ) ;
240
245
}
241
246
} ) ;
242
247
@@ -286,7 +291,8 @@ export class ClientImpl {
286
291
287
292
const abort = ( error : Error ) => {
288
293
this . handleError ( error ) ;
289
- this . connecting ?.( error ) ;
294
+ if ( ! this . connecting ) throw error ;
295
+ this . connecting ( error ) ;
290
296
} ;
291
297
292
298
const startup = ( stream ?: Socket ) => {
0 commit comments