You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/amazon-services/common/runtime/src/main/java/io/quarkus/amazon/common/runtime/NettyHttpClientConfig.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -67,16 +67,16 @@ public class NettyHttpClientConfig {
67
67
/**
68
68
* The maximum amount of time that a connection should be allowed to remain open while idle.
69
69
* <p>
70
-
* Currently has no effect if `quarkus.dynamodb.async-client.use-idle-connection-reaper` is false.
70
+
* Currently has no effect if `quarkus.<amazon-service>.async-client.use-idle-connection-reaper` is false.
71
71
*/
72
72
@ConfigItem(defaultValue = "60S")
73
73
publicDurationconnectionMaxIdleTime;
74
74
75
75
/**
76
76
* Whether the idle connections in the connection pool should be closed.
77
77
* <p>
78
-
* When enabled, connections left idling for longer than `quarkus.dynamodb.async-client.connection-max-idle-time` will be
79
-
* closed. This will not close connections currently in use.
78
+
* When enabled, connections left idling for longer than `quarkus.<amazon-service>.async-client.connection-max-idle-time`
79
+
* will be closed. This will not close connections currently in use.
Copy file name to clipboardExpand all lines: extensions/amazon-services/common/runtime/src/main/java/io/quarkus/amazon/common/runtime/SyncHttpClientConfig.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -68,8 +68,8 @@ public static class ApacheHttpClientConfig {
68
68
/**
69
69
* Whether the idle connections in the connection pool should be closed asynchronously.
70
70
* <p>
71
-
* When enabled, connections left idling for longer than `quarkus.dynamodb.sync-client.connection-max-idle-time` will be
72
-
* closed.
71
+
* When enabled, connections left idling for longer than `quarkus.<amazon-service>.sync-client.connection-max-idle-time`
72
+
* will be closed.
73
73
* This will not close connections currently in use.
0 commit comments