refactor(Postgres Node): Backport connection pooling to postgres v1 (#12484)

This commit is contained in:
Danny Martini
2025-01-16 11:09:12 +01:00
committed by GitHub
parent c97bd48a77
commit 35cb10c5e7
12 changed files with 49 additions and 69 deletions

View File

@@ -37,6 +37,14 @@ export class Postgres implements ICredentialType {
},
default: '',
},
{
displayName: 'Maximum Number of Connections',
name: 'maxConnections',
type: 'number',
default: 100,
description:
'Make sure this value times the number of workers you have is lower than the maximum number of connections your postgres instance allows.',
},
{
displayName: 'Ignore SSL Issues (Insecure)',
name: 'allowUnauthorizedCerts',