From 3f57c5c94e2ae7092b2ed23d22485249ee23291f Mon Sep 17 00:00:00 2001 From: Martijn Vermaat <martijn@vermaat.name> Date: Wed, 4 Nov 2015 14:59:34 +0100 Subject: [PATCH] Fix comment --- mutalyzer/Scheduler.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mutalyzer/Scheduler.py b/mutalyzer/Scheduler.py index e9fc35a9..d6d96bb5 100644 --- a/mutalyzer/Scheduler.py +++ b/mutalyzer/Scheduler.py @@ -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() -- GitLab