mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
Add execution time to execution result
This commit is contained in:
parent
82b599c233
commit
fbeb56ab69
|
@ -188,7 +188,8 @@ export class ExecuteAll extends Command {
|
|||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
executionResult.executionTime = (Date.parse(data.stoppedAt as unknown as string) - Date.parse(data.startedAt as unknown as string))/1000;
|
||||
executionResult.finished = (data?.finished !== undefined) as boolean;
|
||||
|
||||
if (data.data.resultData.error) {
|
||||
|
|
Loading…
Reference in a new issue