From bcb352181b09c2dc3b4637417b20709533f088d4 Mon Sep 17 00:00:00 2001 From: Dylan Pulver <35541198+dylanpulver@users.noreply.github.com> Date: Fri, 9 Aug 2024 14:44:15 -0400 Subject: [PATCH] chore/update-network-url (#569) --- safety/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/safety/cli.py b/safety/cli.py index b110398..a8e55ee 100644 --- a/safety/cli.py +++ b/safety/cli.py @@ -63,7 +63,7 @@ def get_network_telemetry(): network_info['packets_recv'] = net_io.packets_recv # Test network speed (download speed) - test_url = "http://example.com" # A URL to test the download speed + test_url = "https://data.safetycli.com/api/v1/safety/announcements/" # Test the download speed start_time = time.perf_counter() try: response = requests.get(test_url, timeout=10)