Skip to content

Commit a2d0b36

Browse files
committed
fix: update storage URL to use STORAGE_API_URL for docker info sync
1 parent b2eb1d0 commit a2d0b36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/miner/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def verify_and_sync_docker_info(self, username: str):
266266
headers = self._get_miner_auth_headers(payload)
267267

268268
try:
269-
storage_url = str(self.config.STORAGE_URL).rstrip("/")
269+
storage_url = str(self.config.STORAGE_API_URL).rstrip("/")
270270
url = f"{storage_url}/miner/docker-info"
271271
response = requests.post(url, json=payload, headers=headers, timeout=10)
272272
response.raise_for_status()

0 commit comments

Comments
 (0)