Skip to content

Commit

Permalink
continue on error 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjoon committed Sep 19, 2024
1 parent d9520af commit 5d848bd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/backend_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ jobs:
healthCheckA:
name: 🙏 Server A Health Check
needs: deployToA
continue-on-error: true
defaults:
run:
working-directory: backend
Expand Down Expand Up @@ -122,7 +121,6 @@ jobs:
healthCheckAAfterRollBack:
name: 🙏 Server A Health Check After RollBack
needs: rollBackA
continue-on-error: true
defaults:
run:
working-directory: backend
Expand Down Expand Up @@ -158,7 +156,6 @@ jobs:
healthCheckB:
name: 🙏 Server B Health Check
needs: deployToB
continue-on-error: true
defaults:
run:
working-directory: backend
Expand Down
2 changes: 0 additions & 2 deletions backend/src/main/java/develup/api/HealthApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ public class HealthApi {

@GetMapping("/health")
public ResponseEntity<ApiResponse<String>> health() {


return ResponseEntity.status(400).body(new ApiResponse<>("up"));
}
}

0 comments on commit 5d848bd

Please sign in to comment.