Skip to content

Commit c0696d2

Browse files
committed
Fix kuberntes-client exclusion
This patch fixes the following operator warning: 2025-09-19 09:38:34 WARN HttpClientUtils:188 - The following httpclient factories were detected on your classpath: [io.fabric8.kubernetes.client.vertx.VertxHttpClientFactory, io.fabric8.kubernetes.client.jdkhttp.JdkHttpClientFactory], multiple of which had the same priority (0) so one was chosen randomly. You should exclude dependencies that aren't needed or use an explicit association of the HttpClient.Factory. In 0.45.1 we upgraded kubernets-client from 6.13.4 to 7.2.0, skipping the upgrade to 7.0.0 that brings a runtime dependency on kubernetes-httpclient-vertx and required to update our exclusion. https://github.com/strimzi/strimzi-kafka-operator/pull/10907/files Signed-off-by: Federico Valeri <fedevaleri@gmail.com>
1 parent 7332acb commit c0696d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@
286286
<exclusions>
287287
<exclusion>
288288
<groupId>io.fabric8</groupId>
289-
<artifactId>kubernetes-httpclient-okhttp</artifactId>
289+
<artifactId>kubernetes-httpclient-vertx</artifactId>
290290
</exclusion>
291291
</exclusions>
292292
</dependency>

0 commit comments

Comments
 (0)