diff --git a/src/dialects/postgres/connection-manager.js b/src/dialects/postgres/connection-manager.js index 46b4b43ee8c6..030ccbe9fdbb 100644 --- a/src/dialects/postgres/connection-manager.js +++ b/src/dialects/postgres/connection-manager.js @@ -117,6 +117,8 @@ class ConnectionManager extends AbstractConnectionManager { 'statement_timeout', // Times out queries after a set time in milliseconds in client end, query would be still running in database end. 'query_timeout', + // Number of milliseconds to wait for connection, default is no timeout. + 'connectionTimeoutMillis', // Terminate any session with an open transaction that has been idle for longer than the specified duration in milliseconds. Added in pg v7.17.0 only supported in postgres >= 10 'idle_in_transaction_session_timeout', // Maximum wait time for lock requests in milliseconds. Added in pg v8.8.0.