From 73329e9729ddc309c1c9a954f3546652e97b2fde Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Tue, 23 Nov 2021 13:28:01 -0500 Subject: [PATCH] Agent: Remove input() call in monkey.py The call to input() was used to pause the execution of the agent while testing the new signal handlers. It is no longer needed. --- monkey/infection_monkey/monkey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/infection_monkey/monkey.py b/monkey/infection_monkey/monkey.py index 2fde8cf43..09eef703d 100644 --- a/monkey/infection_monkey/monkey.py +++ b/monkey/infection_monkey/monkey.py @@ -115,7 +115,7 @@ class InfectionMonkey(object): logger.debug("Starting the setup phase.") mock_master = MockMaster(MockPuppet(), LegacyTelemetryMessengerAdapter()) register_signal_handlers(mock_master) - input() + # Sets island's IP and port for monkey to communicate to self.set_default_server() self.set_default_port()