Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Stork configuration under the quarkus namespace #24184

Merged

Conversation

aureamunoz
Copy link
Member

@aureamunoz aureamunoz commented Mar 8, 2022

Fixes #23942

This allows align the stork extension config with the others. With this PR the config should be something like:

quarkus.stork.my-service.service-discovery.type=consul
quarkus.stork.my-service.service-discovery.params.consul-host=localhost
quarkus.stork.my-service.service-discovery.params.consul-port=8500

quarkus.stork.my-service.load-balancer.type=least-random
...

@aureamunoz aureamunoz force-pushed the prefixed-stork-config-23942 branch 2 times, most recently from 8e41b5c to deb13e9 Compare March 10, 2022 11:26
@aureamunoz aureamunoz marked this pull request as ready for review March 10, 2022 11:28
@quarkus-bot
Copy link

quarkus-bot bot commented Mar 10, 2022

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building deb13e9

Status Name Step Failures Logs Raw logs
Initial JDK 11 Build Build Failures Logs Raw logs

Failures

⚙️ Initial JDK 11 Build #

- Failing: extensions/smallrye-stork/deployment 
! Skipped: docs extensions/grpc/deployment extensions/oidc-client-reactive-filter/deployment and 29 more

📦 extensions/smallrye-stork/deployment

Failed to execute goal net.revelc.code:impsort-maven-plugin:1.6.2:check (check-imports) on project quarkus-smallrye-stork-deployment: Imports are not sorted in /home/runner/work/quarkus/quarkus/extensions/smallrye-stork/deployment/src/main/java/io/quarkus/stork/deployment/SmallRyeStorkProcessor.java

@quarkus-bot
Copy link

quarkus-bot bot commented Mar 10, 2022

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building ca67c03

Status Name Step Failures Logs Raw logs
Initial JDK 11 Build Build Failures Logs Raw logs

Failures

⚙️ Initial JDK 11 Build #

- Failing: extensions/smallrye-stork/deployment 
! Skipped: docs extensions/grpc/deployment extensions/oidc-client-reactive-filter/deployment and 29 more

📦 extensions/smallrye-stork/deployment

Failed to execute goal net.revelc.code:impsort-maven-plugin:1.6.2:check (check-imports) on project quarkus-smallrye-stork-deployment: Imports are not sorted in /home/runner/work/quarkus/quarkus/extensions/smallrye-stork/deployment/src/main/java/io/quarkus/stork/deployment/SmallRyeStorkProcessor.java

@quarkus-bot

This comment was marked as outdated.

@quarkus-bot
Copy link

quarkus-bot bot commented Mar 10, 2022

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building 7b7193b

Status Name Step Failures Logs Raw logs
JVM Tests - JDK 11 Build Failures Logs Raw logs
JVM Tests - JDK 11 Windows Build Failures Logs Raw logs
JVM Tests - JDK 17 Build Failures Logs Raw logs
Native Tests - HTTP Build Failures Logs Raw logs
Native Tests - Misc1 Build Failures Logs Raw logs
Native Tests - Misc4 Build Failures Logs Raw logs
Native Tests - Security2 Build Failures Logs Raw logs
Native Tests - gRPC Build Failures Logs Raw logs

Full information is available in the Build summary check run.

Failures

⚙️ JVM Tests - JDK 11 #

- Failing: extensions/resteasy-reactive/rest-client-reactive/deployment integration-tests/grpc-mutual-auth integration-tests/grpc-plain-text-mutiny and 1 more
! Skipped: extensions/oidc-client-reactive-filter/deployment extensions/oidc-token-propagation-reactive/deployment extensions/resteasy-reactive/rest-client-reactive-jackson/deployment and 11 more

📦 extensions/resteasy-reactive/rest-client-reactive/deployment

io.quarkus.rest.client.reactive.stork.StorkDevModeTest.shouldModifyStorkSettings line 55 - More details - Source on GitHub

java.lang.AssertionError: 
1 expectation failed.
Expected status code <200> but was <500>.

io.quarkus.rest.client.reactive.stork.StorkIntegrationTest.shouldDetermineUrlViaStork line 32 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

io.quarkus.rest.client.reactive.stork.StorkIntegrationTest.shouldDetermineUrlViaStorkCDI line 38 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

io.quarkus.rest.client.reactive.stork.StorkResponseTimeLoadBalancerTest.shouldUseFasterService line 54 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

📦 integration-tests/grpc-mutual-auth

