Skip to content
Snippets Groups Projects
Verified Commit 009c1c3c authored by Yoann Schneider's avatar Yoann Schneider :tennis:
Browse files

remove raise to make it robust again

parent 4fc32765
No related branches found
No related tags found
1 merge request!59Robust mlflow requests
This commit is part of merge request !59. Comments created here will be created in the context of that merge request.
......@@ -17,7 +17,6 @@ def make_mlflow_request(mlflow_method, *args, **kwargs):
mlflow_method(*args, **kwargs)
except requests.exceptions.ConnectionError as e:
logger.error(f"Call to `{str(mlflow_method)}` failed with error: {str(e)}")
raise e
def setup_environment(config: dict):
......
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