From 37efe354caceb27e90ea16c7c0c3321ee0aab1f3 Mon Sep 17 00:00:00 2001 From: Ruben Mamo Date: Mon, 17 Dec 2018 20:37:35 +0100 Subject: [PATCH] Fixed error message when reroute configuration is not found #650 (#698) --- .../Finder/UnableToFindDownstreamRouteError.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ocelot/DownstreamRouteFinder/Finder/UnableToFindDownstreamRouteError.cs b/src/Ocelot/DownstreamRouteFinder/Finder/UnableToFindDownstreamRouteError.cs index 81988ba5..cd7141a8 100644 --- a/src/Ocelot/DownstreamRouteFinder/Finder/UnableToFindDownstreamRouteError.cs +++ b/src/Ocelot/DownstreamRouteFinder/Finder/UnableToFindDownstreamRouteError.cs @@ -5,7 +5,7 @@ namespace Ocelot.DownstreamRouteFinder.Finder public class UnableToFindDownstreamRouteError : Error { public UnableToFindDownstreamRouteError(string path, string httpVerb) - : base($"Unable to find downstream route for path: {path}, verb: {httpVerb}", OcelotErrorCode.UnableToFindDownstreamRouteError) + : base($"Failed to match ReRoute configuration for upstream path: {path}, verb: {httpVerb}.", OcelotErrorCode.UnableToFindDownstreamRouteError) { } }