Commit 1792919f authored by Joel Maher's avatar Joel Maher
Browse files

Bug 1623747 - retry task on exit code 137. r=ahal, a=dsmith

parent c3f7a599
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -967,7 +967,8 @@ def set_retry_exit_status(config, tasks):
    """Set the retry exit status to TBPL_RETRY, the value returned by mozharness
    """Set the retry exit status to TBPL_RETRY, the value returned by mozharness
    scripts to indicate a transient failure that should be retried."""
    scripts to indicate a transient failure that should be retried."""
    for task in tasks:
    for task in tasks:
        task["retry-exit-status"] = [4]
        # add in 137 as it is an error with GCP workers
        task["retry-exit-status"] = [4, 137]
        yield task
        yield task