Skip to content

Commit 247343f

Browse files
authored
feat: 스케쥴링 시간 3시로 변경 (#122)
1 parent 60ddfd8 commit 247343f

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/main/java/com/startingblock/global/config/FeignConfig.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,4 @@ public static class ServiceKey {
4747
private String bizInfo;
4848
}
4949

50-
@Bean
51-
public Request.Options requestOptions() {
52-
return new Request.Options(
53-
5000, // 연결 타임아웃 (5초)
54-
60000 // 읽기 타임아웃 (10초)
55-
);
56-
}
57-
5850
}

src/main/java/com/startingblock/global/infrastructure/feign/BizInfoClient.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ public interface BizInfoClient {
1414
@GetMapping("/uss/rss/bizinfoApi.do")
1515
BizInfoAnnouncementRes getAnnouncementList(
1616
@RequestParam("crtfcKey") String crtfcKey,
17-
@RequestParam("dataType") String dataType
17+
@RequestParam("dataType") String dataType,
18+
@RequestParam("searchCnt") int searchCnt
1819
);
1920

2021
}

0 commit comments

Comments
 (0)