fix(Postgres Trigger Node): Increase manual trigger timeout from 30 to 60 seconds (#8015)

This commit is contained in:
Jon
2023-12-13 13:04:16 +00:00
committed by GitHub
parent e5581ce802
commit 09a5729305

View File

@@ -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 {