From 7127ba4c9b092057a041d13d8ed6acbf7d9c6a4e Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Fri, 10 Jan 2025 18:22:33 +0000 Subject: [PATCH] remove the additional status checks --- apps/webapp/app/v3/services/resumeAttempt.server.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/apps/webapp/app/v3/services/resumeAttempt.server.ts b/apps/webapp/app/v3/services/resumeAttempt.server.ts index a2bf8db04b..daf8d96936 100644 --- a/apps/webapp/app/v3/services/resumeAttempt.server.ts +++ b/apps/webapp/app/v3/services/resumeAttempt.server.ts @@ -211,14 +211,6 @@ export class ResumeAttemptService extends BaseService { const updatedAttempt = await this._prisma.taskRunAttempt.update({ where: { id: attempt.id, - status: { - notIn: FINAL_ATTEMPT_STATUSES, - }, - taskRun: { - status: { - notIn: FINAL_RUN_STATUSES, - }, - }, }, data: { status: "EXECUTING",