forked from p15670423/monkey
Agent: Fix URL in HTTPIslandAPIClient.get_agent_binary()
This commit is contained in:
parent
2cebc19843
commit
30cf360e98
|
@ -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,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue