Skip to content

Commit

Permalink
fix: disable ssl verify for telemetry backend check
Browse files Browse the repository at this point in the history
  • Loading branch information
frascuchon committed Sep 1, 2022
1 parent 830d0ee commit 05a6ed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rubrix/server/commons/telemetry.py
Expand Up @@ -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,
Expand Down

0 comments on commit 05a6ed6

Please sign in to comment.