From 7c62b55431eac4ff5faf0d00d90e8b3a5ca4fda0 Mon Sep 17 00:00:00 2001 From: Tom Gardham-Pallister Date: Tue, 13 Feb 2018 09:13:34 +0000 Subject: [PATCH] added tracing to some routes --- test/Ocelot.ManualTest/configuration.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/test/Ocelot.ManualTest/configuration.json b/test/Ocelot.ManualTest/configuration.json index 7ec4eb695..d49c843f3 100644 --- a/test/Ocelot.ManualTest/configuration.json +++ b/test/Ocelot.ManualTest/configuration.json @@ -74,6 +74,11 @@ ], "UpstreamPathTemplate": "/posts", "UpstreamHttpMethod": [ "Get" ], + "HttpHandlerOptions": { + "AllowAutoRedirect": true, + "UseCookieContainer": true, + "UseTracing": true + }, "QoSOptions": { "ExceptionsAllowedBeforeBreaking": 3, "DurationOfBreak": 10, @@ -92,6 +97,11 @@ "UpstreamPathTemplate": "/posts/{postId}", "UpstreamHttpMethod": [ "Get" ], "RequestIdKey": "ReRouteRequestId", + "HttpHandlerOptions": { + "AllowAutoRedirect": true, + "UseCookieContainer": true, + "UseTracing": true + }, "QoSOptions": { "ExceptionsAllowedBeforeBreaking": 3, "DurationOfBreak": 10, @@ -109,6 +119,11 @@ ], "UpstreamPathTemplate": "/posts/{postId}/comments", "UpstreamHttpMethod": [ "Get" ], + "HttpHandlerOptions": { + "AllowAutoRedirect": true, + "UseCookieContainer": true, + "UseTracing": true + }, "QoSOptions": { "ExceptionsAllowedBeforeBreaking": 3, "DurationOfBreak": 10,