Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion drms/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def status(self):
- 3 = Request too large for automatic requests.
- 4 = Request not formed correctly, bad series, etc.
- 5 = Request old, results requested after data timed out.
- 1 = The backend process was terminated (typically when the user cancels the export request).
- -1 = The backend process was terminated (typically when the user cancels the export request).

Reference
---------
Expand Down Expand Up @@ -476,6 +476,7 @@ def wait(self, *, timeout=None, sleep=5, retries_notfound=5):

if self.has_finished():
self._raise_on_error()
logger.info(f"Export request finished. [id={idstr}, status={self._status}]")
return True
if self._status == self._status_code_notfound:
# Raise exception, if no retries are left.
Expand Down
Loading