Compare commits
No commits in common. "7a4261b5348d0bb41cab031b733dd4e851c0ee90" and "fb48771bd634f16278cd124b7ea26f0c4a82b0fb" have entirely different histories.
7a4261b534
...
fb48771bd6
@ -123,7 +123,7 @@ public class ShipDetailUpdateDataReader extends BaseApiReader<ShipDetailDto> {
|
||||
log.info("[{}] 변경된 IMO 번호 조회 시작...", getReaderName());
|
||||
ShipUpdateApiResponse response = callShipUpdateApi();
|
||||
List<String> fullList = extractUpdateImoNumbers(response);
|
||||
allImoNumbers = new ArrayList<>(fullList);
|
||||
allImoNumbers = new ArrayList<>(fullList.subList(0, Math.min(60, fullList.size()))); // TODO: 임시 - 테스트용 100건 제한
|
||||
log.info("[{}] 변경된 IMO 번호 수: {} 개", getReaderName(), response.getShipCount());
|
||||
log.info("[{}] 총 {} 개의 변경된 IMO 번호 조회 완료", getReaderName(), allImoNumbers.size());
|
||||
}
|
||||
|
||||
불러오는 중...
Reference in New Issue
Block a user