Remove key from dummy_clean_items arguments 41/14841/1
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Fri, 13 Dec 2024 10:09:04 +0000 (11:09 +0100)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Fri, 13 Dec 2024 10:09:04 +0000 (11:09 +0100)
Change-Id: I854868dbdcb0de552b6a7b161a57a5c638648285
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
osm_lcm/odu_workflows.py

index 49821cc..7ac431f 100644 (file)
@@ -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):