convert timeout seconds to milliseconds
This commit is contained in:
parent
2b5b7f2b87
commit
266465c8df
|
@ -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 }
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue