From 05a6ed6127a9cd8608829755f03bc61ed76e8eb0 Mon Sep 17 00:00:00 2001 From: Francisco Aranda Date: Thu, 1 Sep 2022 12:05:05 +0200 Subject: [PATCH] fix: disable ssl verify for telemetry backend check --- src/rubrix/server/commons/telemetry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rubrix/server/commons/telemetry.py b/src/rubrix/server/commons/telemetry.py index 6f726a7428..062b628739 100644 --- a/src/rubrix/server/commons/telemetry.py +++ b/src/rubrix/server/commons/telemetry.py @@ -24,7 +24,7 @@ def _configure_analytics(disable_send: bool = False) -> Client: TELEMETRY_HOST = "https://api.segment.io" # Check host connection - httpx.options(TELEMETRY_HOST, timeout=1) + httpx.options(TELEMETRY_HOST, timeout=1, verify=False) return Client( write_key=API_KEY,