Commit bdf5c60c by Dave Syer

Fix typo in trace log

parent 403bd8d7
...@@ -105,7 +105,7 @@ public class RibbonRoutingFilter extends ZuulFilter { ...@@ -105,7 +105,7 @@ public class RibbonRoutingFilter extends ZuulFilter {
RequestContext context = RequestContext.getCurrentContext(); RequestContext context = RequestContext.getCurrentContext();
info.put("remote", true); info.put("remote", true);
info.put("servideId", context.get("serviceId")); info.put("serviceId", context.get("serviceId"));
Map<String, Object> trace = new LinkedHashMap<String, Object>(); Map<String, Object> trace = new LinkedHashMap<String, Object>();
Map<String, Object> input = new LinkedHashMap<String, Object>(); Map<String, Object> input = new LinkedHashMap<String, Object>();
trace.put("request", input); trace.put("request", input);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment