Conversation
|
Warning Rate limit exceeded@Juhye0k has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 6 minutes and 32 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
WalkthroughHTTP 요청 보안 구성이 수정되어 Swagger 관련 엔드포인트( Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 1
🧹 Nitpick comments (1)
src/main/java/avengers/lion/global/config/security/SecurityConfig.java (1)
44-45: 코드 포맷팅 개선을 고려해보세요.현재
.requestMatchers()호출이 한 줄에 너무 많은 내용을 포함하고 있어 가독성이 떨어집니다.더 나은 가독성을 위해 다음과 같이 포맷팅할 수 있습니다:
- .requestMatchers("/", "/oauth2/**", "/login/**", "/error", "/swagger-ui/**" - ,"/swagger-ui.html", "/v3/api-docs/**", "/swagger-ui.html", "v3/api-docs/swagger-config").permitAll() + .requestMatchers( + "/", + "/oauth2/**", + "/login/**", + "/error", + "/swagger-ui/**", + "/swagger-ui.html", + "/v3/api-docs/**", + "/v3/api-docs/swagger-config" + ).permitAll()
What is this PR?🔍
Summary by CodeRabbit
/swagger-ui.html,/v3/api-docs/**,v3/api-docs/swagger-config)에 대한 공개 접근이 허용되었습니다.