Skip to content

Commit

Permalink
remove the additional status checks
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktrn committed Jan 10, 2025
1 parent 6026810 commit 7127ba4
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions apps/webapp/app/v3/services/resumeAttempt.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7127ba4

Please sign in to comment.