From 39946cf98f731988f38b3d403471dc21478809bb Mon Sep 17 00:00:00 2001 From: Hamza Ait Aissa Date: Tue, 9 Sep 2025 23:21:41 +0100 Subject: [PATCH] Fix sequence of Bulkhead in HttpStandardResilienceOptions --- .../HttpStandardResilienceOptions.xml | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml index 7630d28002a..9bcbcddc6d6 100644 --- a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml +++ b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml @@ -44,8 +44,25 @@ Bulkhead -> Total Request Timeout -> Retry -> Circuit Breaker -> Attempt Timeout. The configuration of each pipeline is initialized with the default options per type. The request goes through these strategies: - Total request timeout pipeline applies an overall timeout to the execution, - ensuring that the request including hedging attempts, does not exceed the configured limit.The retry pipeline retries the request in case the dependency is slow or returns a transient error.The bulkhead pipeline limits the maximum number of concurrent requests being send to the dependency.The circuit breaker blocks the execution if too many direct failures or timeouts are detected.The attempt timeout pipeline limits each request attempt duration and throws if its exceeded. + + + The bulkhead pipeline limits the maximum number of concurrent requests being send to the dependency. + + + Total request timeout pipeline applies an overall timeout to the execution, + ensuring that the request including hedging attempts, does not exceed the configured limit. + + + The retry pipeline retries the request in case the dependency is slow or returns a transient error. + + + The circuit breaker blocks the execution if too many direct failures or timeouts are detected. + + + The attempt timeout pipeline limits each request attempt duration and throws if its exceeded. + + +