io.quarkus.grpc.examples.hello.HelloWorldMutualTlsEndpointTest.testHelloWorldServiceUsingBlockingStub line 15 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldMutualTlsEndpointTest.testHelloWorldServiceUsingMutinyStub line 21 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

📦 integration-tests/grpc-plain-text-mutiny

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeader line 44 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeaderWithMutiny line 36 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeaderWithInterface line 52 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.testHelloWorldServiceUsingBlockingStub line 20 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.testHelloWorldServiceUsingMutinyStub line 28 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

📦 integration-tests/grpc-stork-response-time

io.quarkus.grpc.examples.stork.GrpcStorkResponseTimeCollectionTest.shouldCallModerateIfFaster line 44 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.stork.GrpcStorkResponseTimeCollectionTest.shouldCallConfigurableIfFaster line 26 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

⚙️ JVM Tests - JDK 11 Windows #

- Failing: extensions/resteasy-reactive/rest-client-reactive/deployment integration-tests/grpc-mutual-auth integration-tests/grpc-plain-text-mutiny and 1 more
! Skipped: extensions/oidc-client-reactive-filter/deployment extensions/oidc-token-propagation-reactive/deployment extensions/resteasy-reactive/rest-client-reactive-jackson/deployment and 11 more

📦 extensions/resteasy-reactive/rest-client-reactive/deployment

io.quarkus.rest.client.reactive.stork.StorkDevModeTest.shouldModifyStorkSettings line 55 - More details - Source on GitHub

java.lang.AssertionError: 
1 expectation failed.
Expected status code <200> but was <500>.

io.quarkus.rest.client.reactive.stork.StorkIntegrationTest.shouldDetermineUrlViaStork line 32 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

io.quarkus.rest.client.reactive.stork.StorkIntegrationTest.shouldDetermineUrlViaStorkCDI line 38 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

io.quarkus.rest.client.reactive.stork.StorkResponseTimeLoadBalancerTest.shouldUseFasterService line 54 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

📦 integration-tests/grpc-mutual-auth

io.quarkus.grpc.examples.hello.HelloWorldMutualTlsEndpointTest.testHelloWorldServiceUsingBlockingStub line 15 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldMutualTlsEndpointTest.testHelloWorldServiceUsingMutinyStub line 21 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

📦 integration-tests/grpc-plain-text-mutiny

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeader line 44 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeaderWithMutiny line 36 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeaderWithInterface line 52 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.testHelloWorldServiceUsingBlockingStub line 20 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.testHelloWorldServiceUsingMutinyStub line 28 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

📦 integration-tests/grpc-stork-response-time

io.quarkus.grpc.examples.stork.GrpcStorkResponseTimeCollectionTest.shouldCallModerateIfFaster line 44 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

io.quarkus.grpc.examples.stork.GrpcStorkResponseTimeCollectionTest.shouldCallConfigurableIfFaster line 26 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/java.net.SocketInputStream.socketRead0(Native Method)
	at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115)

⚙️ JVM Tests - JDK 17 #

- Failing: extensions/resteasy-reactive/rest-client-reactive/deployment integration-tests/grpc-mutual-auth integration-tests/grpc-plain-text-mutiny and 1 more
! Skipped: extensions/oidc-client-reactive-filter/deployment extensions/oidc-token-propagation-reactive/deployment extensions/resteasy-reactive/rest-client-reactive-jackson/deployment and 11 more

📦 extensions/resteasy-reactive/rest-client-reactive/deployment

io.quarkus.rest.client.reactive.stork.StorkDevModeTest.shouldModifyStorkSettings line 55 - More details - Source on GitHub

java.lang.AssertionError: 
1 expectation failed.
Expected status code <200> but was <500>.

io.quarkus.rest.client.reactive.stork.StorkIntegrationTest.shouldDetermineUrlViaStork line 32 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

io.quarkus.rest.client.reactive.stork.StorkIntegrationTest.shouldDetermineUrlViaStorkCDI line 38 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

io.quarkus.rest.client.reactive.stork.StorkResponseTimeLoadBalancerTest.shouldUseFasterService line 54 - More details - Source on GitHub

java.lang.IllegalArgumentException: No service defined for name hello-service
	at io.smallrye.stork.Stork.getService(Stork.java:45)
	at org.jboss.resteasy.reactive.client.handlers.ClientSendRequestHandler.createRequest(ClientSendRequestHandler.java:303)

📦 integration-tests/grpc-mutual-auth

