Skip to content

Commit

Permalink
Merge pull request #72 from mju-likelion/feature/health-check-#71
Browse files Browse the repository at this point in the history
Feature/#71 로드밸런서 health check 적용
  • Loading branch information
Dh3356 authored Feb 23, 2024
2 parents f601163 + bebd6e5 commit 54c93b7
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.mjulikelion.bagel.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HealthController {
@GetMapping("/health")
public String health() {
return "ok";
}
}

0 comments on commit 54c93b7

Please sign in to comment.