Skip to content

Commit 23a72ec

Browse files
committed
Update articles/java/sdk/http-client-pipeline.md
1 parent c93a4af commit 23a72ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/java/sdk/http-client-pipeline.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ This article provides an overview of using the HTTP client and pipeline function
1717

1818
The Azure SDK for Java is implemented using an `HttpClient` abstraction. This abstraction enables a pluggable architecture that accepts multiple HTTP client libraries or custom implementations. However, to simplify dependency management for most users, all Azure client libraries depend on `azure-core-http-netty`. As such, the [Netty](https://netty.io) HTTP client is the default client used in all Azure SDK for Java libraries.
1919

20-
> [!Important]
21-
> Ensure your `azure-core-http-netty` dependency is at least **1.15.12**. If you are using [BOM](https://central.sonatype.com/artifact/com.azure/azure-sdk-bom/1.2.36/versions), ensure your BOM version is at least **1.2.36**.
20+
> [!IMPORTANT]
21+
> Ensure that your `azure-core-http-netty` dependency uses version `1.15.12` or later. If you're using a [BOM](https://central.sonatype.com/artifact/com.azure/azure-sdk-bom/1.2.36/versions), ensure that your BOM version is at least `1.2.36`.
2222
>
23-
> This minimum version is required to allow for large HTTP headers returned by [Azure Resource Manager](/azure/azure-resource-manager/management/async-operations#url-to-monitor-status) during long-running operations.
23+
> This minimum version is required to enable large HTTP headers returned by [Azure Resource Manager](/azure/azure-resource-manager/management/async-operations#url-to-monitor-status) during long-running operations.
2424
2525
Although Netty is the default HTTP client, the SDK provides three client implementations, depending on which dependencies you already have in your project. These implementations are for:
2626

0 commit comments

Comments
 (0)