Agent: Remove disused send_log() from ControlClient

This commit is contained in:
Mike Salvatore 2022-09-28 15:15:32 -04:00
parent fab67d893f
commit 87d25d2ac8
1 changed files with 0 additions and 9 deletions

View File

@ -13,7 +13,6 @@ from infection_monkey.config import GUID
from infection_monkey.island_api_client import IIslandAPIClient
from infection_monkey.network.info import get_host_subnets
from infection_monkey.utils import agent_process
from infection_monkey.utils.ids import get_agent_id
disable_warnings() # noqa DUO131
@ -69,14 +68,6 @@ class ControlClient:
except Exception as exc:
logger.warning(f"Error connecting to control server {self.server_address}: {exc}")
def send_log(self, log):
try:
monkey_guid = get_agent_id()
log_contents = json.dumps(log)
self._island_api_client.send_log(monkey_guid, log_contents)
except Exception as exc:
logger.warning(f"Error connecting to control server {self.server_address}: {exc}")
def get_pba_file(self, filename):
try:
return self._island_api_client.get_pba_file(filename)