Skip to content

Commit

Permalink
refactor: 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yechan-kim committed Aug 18, 2024
1 parent 7b4d4db commit 4e4f011
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ public String execute(MultipartFile file) {
// 엑셀 데이터 처리
for (Row row : sheet) {
for (Cell cell : row) {

// 초당 API 요청량을 초과하지 않기 위해 1초에 4번씩만 요청
if (cnt == 4) {
sleep(1000);
cnt = 0;
Expand Down

0 comments on commit 4e4f011

Please sign in to comment.