-
Notifications
You must be signed in to change notification settings - Fork 3
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
[23.1] quarkusFullMicroProfile test fails due to experimental VM options warning #190
Comments
The The Line 55 in 88a7a8f
@Karm is the Log part necessary for the test? If so, we need a way to wrap it with |
Upstream PR for netty 4: netty/netty#13596 |
The remaining issue is down to netty native-image config, tracked elsewhere. See: Can we allow-list those log lines to reduce noise? |
+1 from me |
`-H:ReflectionConfigurationResources` - Reported in `netty`: netty/netty#13595. - Fixed in `netty`: netty/netty#13596. - See also similar issue in Karm/mandrel-integration-tests#190 and its workaround in Karm/mandrel-integration-tests#203. `-H:Log=registerResource` - Added explicitly by `APP_FULL_MICROPROFILE` config. - Use case documented in Quarkus Native Reference Guide, documentation added in quarkusio/quarkus#36494.
`-H:ReflectionConfigurationResources` - Reported in `netty`: netty/netty#13595. - Fixed in `netty`: netty/netty#13596. - See also similar issue in Karm/mandrel-integration-tests#190 and its workaround in Karm/mandrel-integration-tests#203. `-H:Log=registerResource, -H:Log=registerResource:` - Added explicitly by `APP_FULL_MICROPROFILE` config. - Typical use case documented in Quarkus Native Reference Guide, the documentation was added in quarkusio/quarkus#36494. - Allow-listed, instead of using `-H:+UnlockExperimentalVMOptions` / `-H:-UnlockExperimentalVMOptions`, to avoid errors with GraalVM / Mandrel based on Java < 21, which do not recognize this option (see oracle/graal#7105).
It fails with:
The text was updated successfully, but these errors were encountered: