Skip to content

Commit

Permalink
Merge pull request #1323 from codalab/rerun_all_submissions
Browse files Browse the repository at this point in the history
Rerun phase submissions
  • Loading branch information
Didayolo authored Feb 15, 2024
2 parents 52b84d4 + 2546aa0 commit bfce6b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apps/api/views/competitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,8 +634,8 @@ def rerun_submissions(self, request, pk):
phase = self.get_object()
comp = phase.competition

# Get submissions
submissions = phase.submissions.all()
# Get submissions with no parent
submissions = phase.submissions.filter(parent__isnull=True)

can_re_run_submissions = False
error_message = ""
Expand Down

0 comments on commit bfce6b5

Please sign in to comment.