Skip to content

Commit

Permalink
Remove BlockingHandlerDecorator from upcheck (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfukushima authored Sep 7, 2023
1 parent 01b08f4 commit be75f36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ private void registerUpcheckRoute(final Router router, final LogErrorHandler err
router
.route(HttpMethod.GET, UPCHECK_PATH)
.produces(TEXT_PLAIN)
.handler(new BlockingHandlerDecorator(new UpcheckHandler(), false))
.handler(new UpcheckHandler())
.failureHandler(errorHandler);
}

Expand Down

0 comments on commit be75f36

Please sign in to comment.