Fix: 리뷰 연동 제한 일수 변경
This commit is contained in:
parent
a155f6470f
commit
09517a1ff0
@ -68,6 +68,7 @@ public class ExternalIntegrationInteractor implements ExternalIntegrationUseCase
|
||||
throw new BusinessException("지원하지 않는 플랫폼입니다: " + request.getPlatform());
|
||||
}
|
||||
|
||||
log.info(request.getPlatform() + " 요청 Data : " + request.toString());
|
||||
// 동기화 이벤트 발행
|
||||
publishSyncEvent(storeId, request.getPlatform(), syncedCount);
|
||||
|
||||
|
||||
@ -82,7 +82,7 @@ public class ExternalPlatformAdapter implements ExternalPlatformPort {
|
||||
|
||||
Map<String, Object> requestBody = new HashMap<>();
|
||||
requestBody.put("store_id", externalStoreId);
|
||||
requestBody.put("days_limit", 1000);
|
||||
requestBody.put("days_limit", 365);
|
||||
requestBody.put("max_time", 300);
|
||||
|
||||
HttpHeaders headers = new HttpHeaders();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user