Skip to content
Snippets Groups Projects
Commit e9d3aed8 authored by leufen1's avatar leufen1
Browse files

raise error now properly

parent 62af3eee
No related branches found
No related tags found
3 merge requests!522filter can now combine obs, forecast, and apriori for first iteration. Further...,!521Resolve "release v2.4.0",!516Resolve "advanced retry strategy"
Pipeline #142646 passed
......@@ -98,6 +98,7 @@ def get_data(opts: Dict, headers: Dict, as_json: bool = True, max_retries=5, tim
:return: requested data (either as list or dictionary)
"""
url = create_url(**opts)
response_error = None
for retry in range(max_retries + 1):
time.sleep(random.random())
try:
......@@ -110,11 +111,13 @@ def get_data(opts: Dict, headers: Dict, as_json: bool = True, max_retries=5, tim
return response.json() if as_json is True else response.text
else:
logging.debug(f"There was an error (STATUS {response.status_code}) for request {url}")
response_error = f"STATUS {response.status_code}"
except Exception as e:
time.sleep(retry)
logging.debug(f"There was an error for request {url}: {e}")
response_error = e
if retry + 1 >= max_retries:
raise EmptyQueryResult(f"There was an RetryError for request {url}: {e}")
raise EmptyQueryResult(f"There was an RetryError for request {url}: {response_error}")
def correct_stat_name(stat: str) -> str:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment