From 266465c8df4f93f9444cf74d13283988d007c39e Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Mon, 15 May 2023 14:48:34 +0100 Subject: [PATCH] convert timeout seconds to milliseconds --- packages/server/src/api/controllers/automation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/api/controllers/automation.ts b/packages/server/src/api/controllers/automation.ts index dccab86156..3e68dcb0cb 100644 --- a/packages/server/src/api/controllers/automation.ts +++ b/packages/server/src/api/controllers/automation.ts @@ -272,7 +272,7 @@ export async function trigger(ctx: BBContext) { automation, { fields: ctx.request.body.fields, - timeout: ctx.request.body.timeout || 120000, + timeout: ctx.request.body.timeout * 1000 || 120000, }, { getResponses: true } )