Skip to content

Commit

Permalink
graceful-test
Browse files Browse the repository at this point in the history
  • Loading branch information
TaeyeonRoyce committed Nov 13, 2023
1 parent 0ea233e commit 8458dc1
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ ResponseEntity<List<CelebQueryResponse>> find() {
List<CelebQueryResponse> result = celebQueryService.find();
return ResponseEntity.ok(result);
}

@GetMapping
ResponseEntity<Void> test() throws InterruptedException {
Thread.sleep(3000);
return ResponseEntity.ok().build();
}
}

0 comments on commit 8458dc1

Please sign in to comment.