Close the client postgresql connection after rejection. (#4084)

Co-authored-by: Manuel Vázquez Acosta <manuel@merchise.org>
This commit is contained in:
Louis Lam
2023-11-22 19:50:03 +08:00
committed by GitHub
parent bf58838b89
commit 8e61158758

View File

@@ -458,6 +458,7 @@ exports.postgresQuery = function (connectionString, query) {
}); });
} catch (e) { } catch (e) {
reject(e); reject(e);
client.end();
} }
} }
}); });