From e1dc1ec1d4e341626072f9e929e3e58660158e2c Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 9 Oct 2015 16:06:00 +0200 Subject: reproducible: reschedule ftbfs (without bugs filed) after 5 instead of 10 days --- bin/reproducible_scheduler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 2a0071cb..c916dcce 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -351,7 +351,7 @@ def query_new_versions(suite, arch, limit): def query_old_ftbfs_versions(suite, arch, limit): - criteria = 'status ftbfs, no bug filed, tested at least ten days ago, ' + \ + criteria = 'status ftbfs, no bug filed, tested at least 5 days ago, ' + \ 'no new version available, sorted by last build date' query = """SELECT DISTINCT s.id, s.name FROM sources AS s JOIN results AS r ON s.id = r.package_id @@ -359,7 +359,7 @@ def query_old_ftbfs_versions(suite, arch, limit): WHERE s.suite='{suite}' AND s.architecture='{arch}' AND r.status = 'FTBFS' AND ( n.bugs = '[]' OR n.bugs IS NULL ) - AND r.build_date < datetime('now', '-10 day') + AND r.build_date < datetime('now', '-5 days') AND s.id NOT IN (SELECT schedule.package_id FROM schedule) ORDER BY r.build_date LIMIT {limit}""".format(suite=suite, arch=arch, limit=limit) -- cgit v1.2.3-54-g00ecf