From 9969a6f08bfa6e3dcab14f575f09c991d85ca696 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 2 Jan 2026 17:31:00 +0100 Subject: [PATCH] Fix ssl error --- api-customer/src/controllers/message_controller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api-customer/src/controllers/message_controller.py b/api-customer/src/controllers/message_controller.py index 7a509ad3..12d2ecfe 100644 --- a/api-customer/src/controllers/message_controller.py +++ b/api-customer/src/controllers/message_controller.py @@ -15,6 +15,7 @@ class MessageController: def __init__(self, app, auth_data : AuthData, host : str): self._register_routes(app) self.config = Configuration(host=host) + self.config.verify_ssl=False self._auth_data = auth_data def _register_routes(self, app):