summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-07-31 14:51:21 +0200
committerHolger Levsen <holger@layer-acht.org>2015-07-31 14:51:21 +0200
commit5a06f8714da692b34c985e94d524bf9fc390e491 (patch)
tree60a5b9dcf6bb6db16285c719469d3af850ff1083 /bin
parent2e53aac8d039cd983130fa09a4b752e53ec503f4 (diff)
downloadjenkins.debian.net-5a06f8714da692b34c985e94d524bf9fc390e491.tar.xz
reproducible: lets try without 'OUTER', see build/reproducible_scheduler#7286
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_scheduler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index 2df24d7c..ddb1e33e 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -215,7 +215,7 @@ def query_old_ftbfs_versions(suite, limit):
'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
- OUTER JOIN notes AS n ON n.package_id=s.id
+ JOIN notes AS n ON n.package_id=s.id
WHERE s.suite='{suite}'
AND r.status = 'FTBFS'
AND ( n.bugs = '[]' OR n.bugs IS NULL )