How to make fallback for circuit breaker invoked on all retries on the broken circuit
问题 I have the following policies: var sharedBulkhead = Policy.BulkheadAsync( maxParallelization: maxParallelizations, maxQueuingActions: maxQueuingActions, onBulkheadRejectedAsync: (context) => { Log.Info($"Bulk head rejected => Policy Wrap: {context.PolicyWrapKey}, Policy: {context.PolicyKey}, Endpoint: {context.OperationKey}"); return TaskHelper.EmptyTask; } ); var retryPolicy = Policy.Handle<HttpRequestException>() .Or<BrokenCircuitException>().WaitAndRetryAsync( retryCount: maxRetryCount,