From: garciadeblas Date: Fri, 13 Dec 2024 10:09:04 +0000 (+0100) Subject: Remove key from dummy_clean_items arguments X-Git-Tag: v17.0.0~8 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F41%2F14841%2F1;p=osm%2FLCM.git Remove key from dummy_clean_items arguments Change-Id: I854868dbdcb0de552b6a7b161a57a5c638648285 Signed-off-by: garciadeblas --- diff --git a/osm_lcm/odu_workflows.py b/osm_lcm/odu_workflows.py index 49821cc2..7ac431f9 100644 --- a/osm_lcm/odu_workflows.py +++ b/osm_lcm/odu_workflows.py @@ -184,10 +184,11 @@ class OduWorkflow(LcmBase): self.logger.info("workflow function : {}".format(workflow_function)) return await workflow_function(op_id, op_params, content) - async def dummy_clean_items(self, key, op_id, op_params, content): + async def dummy_clean_items(self, op_id, op_params, content): self.logger.info( - f"Dummy clean items. Key: {key}. Operation: {op_id}. Params: {op_params}. Content: {content}" + f"dummy_clean_items Enter. Operation {op_id}. Params: {op_params}" ) + self.logger.debug(f"Content: {content}") return True, "OK" async def clean_items_workflow(self, key, op_id, op_params, content):