Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
구현 방법 1(그냥 깡 구현)
아래와 같은 클래스를 만들어 현재 서버의 포트를 가져오도록 구현했습니다.
그리고는 말 그대로 깡구현(하드코딩)을 통해 라운드 로빈을 구현해봤습니다
serverCount
는 환경 변수로 처리 하면 될 것 같은데serverIndex
는 더 공부해봐야겠네요.추가로 테스트의
Thread.sleep(2000);
의 시간이 부족한 지 어떨 때는sentMailCount
와mailReceivedSubscribeUniqueCount
,mailReceivedSubscribes
가 0으로 나올때도 있고 20으로 통과할 때도 있고 오락가락해서 한번Thread.sleep(5000);
으로 해봤습니다.그랬더니 테스트가 실패할때는
sentMailCount
와mailReceivedSubscribeUniqueCount
는 0이 나오는데mailReceivedSubscribes
에는 정상적으로 20개가 다 들어있었습니다.그래서
Thread.sleep(10000);
으로 늘렸더니 정상적으로 통과합니다. 해당 부분은 좀 더 공부해봐야겠네요.