diff --git a/gso/workflows/tasks/send_email_notifications.py b/gso/workflows/tasks/send_email_notifications.py
index cf87864bb51d724ead84e31663fb754c1a3946b6..6db502a7932c381d273ef8c863a22e71165edd4f 100644
--- a/gso/workflows/tasks/send_email_notifications.py
+++ b/gso/workflows/tasks/send_email_notifications.py
@@ -18,7 +18,7 @@ from gso.settings import load_oss_params
 @step("Gather all tasks that have failed")
 def gather_failed_tasks() -> State:
     """Gather all tasks that have failed."""
-    failed_prefix_list_tasks = get_suspended_tasks_by_workflow_name("validate_prefix_list")
+    failed_prefix_list_tasks = get_suspended_tasks_by_workflow_name("validate_geant_ip_prefix_list")
     all_other_tasks = list(set(get_failed_tasks()) - set(failed_prefix_list_tasks))
 
     return {