From da554cf225aa3c693ae449efe193762a5291e9a1 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 3 May 2017 14:27:42 +0200 Subject: reproducible Debian: raise daily personal scheduling limit to 500, we've seen no abuse, and we can always revert this Signed-off-by: Holger Levsen --- bin/reproducible_remote_scheduler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_remote_scheduler.py') diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index ff14806c..2dab13ba 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -212,7 +212,7 @@ date = (now - time_delta).strftime('%Y-%m-%d %H:%M') log.debug('date_scheduled = ' + date + ' time_delta = ' + str(time_delta)) -# a single person can't schedule more than 200 packages in the same day; this +# a single person can't schedule more than 500 packages in the same day; this # is actually easy to bypass, but let's give some trust to the Debian people query = """SELECT count(*) FROM manual_scheduler WHERE requester = '{}' AND date_request > '{}'""" @@ -221,7 +221,7 @@ try: except IndexError: amount = 0 log.debug(requester + ' already scheduled ' + str(amount) + ' packages today') -if amount + len(ids) > 200 and not local: +if amount + len(ids) > 500 and not local: log.error(bcolors.FAIL + 'You have exceeded the maximum number of manual ' + 'reschedulings allowed for a day. Please ask in ' + '#debian-reproducible if you need to schedule more packages.' + -- cgit v1.2.3-54-g00ecf