From 2b4beb22007da6b1e830bf7cadb1bd60818568ac Mon Sep 17 00:00:00 2001 From: Shreya Malviya Date: Fri, 10 Sep 2021 17:36:57 +0530 Subject: [PATCH] island: Don't set deployment type from server config in env config --- monkey/monkey_island/cc/environment/environment_config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/monkey/monkey_island/cc/environment/environment_config.py b/monkey/monkey_island/cc/environment/environment_config.py index 29bda44d8..bd1429938 100644 --- a/monkey/monkey_island/cc/environment/environment_config.py +++ b/monkey/monkey_island/cc/environment/environment_config.py @@ -46,7 +46,6 @@ class EnvironmentConfig: aws = dict_data["aws"] if "aws" in dict_data else None self.server_config = dict_data["server_config"] - self.deployment = dict_data["deployment"] self.user_creds = _get_user_credentials_from_config(dict_data) self.aws = aws