changed uri for jmeter UUID controller

This commit is contained in:
Liam Garvie 2021-02-20 11:18:09 +00:00
parent 0fabae2d65
commit 745f15f7f2
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import static java.lang.String.format;
@RestController
public class RetrieveUuidController {
@GetMapping("/api/test")
@GetMapping("/api/uuid")
public Response uuid() {
return new Response(format("Test message... %s.", UUID.randomUUID()));
}