Agent: Fix URL in HTTPIslandAPIClient.get_agent_binary()

This commit is contained in:
Shreya Malviya 2022-09-20 17:27:47 +05:30
parent 2cebc19843
commit 30cf360e98
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class HTTPIslandAPIClient(IIslandAPIClient):
@handle_island_errors
def get_agent_binary(self, os_name: str):
response = requests.get( # noqa: DUO123
f"{self._api_url}/api/agent-binaries/{os_name}",
f"{self._api_url}/agent-binaries/{os_name}",
verify=False,
timeout=MEDIUM_REQUEST_TIMEOUT,
)