Closed abhayayay closed 2 months ago
With the code currently implemented. The line in analytics.py: def status(self) -> AnalyticsStatus: return AnalyticsStatus[self._raw.get("status", "unknown").upper()] will always return AnalyticsStatus.RUNNING
def status(self) -> AnalyticsStatus: return AnalyticsStatus[self._raw.get("status", "unknown").upper()]
This change fix this issue.
Fixed with PYCBC-1596.
With the code currently implemented. The line in analytics.py:
def status(self) -> AnalyticsStatus: return AnalyticsStatus[self._raw.get("status", "unknown").upper()]
will always return AnalyticsStatus.RUNNINGThis change fix this issue.