From d6f5f42aa1c892f6bd5b28b3e51e98df1a3b1e5c Mon Sep 17 00:00:00 2001 From: Alexander Pankin Date: Sun, 1 Dec 2024 21:02:53 +0300 Subject: [PATCH] Respect max message size property fo Quarkus GRPC client (44853). Reorded imports. --- .../main/java/io/quarkus/grpc/runtime/supports/Channels.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/grpc/runtime/src/main/java/io/quarkus/grpc/runtime/supports/Channels.java b/extensions/grpc/runtime/src/main/java/io/quarkus/grpc/runtime/supports/Channels.java index 3cc1514affd57e..e7cc902b6384a9 100644 --- a/extensions/grpc/runtime/src/main/java/io/quarkus/grpc/runtime/supports/Channels.java +++ b/extensions/grpc/runtime/src/main/java/io/quarkus/grpc/runtime/supports/Channels.java @@ -31,7 +31,6 @@ import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; -import io.vertx.grpc.client.GrpcClientOptions; import jakarta.enterprise.context.spi.CreationalContext; import org.eclipse.microprofile.context.ManagedExecutor; @@ -80,6 +79,7 @@ import io.vertx.core.net.PemTrustOptions; import io.vertx.core.net.SocketAddress; import io.vertx.grpc.client.GrpcClientChannel; +import io.vertx.grpc.client.GrpcClientOptions; @SuppressWarnings({ "OptionalIsPresent" }) public class Channels {