We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4f06f2 commit 9f1b755Copy full SHA for 9f1b755
cms/service/EvaluationService.py
@@ -356,14 +356,14 @@ def _missing_operations(self):
356
counter = 0
357
with SessionGen() as session:
358
359
- for operation, timestamp, priority in \
+ for operation, priority, timestamp in \
360
get_submissions_operations(session, self.contest_id):
361
- if self.enqueue(operation, timestamp, priority):
+ if self.enqueue(operation, priority, timestamp):
362
counter += 1
363
364
365
get_user_tests_operations(session, self.contest_id):
366
367
368
369
return counter
0 commit comments