-
Notifications
You must be signed in to change notification settings - Fork 238
Description
JSONDecodeError Traceback (most recent call last)
Cell In[7], line 8
5 report_id = fab_get_id(report_eventstream)
7 heartbeat_conn_id = json.loads(run_fab_command(f"api workspaces/{workspace_id}/eventstreams/{heartbeat_id}/topology" , capture_output = True, silently_continue= True)).get("text",{}).get("sources",[])[0].get('id')
----> 8 report_conn_id = json.loads(run_fab_command(f"api workspaces/{workspace_id}/eventstreams/{report_id}/topology" , capture_output = True, silently_continue= True)).get("text",{}).get("sources",[])[0].get('id')
10 heartbeat_connection = json.loads(run_fab_command(f"api workspaces/{workspace_id}/eventstreams/{heartbeat_id}/sources/{heartbeat_conn_id}/connection" , capture_output = True, silently_continue= True)).get("text",{}).get('accessKeys',{}).get('primaryConnectionString')
11 report_connection = json.loads(run_fab_command(f"api workspaces/{workspace_id}/eventstreams/{report_id}/sources/{report_conn_id}/connection" , capture_output = True, silently_continue= True)).get("text",{}).get('accessKeys',{}).get('primaryConnectionString')
File ~/jupyter-env/python3.11/lib/python3.11/json/init.py:346, in loads(s, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw)
341 s = s.decode(detect_encoding(s), 'surrogatepass')
343 if (cls is None and object_hook is None and
344 parse_int is None and parse_float is None and
345 parse_constant is None and object_pairs_hook is None and not kw):
--> 346 return _default_decoder.decode(s)
347 if cls is None:
348 cls = JSONDecoder
File ~/jupyter-env/python3.11/lib/python3.11/json/decoder.py:337, in JSONDecoder.decode(self, s, _w)
332 def decode(self, s, _w=WHITESPACE.match):
333 """Return the Python representation of s (a str instance
334 containing a JSON document).
335
336 """
--> 337 obj, end = self.raw_decode(s, idx=_w(s, 0).end())
338 end = _w(s, end).end()
339 if end != len(s):
File ~/jupyter-env/python3.11/lib/python3.11/json/decoder.py:355, in JSONDecoder.raw_decode(self, s, idx)
353 obj, end = self.scan_once(s, idx)
354 except StopIteration as err:
--> 355 raise JSONDecodeError("Expecting value", s, err.value) from None
356 return obj, end
JSONDecodeError: Expecting value: line 1 column 1 (char 0)