Skip to content

Commit 9483bf0

Browse files
Renamed _check_ipfs_endpoints
1 parent cddf02a commit 9483bf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/startup_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ async def startup_checks() -> None:
229229
await check_hot_wallet_balance()
230230

231231
logger.info('Checking connection to ipfs nodes...')
232-
healthy_ipfs_endpoints = await _check_healthy_ipfs_endpoints()
232+
healthy_ipfs_endpoints = await _check_ipfs_endpoints()
233233

234234
logger.info('Connected to ipfs nodes at %s.', ', '.join(healthy_ipfs_endpoints))
235235

@@ -312,7 +312,7 @@ async def _aiohttp_fetch(session: ClientSession, url: str) -> str:
312312
return url
313313

314314

315-
async def _check_healthy_ipfs_endpoints() -> list[str]:
315+
async def _check_ipfs_endpoints() -> list[str]:
316316
healthy_ipfs_endpoints = []
317317

318318
for endpoint in settings.ipfs_fetch_endpoints:

0 commit comments

Comments
 (0)