io.quarkus.grpc.examples.hello.HelloWorldMutualTlsEndpointTest.testHelloWorldServiceUsingBlockingStub line 15 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

io.quarkus.grpc.examples.hello.HelloWorldMutualTlsEndpointTest.testHelloWorldServiceUsingMutinyStub line 21 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

📦 integration-tests/grpc-plain-text-mutiny

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeader line 44 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeaderWithMutiny line 36 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.shouldSetHeaderWithInterface line 52 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.testHelloWorldServiceUsingBlockingStub line 20 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

io.quarkus.grpc.examples.hello.HelloWorldEndpointTest.testHelloWorldServiceUsingMutinyStub line 28 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

📦 integration-tests/grpc-stork-response-time

io.quarkus.grpc.examples.stork.GrpcStorkResponseTimeCollectionTest.shouldCallModerateIfFaster line 44 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

io.quarkus.grpc.examples.stork.GrpcStorkResponseTimeCollectionTest.shouldCallConfigurableIfFaster line 26 - More details - Source on GitHub

java.net.SocketTimeoutException: Read timed out
	at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
	at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)

⚙️ Native Tests - HTTP #

- Failing: integration-tests/rest-client-reactive integration-tests/rest-client-reactive-multipart integration-tests/rest-client-reactive-stork and 1 more

📦 integration-tests/rest-client-reactive

io.quarkus.it.rest.client.BasicTestIT.shouldMakeJsonRequest - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '5706'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

📦 integration-tests/rest-client-reactive-multipart

io.quarkus.it.rest.client.multipart.MultipartResourceIT.shouldSendBufferAsTextFile - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '6438'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

📦 integration-tests/rest-client-reactive-stork

io.quarkus.it.rest.reactive.stork.RestClientReactiveStorkIT.shouldUseFasterService - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '7188'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

📦 integration-tests/resteasy-reactive-kotlin/standard

io.quarkus.it.resteasy.reactive.kotlin.NativeReactiveGreetingResourceIT.testHello - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '4865'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

⚙️ Native Tests - Misc1 #

- Failing: integration-tests/rest-client-reactive-kotlin-serialization 

📦 integration-tests/rest-client-reactive-kotlin-serialization

io.quarkus.it.rest.client.BasicTestIT.callCountries - More details - Source on GitHub

java.lang.RuntimeException: Unable to successfully launch process '3242'. Exit code is: '1'.
	at io.quarkus.test.common.LauncherUtil.ensureProcessIsAlive(LauncherUtil.java:98)
	at io.quarkus.test.common.LauncherUtil.waitForCapturedListeningData(LauncherUtil.java:67)

⚙️ Native Tests - Misc4 #

- Failing: integration-tests/micrometer-prometheus 

📦 integration-tests/micrometer-prometheus

io.quarkus.it.micrometer.prometheus.ClientRequestIT.testClientRequests - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '5012'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

⚙️ Native Tests - Security2 #

- Failing: integration-tests/oidc-client-reactive 

📦 integration-tests/oidc-client-reactive

io.quarkus.it.keycloak.OidcClientInGraalITCase.testGetUserNameReactive - More details - Source on GitHub

java.lang.RuntimeException: java.lang.IllegalStateException: Unable to determine the status of the running process. See the above logs for details
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

⚙️ Native Tests - gRPC #

- Failing: integration-tests/grpc-interceptors integration-tests/grpc-mutual-auth integration-tests/grpc-plain-text-gzip and 3 more

📦 integration-tests/grpc-interceptors

io.quarkus.grpc.example.interceptors.HelloWorldEndpointIT.testHelloWorldServiceUsingBlockingStub - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '5764'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

📦 integration-tests/grpc-mutual-auth

io.quarkus.grpc.examples.hello.HelloWorldMutualTlsEndpointIT.testHelloWorldServiceUsingBlockingStub - More details - Source on GitHub

java.lang.RuntimeException: java.lang.IllegalStateException: Unable to determine the status of the running process. See the above logs for details
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

📦 integration-tests/grpc-plain-text-gzip

io.quarkus.grpc.examples.hello.HelloWorldEndpointIT.testHelloWorldServiceUsingBlockingStub - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '3461'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

📦 integration-tests/grpc-plain-text-mutiny

io.quarkus.grpc.examples.hello.HelloWorldEndpointIT.shouldSetHeader - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '4148'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

📦 integration-tests/grpc-proto-v2

