forked from p15670423/monkey
Agent: Fix type hint in HTTPIslandAPIClient.send_log()
This commit is contained in:
parent
29c08ff40c
commit
8dc8a516d5
|
@ -16,7 +16,7 @@ from common.common_consts.timeouts import (
|
||||||
SHORT_REQUEST_TIMEOUT,
|
SHORT_REQUEST_TIMEOUT,
|
||||||
)
|
)
|
||||||
from common.credentials import Credentials
|
from common.credentials import Credentials
|
||||||
from common.types import SocketAddress
|
from common.types import AgentID, SocketAddress
|
||||||
|
|
||||||
from . import (
|
from . import (
|
||||||
AbstractIslandAPIClientFactory,
|
AbstractIslandAPIClientFactory,
|
||||||
|
@ -92,7 +92,7 @@ class HTTPIslandAPIClient(IIslandAPIClient):
|
||||||
self._api_url = f"https://{island_server}/api"
|
self._api_url = f"https://{island_server}/api"
|
||||||
|
|
||||||
@handle_island_errors
|
@handle_island_errors
|
||||||
def send_log(self, agent_id: int, log_contents: str):
|
def send_log(self, agent_id: AgentID, log_contents: str):
|
||||||
response = requests.post( # noqa: DUO123
|
response = requests.post( # noqa: DUO123
|
||||||
f"{self._api_url}/agent-logs/{agent_id}",
|
f"{self._api_url}/agent-logs/{agent_id}",
|
||||||
json=log_contents,
|
json=log_contents,
|
||||||
|
|
Loading…
Reference in New Issue