From 146163c86cd8a48fc3c0e9b915bf8f79a19d936e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Lal?= Date: Fri, 27 Feb 2026 15:44:41 +0100 Subject: [PATCH] fix: stop overriding clientConfig's Promise MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémy Lal --- lib/postgresql.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/postgresql.js b/lib/postgresql.js index 1b55e1d1..c850a51c 100644 --- a/lib/postgresql.js +++ b/lib/postgresql.js @@ -78,7 +78,6 @@ function PostgreSQL(postgresql, settings) { // pg-pool doesn't handle string config correctly this.clientConfig.connectionString = settings.url; } - this.clientConfig.Promise = Promise; this.pg = new postgresql.Pool(this.clientConfig); attachErrorHandler(settings, this.pg);