Skip to content

Commit

Permalink
Adjust timeouts once again for unreliable networks.
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed Oct 27, 2024
1 parent a78c496 commit 482decf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ class EFS3AMZUpload(
this.httpClient =
this.resources.add(
ApacheHttpClient.builder()
.connectionTimeout(Duration.ofSeconds(10L))
.socketTimeout(Duration.ofSeconds(10L))
.connectionTimeout(Duration.ofSeconds(60L))
.socketTimeout(Duration.ofSeconds(60L))
.build()
)

Expand Down

0 comments on commit 482decf

Please sign in to comment.