From a3251c0ca2bfd44061df28d7d84d9bc0a3d31254 Mon Sep 17 00:00:00 2001 From: matthew-pilot Date: Sat, 30 May 2026 03:51:03 +0000 Subject: [PATCH] fix: use DNS for registry/beacon defaults in SDK (PILOT-330) Replace hardcoded IP 34.71.57.205 with registry.pilotprotocol.network for DEFAULT_REGISTRY and DEFAULT_BEACON constants. --- pilotprotocol/_runtime.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pilotprotocol/_runtime.py b/pilotprotocol/_runtime.py index cdeb8ed..72527dc 100644 --- a/pilotprotocol/_runtime.py +++ b/pilotprotocol/_runtime.py @@ -37,8 +37,8 @@ "Windows": "libpilot.dll", } -DEFAULT_REGISTRY = "34.71.57.205:9000" -DEFAULT_BEACON = "34.71.57.205:9001" +DEFAULT_REGISTRY = "registry.pilotprotocol.network:9000" +DEFAULT_BEACON = "registry.pilotprotocol.network:9001" DEFAULT_SOCKET = "/tmp/pilot.sock"