Skip to content

Commit

Permalink
changed the default connectionacquiretimeout value
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred1155 committed Jan 31, 2025
1 parent dc7c2fe commit 5f6246c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public final class SdkHttpConfigurationOption<T> extends AttributeMap.Key<T> {
private static final Duration DEFAULT_SOCKET_READ_TIMEOUT = Duration.ofSeconds(30);
private static final Duration DEFAULT_SOCKET_WRITE_TIMEOUT = Duration.ofSeconds(30);
private static final Duration DEFAULT_CONNECTION_TIMEOUT = Duration.ofSeconds(2);
private static final Duration DEFAULT_CONNECTION_ACQUIRE_TIMEOUT = Duration.ofSeconds(10);
private static final Duration DEFAULT_CONNECTION_ACQUIRE_TIMEOUT = Duration.ofSeconds(50);
private static final Duration DEFAULT_CONNECTION_MAX_IDLE_TIMEOUT = Duration.ofSeconds(60);
private static final Duration DEFAULT_CONNECTION_TIME_TO_LIVE = Duration.ZERO;
/**
Expand Down
2 changes: 1 addition & 1 deletion scripts/new-change
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python
# This file is borrowed from the aws/aws-cli project with the following modifications:
# - Add a 'deprecation' category, and validation for the category value
# - Modify the 'linkify' method to use Markdown syntax instead of reStructuredText (rst)
Expand Down

0 comments on commit 5f6246c

Please sign in to comment.