Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions webapp/src/Service/RejudgingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ public function finishRejudging(Rejudging $rejudging, string $action, ?callable
SET result = :aborted
WHERE judgingid = :judgingid
AND result IS NULL', ['aborted' => 'aborted', 'judgingid' => $submission['judgingid']]);
$this->em->getConnection()->executeQuery(
'DELETE FROM queuetask WHERE judgingid = :judgingid', ['judgingid' => $submission['judgingid']]);
} else {
$error = "Unknown action '$action' specified.";
throw new BadMethodCallException($error);
Expand Down
Loading