Skip to content

Commit

Permalink
fix: aws target group health test를 위해 '/' 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
ah9mon committed Aug 17, 2023
1 parent 05698fd commit ada2b20
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
}
}

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

String jwtHeader = request.getHeader(jwtConfig.getHeader());

// JWT Header, Prefix 확인
Expand Down

0 comments on commit ada2b20

Please sign in to comment.