Skip to content

Commit

Permalink
chore: HealthCheck 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
k000927 committed Aug 5, 2024
1 parent 87491b2 commit f6ee3ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public class HealthController {

@GetMapping
public ResponseEntity<Boolean> health(){
return ResponseEntity.ok().body(true);
public ResponseEntity<String> health(){
return ResponseEntity.ok().body("Server OK");
}
}

0 comments on commit f6ee3ba

Please sign in to comment.