Fix: 리뷰 연동 제한 일수 변경

This commit is contained in:
UNGGU0704 2025-06-19 15:55:09 +09:00
parent a155f6470f
commit 09517a1ff0
2 changed files with 2 additions and 1 deletions

View File

@ -68,6 +68,7 @@ public class ExternalIntegrationInteractor implements ExternalIntegrationUseCase
throw new BusinessException("지원하지 않는 플랫폼입니다: " + request.getPlatform()); throw new BusinessException("지원하지 않는 플랫폼입니다: " + request.getPlatform());
} }
log.info(request.getPlatform() + " 요청 Data : " + request.toString());
// 동기화 이벤트 발행 // 동기화 이벤트 발행
publishSyncEvent(storeId, request.getPlatform(), syncedCount); publishSyncEvent(storeId, request.getPlatform(), syncedCount);

View File

@ -82,7 +82,7 @@ public class ExternalPlatformAdapter implements ExternalPlatformPort {
Map<String, Object> requestBody = new HashMap<>(); Map<String, Object> requestBody = new HashMap<>();
requestBody.put("store_id", externalStoreId); requestBody.put("store_id", externalStoreId);
requestBody.put("days_limit", 1000); requestBody.put("days_limit", 365);
requestBody.put("max_time", 300); requestBody.put("max_time", 300);
HttpHeaders headers = new HttpHeaders(); HttpHeaders headers = new HttpHeaders();