@@ -52,7 +52,7 @@ public void should_follow_ordering_add_specifics()
52
52
53
53
var route = new DownstreamRouteBuilder ( )
54
54
. WithQosOptions ( qosOptions )
55
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue ) )
55
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue , false ) )
56
56
. WithDelegatingHandlers ( new List < string >
57
57
{
58
58
"FakeDelegatingHandler" ,
@@ -88,7 +88,7 @@ public void should_follow_ordering_order_specifics_and_globals()
88
88
89
89
var route = new DownstreamRouteBuilder ( )
90
90
. WithQosOptions ( qosOptions )
91
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue ) )
91
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue , false ) )
92
92
. WithDelegatingHandlers ( new List < string >
93
93
{
94
94
"FakeDelegatingHandlerTwo" ,
@@ -125,7 +125,7 @@ public void should_follow_ordering_order_specifics()
125
125
126
126
var route = new DownstreamRouteBuilder ( )
127
127
. WithQosOptions ( qosOptions )
128
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue ) )
128
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue , false ) )
129
129
. WithDelegatingHandlers ( new List < string >
130
130
{
131
131
"FakeDelegatingHandlerTwo" ,
@@ -161,7 +161,7 @@ public void should_follow_ordering_order_and_only_add_specifics_in_config()
161
161
162
162
var route = new DownstreamRouteBuilder ( )
163
163
. WithQosOptions ( qosOptions )
164
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue ) )
164
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue , false ) )
165
165
. WithDelegatingHandlers ( new List < string >
166
166
{
167
167
"FakeDelegatingHandler" ,
@@ -195,7 +195,7 @@ public void should_follow_ordering_dont_add_specifics()
195
195
196
196
var route = new DownstreamRouteBuilder ( )
197
197
. WithQosOptions ( qosOptions )
198
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue ) )
198
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue , false ) )
199
199
. WithLoadBalancerKey ( "" )
200
200
. Build ( ) ;
201
201
@@ -221,7 +221,7 @@ public void should_apply_re_route_specific()
221
221
222
222
var route = new DownstreamRouteBuilder ( )
223
223
. WithQosOptions ( qosOptions )
224
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue ) )
224
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue , false ) )
225
225
. WithDelegatingHandlers ( new List < string >
226
226
{
227
227
"FakeDelegatingHandler" ,
@@ -249,7 +249,7 @@ public void should_all_from_all_routes_provider_and_qos()
249
249
250
250
var route = new DownstreamRouteBuilder ( )
251
251
. WithQosOptions ( qosOptions )
252
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue ) ) . WithLoadBalancerKey ( "" ) . Build ( ) ;
252
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue , false ) ) . WithLoadBalancerKey ( "" ) . Build ( ) ;
253
253
254
254
this . Given ( x => GivenTheFollowingRequest ( route ) )
255
255
. And ( x => GivenTheQosFactoryReturns ( new FakeQoSHandler ( ) ) )
@@ -269,7 +269,7 @@ public void should_return_provider_with_no_delegates()
269
269
270
270
var route = new DownstreamRouteBuilder ( )
271
271
. WithQosOptions ( qosOptions )
272
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue ) ) . WithLoadBalancerKey ( "" ) . Build ( ) ;
272
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue , false ) ) . WithLoadBalancerKey ( "" ) . Build ( ) ;
273
273
274
274
this . Given ( x => GivenTheFollowingRequest ( route ) )
275
275
. And ( x => GivenTheServiceProviderReturnsNothing ( ) )
@@ -289,7 +289,7 @@ public void should_return_provider_with_qos_delegate()
289
289
290
290
var route = new DownstreamRouteBuilder ( )
291
291
. WithQosOptions ( qosOptions )
292
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue ) ) . WithLoadBalancerKey ( "" ) . Build ( ) ;
292
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue , false ) ) . WithLoadBalancerKey ( "" ) . Build ( ) ;
293
293
294
294
this . Given ( x => GivenTheFollowingRequest ( route ) )
295
295
. And ( x => GivenTheQosFactoryReturns ( new FakeQoSHandler ( ) ) )
@@ -309,7 +309,7 @@ public void should_return_provider_with_qos_delegate_when_timeout_value_set()
309
309
310
310
var route = new DownstreamRouteBuilder ( )
311
311
. WithQosOptions ( qosOptions )
312
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue ) ) . WithLoadBalancerKey ( "" ) . Build ( ) ;
312
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , false , true , int . MaxValue , false ) ) . WithLoadBalancerKey ( "" ) . Build ( ) ;
313
313
314
314
this . Given ( x => GivenTheFollowingRequest ( route ) )
315
315
. And ( x => GivenTheQosFactoryReturns ( new FakeQoSHandler ( ) ) )
@@ -331,7 +331,7 @@ public void should_log_error_and_return_no_qos_provider_delegate_when_qos_factor
331
331
332
332
var route = new DownstreamRouteBuilder ( )
333
333
. WithQosOptions ( qosOptions )
334
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue ) )
334
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue , false ) )
335
335
. WithLoadBalancerKey ( "" )
336
336
. Build ( ) ;
337
337
@@ -361,7 +361,7 @@ public void should_log_error_and_return_no_qos_provider_delegate_when_qos_factor
361
361
362
362
var route = new DownstreamRouteBuilder ( )
363
363
. WithQosOptions ( qosOptions )
364
- . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue ) )
364
+ . WithHttpHandlerOptions ( new HttpHandlerOptions ( true , true , true , true , int . MaxValue , false ) )
365
365
. WithLoadBalancerKey ( "" )
366
366
. Build ( ) ;
367
367
0 commit comments