You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
This seems to be the top most occurring bug and relatively simple to handle: Bugzilla is overloaded and it should retry (in this run or just as part of another run).
My understanding is that this is not critical and updatebot will continue to operate as intended for subsequent runs.
Sentry Issue: UPDATEBOT-DEV-19
The text was updated successfully, but these errors were encountered: