@@ -19,7 +19,7 @@ internal static partial class Helper
1919 . AddConcurrencyLimiter ( new ConcurrencyLimiterOptions
2020 {
2121 QueueLimit = 10 ,
22- PermitLimit = 10
22+ PermitLimit = 10 ,
2323 } )
2424 . AddTimeout ( TimeSpan . FromSeconds ( 10 ) )
2525 . AddRetry ( new ( )
@@ -31,8 +31,8 @@ internal static partial class Helper
3131 {
3232 { Exception : InvalidOperationException } => PredicateResult . True ( ) ,
3333 { Result : string result } when result == Failure => PredicateResult . True ( ) ,
34- _ => PredicateResult . False ( )
35- }
34+ _ => PredicateResult . False ( ) ,
35+ } ,
3636 } )
3737 . AddTimeout ( TimeSpan . FromSeconds ( 1 ) )
3838 . AddCircuitBreaker ( new ( )
@@ -45,8 +45,8 @@ internal static partial class Helper
4545 {
4646 { Exception : InvalidOperationException } => PredicateResult . True ( ) ,
4747 { Result : string result } when result == Failure => PredicateResult . True ( ) ,
48- _ => PredicateResult . False ( )
49- }
48+ _ => PredicateResult . False ( ) ,
49+ } ,
5050 } ) ;
5151
5252 if ( telemetry )
@@ -63,7 +63,7 @@ public static ResiliencePipeline CreateNonGenericStrategyPipeline(bool telemetry
6363 . AddConcurrencyLimiter ( new ConcurrencyLimiterOptions
6464 {
6565 QueueLimit = 10 ,
66- PermitLimit = 10
66+ PermitLimit = 10 ,
6767 } )
6868 . AddTimeout ( TimeSpan . FromSeconds ( 10 ) )
6969 . AddRetry ( new ( )
@@ -75,7 +75,7 @@ public static ResiliencePipeline CreateNonGenericStrategyPipeline(bool telemetry
7575 {
7676 { Exception : InvalidOperationException } => PredicateResult . True ( ) ,
7777 { Result : string result } when result == Failure => PredicateResult . True ( ) ,
78- _ => PredicateResult . False ( )
78+ _ => PredicateResult . False ( ) ,
7979 }
8080 } )
8181 . AddTimeout ( TimeSpan . FromSeconds ( 1 ) )
@@ -89,8 +89,8 @@ public static ResiliencePipeline CreateNonGenericStrategyPipeline(bool telemetry
8989 {
9090 { Exception : InvalidOperationException } => PredicateResult . True ( ) ,
9191 { Result : string result } when result == Failure => PredicateResult . True ( ) ,
92- _ => PredicateResult . False ( )
93- }
92+ _ => PredicateResult . False ( ) ,
93+ } ,
9494 } ) ;
9595
9696 if ( telemetry )
0 commit comments