Bug 1135756 - Re-enable errors for TC uploads; r=jlund
--- a/mozharness/mozilla/building/buildbase.py
+++ b/mozharness/mozilla/building/buildbase.py
@@ -1487,25 +1487,17 @@ or run without that action (ie: --no-{ac
"log for errors.")
def postflight_build(self, console_output=True):
"""grabs properties from post build and calls ccache -s"""
c = self.config
self.generate_build_props(console_output=console_output,
halt_on_failure=True)
- # 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)
+ self.upload_files()
if c.get('enable_talos_sendchange'):
self._do_sendchange('talos')
if c.get('enable_unittest_sendchange'):
self._do_sendchange('unittest')
if self.config.get('enable_check_test'):