diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-31 14:51:21 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-31 14:51:21 +0200 |
commit | 5a06f8714da692b34c985e94d524bf9fc390e491 (patch) | |
tree | 60a5b9dcf6bb6db16285c719469d3af850ff1083 /bin | |
parent | 2e53aac8d039cd983130fa09a4b752e53ec503f4 (diff) | |
download | jenkins.debian.net-5a06f8714da692b34c985e94d524bf9fc390e491.tar.xz |
reproducible: lets try without 'OUTER', see build/reproducible_scheduler#7286
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
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 ) |