Agent: Remove unnecessary logic in _check_if_island_server()

This commit is contained in:
Shreya Malviya 2022-09-19 17:26:00 +05:30 committed by Ilija Lazoroski
parent 69b26287b6
commit 9456a30bd9
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def _check_if_island_server(server: str) -> bool:
logger.debug(f"Trying to connect to server: {server}")
try:
_ = IslandAPIClient(server)
IslandAPIClient(server)
return True
except IslandAPIConnectionError as err: