Skip to content

Commit 025c43c

Browse files
committed
Update AWS CRT Client to work with v0.5.1
1 parent 1570a31 commit 025c43c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

http-clients/aws-crt-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>software.amazon.awssdk.crt</groupId>
3535
<artifactId>aws-crt</artifactId>
36-
<version>0.4.20</version>
36+
<version>0.5.1</version>
3737
</dependency>
3838

3939
<!--SDK dependencies-->

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ public CompletableFuture<Void> execute(AsyncExecuteRequest asyncRequest) {
255255
HttpRequest crtRequest = toCrtRequest(uri, asyncRequest, crtToSdkAdapter);
256256

257257
// Submit the Request on this Connection
258-
invokeSafely(() -> crtConn.makeRequest(crtRequest, crtToSdkAdapter));
258+
invokeSafely(() -> crtConn.makeRequest(crtRequest, crtToSdkAdapter).activate());
259259
});
260260

261261
return requestFuture;

0 commit comments

Comments
 (0)