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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -307,7 +307,7 @@ export class PostgresTrigger implements INodeType {
})(),
),
);
}, 30000);
}, 60000);
connection.client.on('notification', async (data: IDataObject) => {
if (data.payload) {
try {