You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ExecutorService를 try-with-resources를 이용해 자원을 관리하면 스레드 풀의 모든 작업이 종료될 때까지 테스트 스레드는 블록됩니다. 하지만 로깅은 try-with-resources 외부가 아닌 내부에 존재합니다. 따라서 스레드 풀의 작업과 동시에 테스트 스레드에서 로깅합니다.
📝 문제 설명
MemberTicketServiceConcurrencyTest에서 성공 요청 수와 실패 요청 수가 올바르게 측정되지 않는 문제가 발생합니다.
🔍 재현 방법
/docker
위치에서docker compose up
명령어로 도커를 실행합니다.📄 에러 로그
💡 개선 방향
모든 스레드의 작업이 종료될 때까지 기다린 후에 로그를 출력하여 문제를 해결합니다.
The text was updated successfully, but these errors were encountered: