Skip to content
This repository has been archived by the owner on Nov 22, 2017. It is now read-only.

Commit

Permalink
Log exception when a retrigger fails
Browse files Browse the repository at this point in the history
  • Loading branch information
Armen Zambrano G committed Sep 16, 2016
1 parent 1bab6d3 commit 9f87c15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mozci/mozci.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,8 @@ def trigger_range(buildername, revisions, times=1, dry_run=False,
count=(times - status_summary.potential_jobs),
dry_run=dry_run)
schedule_new_job = False
except (IndexError, ConnectionError):
except (IndexError, ConnectionError) as e:
LOG.info(str(e))
LOG.warning(
"We failed to retrigger the job, however, "
"we will try to schedule a new one."
Expand Down

0 comments on commit 9f87c15

Please sign in to comment.