diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-30 21:43:54 +0200 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-30 21:53:59 +0200 |
commit | b1782c09a036dccb238842174eb5eaf882069fcf (patch) | |
tree | 51c47a44e380f88210f658ae00905ad4950a4fa3 | |
parent | 002c7868cd7d2f5b3cb71014c03e458becda4a12 (diff) | |
download | jenkins.debian.net-b1782c09a036dccb238842174eb5eaf882069fcf.tar.xz |
reproducible: maintenance: also auto-reschedule package which fail due to apt fails due to "Bad Gateway"
-rwxr-xr-x | bin/reproducible_maintenance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index 893008c1..93afa3ff 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -62,7 +62,7 @@ fi # only grep through the last 5h (300 minutes) of builds... # (ignore "*None.rbuild.log" because these are build which were just started) # this job runs every 4h -FAILED_BUILDS=$(find $BASE/rbuild -type f ! -name "*None.rbuild.log" ! -mmin +300 -exec egrep -l -e 'E: Failed to fetch.*(Connection failed|Size mismatch|Cannot initiate the connection to)' {} \; || true) +FAILED_BUILDS=$(find $BASE/rbuild -type f ! -name "*None.rbuild.log" ! -mmin +300 -exec egrep -l -e 'E: Failed to fetch.*(Connection failed|Size mismatch|Cannot initiate the connection to|Bad Gateway)' {} \; || true) if [ ! -z "$FAILED_BUILDS" ] ; then echo echo "Warning: the following failed builds have been found" |