You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Use this tool to retry all unresolved failed messages from a specific queue. "+
66
67
"This operation changes system state. "+
68
+
"It may affect many messages. "+
67
69
"Good for questions like: 'retry all failures in the Sales queue', 'reprocess everything from this queue', or 'the queue consumer is back, retry its failures'. "+
68
70
"Useful when a queue's consumer was down or misconfigured and is now fixed. Only retries messages with unresolved status."
"Use this tool to retry every unresolved failed message across all queues and endpoints. "+
85
87
"This operation changes system state. "+
88
+
"It may affect many messages. "+
86
89
"Good for questions like: 'retry everything', 'reprocess all failures', or 'retry all failed messages'. "+
87
90
"It affects all unresolved failed messages across the instance. "+
88
91
"This is a broad operation — prefer RetryFailedMessagesByQueue, RetryAllFailedMessagesByEndpoint, or RetryFailureGroup when you can scope the retry more narrowly."
@@ -98,6 +101,7 @@ public async Task<string> RetryAllFailedMessages()
"Use this tool to retry all failed messages for a specific NServiceBus endpoint. "+
100
103
"This operation changes system state. "+
104
+
"It may affect many messages. "+
101
105
"Good for questions like: 'retry all failures in the Sales endpoint', 'the bug in Shipping is fixed, retry its failures', or 'reprocess all errors for this endpoint'. "+
102
106
"Useful when a bug in one endpoint has been fixed and all its failures should be reprocessed."
103
107
)]
@@ -113,9 +117,10 @@ public async Task<string> RetryAllFailedMessagesByEndpoint(
"Use this tool to retry all failed messages that share the same exception type and stack trace. "+
115
119
"This operation changes system state. "+
120
+
"It may affect many messages. "+
116
121
"Good for questions like: 'retry this failure group', 'the bug causing these NullReferenceExceptions is fixed, retry them', or 'retry all messages in this group'. "+
117
122
"This is the most targeted way to retry related failures after fixing a specific bug. "+
118
-
"You need a group ID, which you can get from GetFailureGroups. "+
123
+
"You need a failure group ID, which you can get from GetFailureGroups. "+
119
124
"Returns InProgress if a retry is already running for this group."
0 commit comments