mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -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) => {
|
connection.client.on('notification', async (data: IDataObject) => {
|
||||||
if (data.payload) {
|
if (data.payload) {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue