-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Continuous Testing with Apicurio DevService #26557
Comments
/cc @stuartwdouglas |
Hi all, this bug can be also reproduced with the Quarkus Version |
We are also experiencing this issue with 2.15.3.Final. Is there any workaround to get continuous testing enabled? |
Since the error still persist using version This BuildStep here (https://github.com/quarkusio/quarkus/blob/main/extensions/schema-registry/apicurio/common/deployment/src/main/java/io/quarkus/apicurio/registry/common/ApicurioRegistryClientProcessor.java#L52) initialized the VertxHttpClient for the Apicurio Client. With Continuous Testing the existing Apicurio container is reused and at any restart (re-run) of the tests Quarkus tries to reinitialize the connection for the Apicurio Client. I can't really judge if this reinitialization from the client's connection is necessary or not. I would really appreciate any help in solving this problem. Continuous testing is a great feature but only if it works in combination with all Dev Services available in Quarkus. |
It holds a reference to Vertx, which will be closed on hot reload Fixes quarkusio#26557
It holds a reference to Vertx, which will be closed on hot reload Fixes quarkusio#26557
It holds a reference to Vertx, which will be closed on hot reload Fixes quarkusio#26557
Happy to see it will be soon solved. Thanks @ozangunalp |
It holds a reference to Vertx, which will be closed on hot reload Fixes quarkusio#26557 (cherry picked from commit de440ad)
It holds a reference to Vertx, which will be closed on hot reload Fixes quarkusio#26557
Describe the bug
When using the Apicurio DevService for testing, continuous testing (re-run from tests) is not working for integration tests (
@QuarkusTest
).Expected behavior
Continuous testing using DevServices for Kafka broker and schema registry must be possible
Actual behavior
Re-run from
@QuarkusTest
with enabled DevService for Kafka broker and schema registry produce the following exception:The text was updated successfully, but these errors were encountered: