Skip to content

Commit

Permalink
update dropwizard ver
Browse files Browse the repository at this point in the history
  • Loading branch information
jchoi614 committed Jul 2, 2024
1 parent 29613c4 commit d9cfe8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ public class QueryIdCachingProxyHandler extends ProxyHandler {

private final Counter errorCounter4xx;
private final Counter errorCounter5xx;
private final MetricRegistry metrics = new MetricRegistry();

public QueryIdCachingProxyHandler(
QueryHistoryManager queryHistoryManager,
Expand All @@ -75,7 +74,7 @@ public QueryIdCachingProxyHandler(
MetricRegistry metrics) {
this.requestMeter = requestMeter;
this.errorCounter4xx = metrics.counter(name(QueryIdCachingProxyHandler.class, "4xx"));
this.errorCounter5xx = metrics.counter(name(QueryIdCachingProxyHandler.class, "5xx"));;
this.errorCounter5xx = metrics.counter(name(QueryIdCachingProxyHandler.class, "5xx"));
this.routingManager = routingManager;
this.routingGroupSelector = routingGroupSelector;
this.queryHistoryManager = queryHistoryManager;
Expand Down
2 changes: 1 addition & 1 deletion proxyserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<dropwizard.version>1.3.29</dropwizard.version>
<dropwizard.version>1.3.7</dropwizard.version>
</properties>


Expand Down

0 comments on commit d9cfe8d

Please sign in to comment.