From 03d3a22b42cde9993aeb76bfeb0e6c67536b75e2 Mon Sep 17 00:00:00 2001 From: Shreya Malviya Date: Tue, 16 Nov 2021 11:58:32 +0530 Subject: [PATCH] Island: Remove max iters and timeout between iters config option --- .../cc/services/config_schema/monkey.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/monkey/monkey_island/cc/services/config_schema/monkey.py b/monkey/monkey_island/cc/services/config_schema/monkey.py index 97fdbd19b..615212981 100644 --- a/monkey/monkey_island/cc/services/config_schema/monkey.py +++ b/monkey/monkey_island/cc/services/config_schema/monkey.py @@ -97,23 +97,6 @@ MONKEY = { "title": "Persistent scanning", "type": "object", "properties": { - "max_iterations": { - "title": "Max iterations", - "type": "integer", - "default": 1, - "minimum": 1, - "description": "Determines how many iterations of the monkey's full lifecycle " - "should occur " - "(how many times to do the scan)", - }, - "timeout_between_iterations": { - "title": "Wait time between iterations", - "type": "integer", - "default": 100, - "minimum": 0, - "description": "Determines for how long (in seconds) should the monkey wait " - "before starting another scan", - }, "retry_failed_explotation": { "title": "Retry failed exploitation", "type": "boolean",