You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting exception String can't be cast to URL at line 74 in SurgicalDebugFilter. I tried to set zuul.debug.host to some IP (XX.XX.XX.XX), IP & port (XX.XX.XX.XX:YYYY) and http://XX.XX.XX.XX:YYYY but still getting type cast error.
@vtahlani I am still facing exactly the same issue which you reported even now. I am using zuul-core-1.3.0.jar. I also searched for your commit but could not find it. Could you please recheck the commit and also confirm if the version I am using is correct or not.
Getting exception String can't be cast to URL at line 74 in SurgicalDebugFilter. I tried to set zuul.debug.host to some IP (XX.XX.XX.XX), IP & port (XX.XX.XX.XX:YYYY) and http://XX.XX.XX.XX:YYYY but still getting type cast error.
RequestContext.currentContext.routeHost = routeHost.get();
if I replace above with below then it works fine.
RequestContext.getCurrentContext().setRouteHost( new URL(routeHost.get()));
The text was updated successfully, but these errors were encountered: