Skip to content

Commit

Permalink
Spotless.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajsutton committed Aug 27, 2020
1 parent d69d709 commit 027cc2a
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,7 @@ public CompletableFuture<?> start() {
router.route("/").method(HttpMethod.GET).handler(this::handleEmptyRequest);

// Endpoint for Prometheus metrics monitoring.
router
.route("/metrics")
.method(HttpMethod.GET)
.handler(this::metricsRequest);
router.route("/metrics").method(HttpMethod.GET).handler(this::metricsRequest);

final CompletableFuture<?> resultFuture = new CompletableFuture<>();
httpServer
Expand Down

0 comments on commit 027cc2a

Please sign in to comment.