summaryrefslogtreecommitdiff
path: root/src/buildstream/_stream.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/_stream.py')
-rw-r--r--src/buildstream/_stream.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/buildstream/_stream.py b/src/buildstream/_stream.py
index fb0b2f6e1..81c8a88ef 100644
--- a/src/buildstream/_stream.py
+++ b/src/buildstream/_stream.py
@@ -1354,12 +1354,11 @@ class Stream:
# failed task from the tasks group.
#
# Args:
- # action_name (str): The name of the action being performed
- # unique_id (str): A unique_id to load an Element instance
+ # action_name: The name of the action being performed
+ # unique_id: A unique_id to load an Element instance
#
- def _failure_retry(self, action_name, unique_id):
- notification = Notification(NotificationType.RETRY, job_action=action_name, element=unique_id)
- self._notify(notification)
+ def _failure_retry(self, action_name: str, unique_id: str) -> None:
+ self._state.retry_task(action_name, unique_id)
# _run()
#