From 9e2663905031df4b79b87210b843e2999b4549ff Mon Sep 17 00:00:00 2001 From: jmoreira-valory Date: Sat, 14 Dec 2024 03:03:09 +0100 Subject: [PATCH] hotfix: disable update env variables and description --- operate/services/service.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/operate/services/service.py b/operate/services/service.py index ac0c11bc..bbd299a8 100644 --- a/operate/services/service.py +++ b/operate/services/service.py @@ -941,15 +941,16 @@ def update( self.service_path = service_path self.name = service_template["name"] self.hash = service_template["hash"] - self.description = service_template["description"] - self.env_variables = service_template["env_variables"] + + # TODO temporarily disable update on description and env variables - hotfix for Memeooorr + # self.description = service_template["description"] + # self.env_variables = service_template["env_variables"] # Only update hash_history if latest inserted hash is different if self.hash_history[max(self.hash_history.keys())] != service_template["hash"]: current_timestamp = int(time.time()) self.hash_history[current_timestamp] = service_template["hash"] - self.description = service_template["description"] self.home_chain = service_template["home_chain"] ledger_configs = ServiceHelper(path=self.service_path).ledger_configs()