File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ def fetch_playbook_execution_tasks():
2828 f'Cloud: { response .json ()} ' )
2929 return False
3030 playbook_task_executions = response .json ().get ('playbook_task_executions' , [])
31- logger .info (f'fetch_playbook_execution_tasks:: Found { len (playbook_task_executions )} playbook task executions' )
3231 for pet in playbook_task_executions :
3332 try :
3433 request_id = pet .get ('proxy_execution_request_id' , None )
@@ -70,7 +69,7 @@ def execute_task_and_send_result(playbook_task_execution_log):
7069 current_log_copy ['result' ] = result_dict
7170 processed_logs .append (current_log_copy )
7271 except Exception as e :
73- logger .error (f'execute_task_and_send_result:: Error while executing task : { str (e )} ' )
72+ logger .error (f'execute_task_and_send_result:: Error while executing tasks : { str (e )} ' )
7473 current_log_copy = copy .deepcopy (playbook_task_execution_log )
7574 error_result = PlaybookTaskResult (error = StringValue (value = str (e )))
7675 current_log_copy ['result' ] = proto_to_dict (error_result )
You can’t perform that action at this time.
0 commit comments