io.quarkus.grpc.examples.hello.HelloWorldEndpointIT.testHelloWorldServiceUsingBlockingStub - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '6504'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

📦 integration-tests/grpc-tls

io.quarkus.grpc.examples.hello.HelloWorldTlsEndpointIT.testHelloWorldServiceUsingBlockingStub - More details - Source on GitHub

java.lang.RuntimeException: java.lang.RuntimeException: Unable to successfully launch process '2553'. Exit code is: '1'.
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.throwBootFailureException(QuarkusIntegrationTestExtension.java:285)
	at io.quarkus.test.junit.QuarkusIntegrationTestExtension.beforeEach(QuarkusIntegrationTestExtension.java:74)

@aureamunoz aureamunoz force-pushed the prefixed-stork-config-23942 branch from 7b7193b to 8e1b5a5 Compare March 14, 2022 13:39
@quarkus-bot
Copy link

quarkus-bot bot commented Mar 14, 2022

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building 8e1b5a5

Status Name Step Failures Logs Raw logs
Native Tests - HTTP Build ⚠️ Check → Logs Raw logs
Native Tests - Misc1 Build ⚠️ Check → Logs Raw logs
Native Tests - Misc4 Build ⚠️ Check → Logs Raw logs
Native Tests - Security2 Build ⚠️ Check → Logs Raw logs
Native Tests - gRPC Build ⚠️ Check → Logs Raw logs

⚠️ Errors occurred while downloading the build reports. This report is incomplete.

@quarkus-bot
Copy link

quarkus-bot bot commented Mar 14, 2022

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building 544a551

Status Name Step Failures Logs Raw logs
JVM Tests - JDK 11 Build ⚠️ Check → Logs Raw logs
✔️ JVM Tests - JDK 17
Native Tests - HTTP Build ⚠️ Check → Logs Raw logs
Native Tests - Misc1 Build ⚠️ Check → Logs Raw logs
Native Tests - Misc4 Build ⚠️ Check → Logs Raw logs
Native Tests - Security2 Build ⚠️ Check → Logs Raw logs

⚠️ Errors occurred while downloading the build reports. This report is incomplete.

@aureamunoz aureamunoz force-pushed the prefixed-stork-config-23942 branch from cbe6e47 to e64ac13 Compare March 15, 2022 11:58
@quarkus-bot

This comment has been minimized.

@aureamunoz aureamunoz force-pushed the prefixed-stork-config-23942 branch from 490d662 to 75bc6f8 Compare March 16, 2022 20:49
@michalszynkiewicz
Copy link
Member

@gsmet, look what we have here, Stork config under Quarkus namespace :)

@aureamunoz please add info about it to the migration guide

@michalszynkiewicz michalszynkiewicz merged commit 5421f50 into quarkusio:main Mar 17, 2022
@quarkus-bot quarkus-bot bot added this to the 2.8 - main milestone Mar 17, 2022
@quarkus-bot quarkus-bot bot added the kind/enhancement New feature or request label Mar 17, 2022
@fedinskiy
Copy link
Contributor

@aureamunoz @michalszynkiewicz the old config(stork.pung.service-discovery=consul) is not supported anymore, right? Basically, 2.7 and older use only the old style, and 2.8 and newer use only the new one?

fedinskiy added a commit to fedinskiy/quarkus-test-suite that referenced this pull request May 31, 2022
fedinskiy added a commit to fedinskiy/quarkus-test-suite that referenced this pull request May 31, 2022
[1] quarkusio/quarkus#24184
NB: Changes in OCP tests were not tested, see @DisabledOnQuarkusVersion
annotation for explanation
fedinskiy added a commit to fedinskiy/quarkus-test-suite that referenced this pull request May 31, 2022
[1] quarkusio/quarkus#24184
NB: Changes in OCP tests were not tested, see @DisabledOnQuarkusVersion
annotation for explanation
@aureamunoz
Copy link
Member Author

@aureamunoz @michalszynkiewicz the old config(stork.pung.service-discovery=consul) is not supported anymore, right? Basically, 2.7 and older use only the old style, and 2.8 and newer use only the new one?

Yes, exactly. The old style is not supported from Quarkus 2.8

fedinskiy added a commit to quarkus-qe/quarkus-test-suite that referenced this pull request May 31, 2022
[1] quarkusio/quarkus#24184
NB: Changes in OCP tests were not tested, see @DisabledOnQuarkusVersion
annotation for explanation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support Stork configuration under the quarkus namespace
3 participants