feat: rm execution time webhook payload

This commit is contained in:
Rohit
2025-05-27 23:31:26 +05:30
parent b52f23b2ef
commit c02a09ff6e

View File

@@ -213,7 +213,6 @@ async function processRunExecution(job: Job<ExecuteRunData>) {
status: 'failed',
started_at: plainRun.startedAt,
finished_at: new Date().toLocaleString(),
execution_time_ms: new Date().getTime() - new Date(plainRun.startedAt).getTime(),
error: {
message: "Failed: Recording not found",
type: 'RecodingNotFoundError'
@@ -457,7 +456,6 @@ async function processRunExecution(job: Job<ExecuteRunData>) {
status: 'failed',
started_at: plainRun.startedAt,
finished_at: new Date().toLocaleString(),
execution_time_ms: new Date().getTime() - new Date(plainRun.startedAt).getTime(),
error: {
message: executionError.message,
stack: executionError.stack,