Skip to content

Commit

Permalink
Update WebClientConfig.java
Browse files Browse the repository at this point in the history
Increased timeout from 5 to 10 seconds
  • Loading branch information
krharum authored Oct 1, 2024
1 parent c866247 commit b6f64cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public WebClient.Builder webClientBuilder(ApplicationContext context) {
.option(EpollChannelOption.TCP_KEEPIDLE, 300)
.option(EpollChannelOption.TCP_KEEPINTVL, 60)
.option(EpollChannelOption.TCP_KEEPCNT, 8)
.responseTimeout(Duration.ofSeconds(5))
.responseTimeout(Duration.ofSeconds(10))
));

} catch (NoSuchBeanDefinitionException e) {
Expand Down

0 comments on commit b6f64cf

Please sign in to comment.