Skip to content

Commit

Permalink
Code review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkokar committed Nov 13, 2018
1 parent 8a973cf commit bc61e04
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static class ConfigFactory implements HttpHandlerFactory {
public ConfigFactory(Iterable<NamedPlugin> interceptors, BuiltinInterceptorsFactory interceptorFactory, boolean requestTracking) {
this.interceptors = toMap(interceptors);
this.interceptorFactory = interceptorFactory;
this.requestTracker = requestTracking;
this.requestTracking = requestTracking;
}

private static List<RouteHandlerConfig> styxHttpPipeline(JsonNode pipeline) {
Expand Down Expand Up @@ -108,7 +108,7 @@ public HttpHandler build(List<String> parents, RouteHandlerFactory builtinsFacto
return new HttpInterceptorPipeline(
interceptors,
builtinsFactory.build(append(parents, "handler"), handlerConfig),
requestTracker);
requestTracking);
}

private List<HttpInterceptor> getHttpInterceptors(List<String> parents, JsonNode pipeline) {
Expand Down

0 comments on commit bc61e04

Please sign in to comment.