Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
machine-learning
MLAir
Commits
e9d3aed8
Commit
e9d3aed8
authored
1 year ago
by
leufen1
Browse files
Options
Downloads
Patches
Plain Diff
raise error now properly
parent
62af3eee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!522
filter can now combine obs, forecast, and apriori for first iteration. Further...
,
!521
Resolve "release v2.4.0"
,
!516
Resolve "advanced retry strategy"
Pipeline
#142646
passed
1 year ago
Stage: test
Stage: docs
Stage: pages
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mlair/helpers/data_sources/data_loader.py
+4
-1
4 additions, 1 deletion
mlair/helpers/data_sources/data_loader.py
with
4 additions
and
1 deletion
mlair/helpers/data_sources/data_loader.py
+
4
−
1
View file @
e9d3aed8
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment