From bf4fecf4641f35f0faef0a9d986c64c14a2367cb Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Mon, 3 Oct 2022 16:46:17 +0200 Subject: [PATCH] Agent: Rename event_queue to agent_event_queue in HostExploiter --- monkey/infection_monkey/exploit/HostExploiter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/monkey/infection_monkey/exploit/HostExploiter.py b/monkey/infection_monkey/exploit/HostExploiter.py index c9b312fb9..ee121e54b 100644 --- a/monkey/infection_monkey/exploit/HostExploiter.py +++ b/monkey/infection_monkey/exploit/HostExploiter.py @@ -33,7 +33,7 @@ class HostExploiter: self.exploit_attempts = [] self.host = None self.telemetry_messenger = None - self.event_queue = None + self.agent_event_queue = None self.options = {} self.exploit_result = {} self.servers = [] @@ -62,7 +62,7 @@ class HostExploiter: servers: Sequence[str], current_depth: int, telemetry_messenger: ITelemetryMessenger, - event_queue: IAgentEventQueue, + agent_event_queue: IAgentEventQueue, agent_binary_repository: IAgentBinaryRepository, options: Dict, interrupt: threading.Event, @@ -71,7 +71,7 @@ class HostExploiter: self.servers = servers self.current_depth = current_depth self.telemetry_messenger = telemetry_messenger - self.event_queue = event_queue + self.agent_event_queue = agent_event_queue self.agent_binary_repository = agent_binary_repository self.options = options self.interrupt = interrupt