Compare commits

..

No commits in common. "7a4261b5348d0bb41cab031b733dd4e851c0ee90" and "fb48771bd634f16278cd124b7ea26f0c4a82b0fb" have entirely different histories.

파일 보기

@ -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());
}