From aa24f78d852812e79b5bdbb73292ebac6ff8ebc9 Mon Sep 17 00:00:00 2001 From: Pascal Schumacher Date: Mon, 11 Jan 2021 11:32:42 +0100 Subject: [PATCH] Polish "Add support for GET requests for /actuator/startup" See gh-24717 See gh-24734 --- .../src/docs/asciidoc/endpoints/startup.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/docs/asciidoc/endpoints/startup.adoc b/spring-boot-project/spring-boot-actuator-autoconfigure/src/docs/asciidoc/endpoints/startup.adoc index 681d07834f..1d42b4f479 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/docs/asciidoc/endpoints/startup.adoc +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/docs/asciidoc/endpoints/startup.adoc @@ -12,7 +12,7 @@ The application startup steps can either be retrieved as a snapshot (`GET`) or d [[startup-retrieving-snapshot]] === Retrieving a snapshot of the Application Startup steps -To retrieve the steps recorded so far during the application startup phase , make a `GET` request to `/actuator/startup`, as shown in the following curl-based example: +To retrieve the steps recorded so far during the application startup phase, make a `GET` request to `/actuator/startup`, as shown in the following curl-based example: include::{snippets}/startup-snapshot/curl-request.adoc[] @@ -24,7 +24,7 @@ include::{snippets}/startup-snapshot/http-response.adoc[] [[startup-retrieving-drain]] == Draining the Application Startup steps -To drain and return the steps recorded so far during the application startup phase , make a `POST` request to `/actuator/startup`, as shown in the following curl-based example: +To drain and return the steps recorded so far during the application startup phase, make a `POST` request to `/actuator/startup`, as shown in the following curl-based example: include::{snippets}/startup/curl-request.adoc[]