diff --git a/lib/lfs_oid.py b/lib/lfs_oid.py index 6a3bc64..6f116c7 100644 --- a/lib/lfs_oid.py +++ b/lib/lfs_oid.py @@ -83,7 +83,7 @@ class LFSOid: self.register() def check(self): - url = f"http://src.opensuse.org:9999/check/{self.sha256}/{self.size}" + url = f"http://localhost:9999/check/{self.sha256}/{self.size}" response = requests.get( url, timeout=10, @@ -127,7 +127,7 @@ class LFSOid: "size": self.size, } - url = "http://src.opensuse.org:9999/register" + url = "http://localhost:9999/register" response = requests.post( url, json=data,