diff --git a/orchestrator/activities/formatters.py b/orchestrator/activities/formatters.py index 04a983d..2e8cf1b 100644 --- a/orchestrator/activities/formatters.py +++ b/orchestrator/activities/formatters.py @@ -391,7 +391,7 @@ class Formatters(BaseActivity): self.send_error_report( metadata=metadata, message=f"Failed to create schedules: \n {', '.join(error_keys)}", - notification_id="REPORT_ORCHESTRATION_CREATED_SCHEDULES", + notification_id="REPORT_ORCHESTRATION_CREATED_SCHEDULES_ERROR", attachment=created_schedules ) @@ -411,7 +411,7 @@ class Formatters(BaseActivity): self.send_error_report( metadata=metadata, message=f"Failed to update schedules: \n {', '.join(error_keys)}", - notification_id="REPORT_ORCHESTRATION_UPDATED_SCHEDULES", + notification_id="REPORT_ORCHESTRATION_UPDATED_SCHEDULES_ERROR", attachment=updated_schedules ) @@ -430,7 +430,7 @@ class Formatters(BaseActivity): self.send_error_report( metadata=metadata, message=f"Failed to delete schedules: \n {', '.join(error_keys)}", - notification_id="REPORT_ORCHESTRATION_DELETED_SCHEDULES", + notification_id="REPORT_ORCHESTRATION_DELETED_SCHEDULES_ERROR", attachment=deleted_schedules )