Disable ratpack events by default

This commit is contained in:
Laplie Anderson 2019-10-03 14:33:43 -04:00
parent ecc2ee7955
commit 831fa5c0fd
1 changed files with 5 additions and 0 deletions

View File

@ -26,6 +26,11 @@ public class RatpackServerDecorator extends HttpServerDecorator<Request, Request
return "ratpack";
}
@Override
protected boolean traceAnalyticsDefault() {
return false;
}
@Override
protected String method(final Request request) {
return request.getMethod().getName();