diff --git a/testing/mozharness/mozharness/base/script.py b/testing/mozharness/mozharness/base/script.py index 4fd78e1cfbb0..e11febcd3260 100755 --- a/testing/mozharness/mozharness/base/script.py +++ b/testing/mozharness/mozharness/base/script.py @@ -394,11 +394,6 @@ class ScriptMixin(PlatformMixin): if parsed_url.scheme in ('http', 'https'): expected_file_size = int(response.headers.get('Content-Length')) - self.info('Http code: {}'.format(response.getcode())) - for k in sorted(response.headers.keys()): - if k.lower().startswith('x-amz-') or k in ('Content-Encoding', 'Content-Type', 'via'): - self.info('{}: {}'.format(k, response.headers.get(k))) - file_contents = response.read() obtained_file_size = len(file_contents) self.info('Expected file size: {}'.format(expected_file_size)) @@ -688,9 +683,8 @@ class ScriptMixin(PlatformMixin): try: function(**kwargs) except zipfile.BadZipfile: - # Bug 1306189 - Sometimes a good download turns out to be a - # corrupted zipfile. Let's create a signature that is easy to match - self.fatal('Check bug 1306189 for details on downloading a truncated zip file.') + # Dump the exception and exit + self.exception(level=FATAL) def load_json_url(self, url, error_level=None, *args, **kwargs):