mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(Postgres Trigger Node): Increase manual trigger timeout from 30 to 60 seconds (#8015)
This commit is contained in:
parent
e5581ce802
commit
09a5729305
|
@ -307,7 +307,7 @@ export class PostgresTrigger implements INodeType {
|
|||
})(),
|
||||
),
|
||||
);
|
||||
}, 30000);
|
||||
}, 60000);
|
||||
connection.client.on('notification', async (data: IDataObject) => {
|
||||
if (data.payload) {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue