mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
feat(Postgres Node): Options keepAlive and keepAliveInitialDelayMillis (#9067)
This commit is contained in:
@@ -30,6 +30,16 @@ export const optionsCollection: INodeProperties = {
|
||||
default: 30,
|
||||
description: 'Number of seconds reserved for connecting to the database',
|
||||
},
|
||||
{
|
||||
displayName: 'Delay Closing Idle Connection',
|
||||
name: 'delayClosingIdleConnection',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
description: 'Number of seconds to wait before idle connection would be eligible for closing',
|
||||
typeOptions: {
|
||||
minValue: 0,
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Query Batching',
|
||||
name: 'queryBatching',
|
||||
|
||||
Reference in New Issue
Block a user