Move /application to /actuator
Change the endpoint default path from `/application` to `/actuator`. Fixes gh-10970
This commit is contained in:
@@ -55,7 +55,7 @@ public class SampleWebFluxApplicationTests {
|
||||
|
||||
@Test
|
||||
public void testActuatorStatus() {
|
||||
this.webClient.get().uri("/application/health").accept(MediaType.APPLICATION_JSON)
|
||||
this.webClient.get().uri("/actuator/health").accept(MediaType.APPLICATION_JSON)
|
||||
.exchange().expectStatus().isOk().expectBody()
|
||||
.json("{\"status\":\"UP\"}");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user