Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 1135681 - Update Taskcluster to 0.0.9; r=jlund
Browse files Browse the repository at this point in the history
  • Loading branch information
mshal committed Feb 24, 2015
1 parent 37e35c2 commit a72fe89
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion mozharness/mozilla/building/buildbase.py
Expand Up @@ -1444,7 +1444,15 @@ def postflight_build(self, console_output=True):
self.generate_build_props(console_output=console_output,
halt_on_failure=True)

self.upload_files()
# TODO: Bug 1135756
# We ignore all exceptions from upload_files while the TC queue re-write
# is ongoing, but we need to remove that before switching testers to
# pull from S3.
try:
self.upload_files()
except:
self.warning('Temporarily ignoring S3 upload exception:')
self.exception(level=WARNING)

if c.get('enable_talos_sendchange'):
self._do_sendchange('talos')
Expand Down
2 changes: 1 addition & 1 deletion scripts/fx_desktop_build.py
Expand Up @@ -79,7 +79,7 @@ def __init__(self):
'virtualenv_modules': [
'requests==2.2.1',
'PyHawk-with-a-single-extra-commit==0.1.5',
'taskcluster==0.0.7',
'taskcluster==0.0.9',
],
'virtualenv_path': 'venv',
#
Expand Down

0 comments on commit a72fe89

Please sign in to comment.