diff --git a/apps/webapp/app/v3/services/completeAttempt.server.ts b/apps/webapp/app/v3/services/completeAttempt.server.ts index 8bab150c2..fe18c5c29 100644 --- a/apps/webapp/app/v3/services/completeAttempt.server.ts +++ b/apps/webapp/app/v3/services/completeAttempt.server.ts @@ -285,23 +285,6 @@ export class CompleteAttemptService extends BaseService { machinePreset: retryConfig.outOfMemory.machine, }, }); - - //complete the attempt span - await eventRepository.completeEvent(taskRunAttempt.taskRun.spanId, { - endTime: failedAt, - attributes: { - isError: true, - }, - events: [ - { - name: "exception", - time: failedAt, - properties: { - exception: createExceptionPropertiesFromError(sanitizedError), - }, - }, - ], - }); } }