This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push: new 13fdba1 Disable flaky GrpcTest.forwardOnError 13fdba1 is described below commit 13fdba10c8044a7797d2c589b6ac8276f8e76346 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Tue Mar 15 10:00:54 2022 +0000 Disable flaky GrpcTest.forwardOnError --- .../test/java/org/apache/camel/quarkus/component/grpc/it/GrpcTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/grpc/src/test/java/org/apache/camel/quarkus/component/grpc/it/GrpcTest.java b/integration-tests/grpc/src/test/java/org/apache/camel/quarkus/component/grpc/it/GrpcTest.java index b9700ef..6498810 100644 --- a/integration-tests/grpc/src/test/java/org/apache/camel/quarkus/component/grpc/it/GrpcTest.java +++ b/integration-tests/grpc/src/test/java/org/apache/camel/quarkus/component/grpc/it/GrpcTest.java @@ -38,6 +38,7 @@ import org.apache.camel.quarkus.component.grpc.it.model.PongResponse; import org.eclipse.microprofile.config.Config; import org.eclipse.microprofile.config.ConfigProvider; import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.apache.camel.quarkus.component.grpc.it.GrpcRoute.GRPC_JWT_SECRET; @@ -116,6 +117,7 @@ class GrpcTest { } } + @Disabled("https://github.com/apache/camel-quarkus/issues/3037") @Test public void forwardOnError() throws InterruptedException { Config config = ConfigProvider.getConfig();