Skip to content

Commit 3cf03b5

Browse files
authored
Backfill changelog entry and update javadocs (#6890)
1 parent 09483da commit 3cf03b5

4 files changed

Lines changed: 13 additions & 6 deletions

File tree

.changes/2.42.32.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@
3737
"category": "Redshift Data API Service",
3838
"contributor": "",
3939
"description": "The BatchExecuteStatement API now supports named SQL parameters, enabling secure batch queries with parameterized values. This enhancement helps prevent SQL injection vulnerabilities and improves query reusability."
40+
},
41+
{
42+
"type": "bugfix",
43+
"category": "AWS CRT HTTP Client",
44+
"contributor": "",
45+
"description": "Rolled back enabling default connection health monitoring for CRT HTTP clients"
4046
}
4147
]
4248
}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,11 @@ Special thanks to the following contributors to this release:
360360
- ### Features
361361
- The BatchExecuteStatement API now supports named SQL parameters, enabling secure batch queries with parameterized values. This enhancement helps prevent SQL injection vulnerabilities and improves query reusability.
362362

363+
## __AWS CRT HTTP Client__
364+
- ### Bugfixes
365+
- Rolled back enabling default connection health monitoring for CRT HTTP clients
366+
367+
363368
# __2.42.31__ __2026-04-08__
364369
## __AWS Backup__
365370
- ### Features

http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtAsyncHttpClient.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,7 @@ public interface Builder extends SdkAsyncHttpClient.Builder<AwsCrtAsyncHttpClien
155155
* then the connection is considered unhealthy and will be shut down.
156156
*
157157
* <p>
158-
* If not explicitly configured, a default health configuration is applied with a minimum throughput of 1 byte per
159-
* second and a throughput failure interval of 30 seconds. The failure interval is derived from the read/write timeout
160-
* settings and will change if those are overridden by service specific defaults.
158+
* Disabled by default.
161159
*
162160
* @param healthChecksConfiguration The health checks config to use
163161
* @return The builder of the method chaining.

http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/AwsCrtHttpClient.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,7 @@ public interface Builder extends SdkHttpClient.Builder<AwsCrtHttpClient.Builder>
198198
* then the connection is considered unhealthy and will be shut down.
199199
*
200200
* <p>
201-
* If not explicitly configured, a default health configuration is applied with a minimum throughput of 1 byte per
202-
* second and a throughput failure interval of 30 seconds. The failure interval is derived from the read/write timeout
203-
* settings and will change if those are overridden by service specific defaults.
201+
* Disabled by default.
204202
*
205203
* @param healthChecksConfiguration The health checks config to use
206204
* @return The builder of the method chaining.

0 commit comments

Comments
 (0)