Open
Description
Sentry Issue: UPDATEBOT-DEV-19
JSONDecodeError: Expecting value: line 2 column 1 (char 1)
File "apis/bugzilla_api.py", line 155, in findOpenBugs
j = json.loads(r.text)
File "__init__.py", line 346, in loads
return _default_decoder.decode(s)
File "json/decoder.py", line 337, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "json/decoder.py", line 355, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
Exception: Could not decode a bugzilla response as JSON:
<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>502 Server Error</title>
</head>
<body text=#000000 bgcolor=#ffffff>
<h1>Error: Server Error</h1>
<h2>The server encountered a temporary error and could not complete your request.<p>Please try again in 30 seconds.</h2>
<h2></h2>
</body></html>
File "automation.py", line 233, in run
taskRunner.process_task(lib, task)
File "/builds/worker/updatebot/tasktypes/vendoring.py", line 35, in process_task
open_bugs = self.bugzillaProvider.find_open_bugs([j.bugzilla_id for j in all_jobs])
File "components/logging.py", line 38, in func_wrapper
ret = func(*args, **kwargs)
File "components/bugzilla.py", line 247, in find_open_bugs
return findOpenBugs(self.config['url'], filtered_ids)
File "apis/bugzilla_api.py", line 157, in findOpenBugs
raise Exception("Could not decode a bugzilla response as JSON: " + r.text) from e