From 009c1c3c8bdae30c3173ccfbabac9a6e212f9c8e Mon Sep 17 00:00:00 2001
From: Yoann Schneider <yschneider@teklia.com>
Date: Wed, 15 Feb 2023 16:43:14 +0100
Subject: [PATCH] remove raise to make it robust again

---
 dan/mlflow.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dan/mlflow.py b/dan/mlflow.py
index 180406f3..06b36fc8 100644
--- a/dan/mlflow.py
+++ b/dan/mlflow.py
@@ -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):
-- 
GitLab