fix(shipdetail): 테스트용 IMO 목록 건수 제한 제거
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
부모
fb48771bd6
커밋
ad138d077f
@ -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.subList(0, Math.min(60, fullList.size()))); // TODO: 임시 - 테스트용 100건 제한
|
||||
allImoNumbers = new ArrayList<>(fullList);
|
||||
log.info("[{}] 변경된 IMO 번호 수: {} 개", getReaderName(), response.getShipCount());
|
||||
log.info("[{}] 총 {} 개의 변경된 IMO 번호 조회 완료", getReaderName(), allImoNumbers.size());
|
||||
}
|
||||
|
||||
불러오는 중...
Reference in New Issue
Block a user