Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mutalyzer
mutalyzer2
Commits
3f57c5c9
Commit
3f57c5c9
authored
Nov 04, 2015
by
Vermaat
Browse files
Fix comment
parent
5867693b
Changes
1
Hide whitespace changes
Inline
Side-by-side
mutalyzer/Scheduler.py
View file @
3f57c5c9
...
...
@@ -371,10 +371,6 @@ Mutalyzer batch scheduler""" % download_url)
# Group batch jobs by email address and retrieve the oldest for
# each address. This improves fairness when certain users have
# many jobs.
# Note that batch jobs submitted via the webservices all have the
# same email address, so they are effectively throttled as if all
# from the same user. Adapting the webservices to also allow
# setting an email address is future work.
batch_jobs
=
BatchJob
.
query
.
filter
(
BatchJob
.
id
.
in_
(
session
.
query
(
func
.
min
(
BatchJob
.
id
)).
group_by
(
BatchJob
.
email
))
).
all
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment