Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/robusta/core/playbooks/playbooks_event_handler_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def __run_playbook_actions(
else f"Action Exception {e.type} while processing {action.action_name} {to_safe_str(action_params)}"
)
logging.error(msg)
execution_event.response = self.__error_resp(e.type, e.code, log=False)
execution_event.response = self.__error_resp(msg, e.code, log=False)
playbooks_errors_count.labels(source).inc()
except PrometheusNotFound as e:
logging.error(str(e))
Expand Down
Loading