| Index: appengine/findit/waterfall/try_job_util.py
|
| diff --git a/appengine/findit/waterfall/try_job_util.py b/appengine/findit/waterfall/try_job_util.py
|
| index 891edbd15b48cad22a42b2381f80df4aada6d89b..87f0eda82aec4aa2befa529f7fd1446af7c4c618 100644
|
| --- a/appengine/findit/waterfall/try_job_util.py
|
| +++ b/appengine/findit/waterfall/try_job_util.py
|
| @@ -125,7 +125,7 @@ def _GetFailedTargetsFromSignals(signals, master_name, builder_name):
|
|
|
| strict_regex = waterfall_config.EnableStrictRegexForCompileLinkFailures(
|
| master_name, builder_name)
|
| - for source_target in signals['compile']['failed_targets']:
|
| + for source_target in signals['compile'].get('failed_targets', []):
|
| # For link failures, we pass the executable targets directly to try-job, and
|
| # there is no 'source' for link failures.
|
| # For compile failures, only pass the object files as the compile targets
|
|
|