-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Description
ability to pass true to client.end to have the method wait until the client's internal query queue is emptied before disconnection
client.query('alskdjf')
client.end() //disconnects before query is finished
versus
client.query('lkajsdf');
client.end(true) //disconnects once query is finished