Skip to content

Commit

Permalink
fix/url
Browse files Browse the repository at this point in the history
  • Loading branch information
ah9mon committed Aug 17, 2023
1 parent f7a7b54 commit 19f9a43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
}

// aws target group health test 접근 허용
if (request.getMethod().equals("GET") && request.getRequestURI().startsWith("/")) {
if (request.getMethod().equals("GET") && request.getRequestURI().startsWith("/health-check")) {
chain.doFilter(request, response);
return;
}
Expand Down

0 comments on commit 19f9a43

Please sign in to comment.