From c43253de0f53c4bbd3f4b67c6d57c6efc437cd7a Mon Sep 17 00:00:00 2001 From: David Garcia Date: Thu, 4 Mar 2021 13:12:48 +0100 Subject: [PATCH] Fix minor issue in LCMHelmConn scaling_in argument has been added to the delete_execution_environment for the juju connector. This patch adds kwargs to the helm connector. The scaling_in is not currently used by helm. Change-Id: I4723d6f194cdd64a4b3bbef348457fb6c2a1e47c Signed-off-by: David Garcia --- osm_lcm/lcm_helm_conn.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/osm_lcm/lcm_helm_conn.py b/osm_lcm/lcm_helm_conn.py index 978b061..34e4915 100644 --- a/osm_lcm/lcm_helm_conn.py +++ b/osm_lcm/lcm_helm_conn.py @@ -434,7 +434,13 @@ class LCMHelmConn(N2VCConnector, LcmBase): # nothing to be done pass - async def delete_execution_environment(self, ee_id: str, db_dict: dict = None, total_timeout: float = None): + async def delete_execution_environment( + self, + ee_id: str, + db_dict: dict = None, + total_timeout: float = None, + **kwargs, + ): """ Delete an execution environment :param str ee_id: id of the execution environment to delete, included namespace.helm_id -- 2.17.1