From de2515a2f482e1d49d43be4e96933e3bbbf6de6d Mon Sep 17 00:00:00 2001 From: Shreya Malviya Date: Thu, 18 Nov 2021 12:14:14 +0530 Subject: [PATCH] Island: Remove persistent scanning section from config since none of its fields are needed now --- .../cc/services/config_schema/monkey.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/monkey/monkey_island/cc/services/config_schema/monkey.py b/monkey/monkey_island/cc/services/config_schema/monkey.py index 615212981..480aa0852 100644 --- a/monkey/monkey_island/cc/services/config_schema/monkey.py +++ b/monkey/monkey_island/cc/services/config_schema/monkey.py @@ -93,18 +93,5 @@ MONKEY = { }, }, }, - "persistent_scanning": { - "title": "Persistent scanning", - "type": "object", - "properties": { - "retry_failed_explotation": { - "title": "Retry failed exploitation", - "type": "boolean", - "default": True, - "description": "Determines whether the monkey should retry exploiting machines" - " it didn't successfully exploit on previous scans", - }, - }, - }, }, }