Skip to content

Commit

Permalink
Fix: geoApi 연결 설정 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jzakka committed Feb 8, 2024
1 parent 2ee6a56 commit ca72473
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/com/stoury/config/ContextConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ public PasswordEncoder passwordEncoder() {
public GeoApiContext geoApiContext() {
return new GeoApiContext.Builder()
.apiKey(apiKey)
.connectTimeout(5, TimeUnit.SECONDS)
.connectTimeout(2, TimeUnit.SECONDS)
.readTimeout(3, TimeUnit.SECONDS)
.retryTimeout(2, TimeUnit.SECONDS)
.writeTimeout(5, TimeUnit.SECONDS)
.maxRetries(5)
.maxRetries(3)
.build();
}
}

0 comments on commit ca72473

Please sign in to comment.