You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When activating debug logging for io.quarkus with the quarkus-smallrye-reactive-messaging-rabbitmq extension present, I get following output:
2022-10-06 08:32:11,419 DEBUG [io.qua.arc.pro.BeanProcessor] (build-61) Found unrecommended usage of private members (use package-private instead) in framework beans:
- @Inject field com.activelogistics.wolf.common.log.JaxRSLoggingFilter#uriInfo,
- @Inject field com.activelogistics.wolf.weborder.commons.security.filter.AbstractAuthorizationFilter#resourceInfo,
- @Inject field io.smallrye.reactive.messaging.providers.connectors.WorkerPoolRegistry#configInstance,
- @Inject field io.smallrye.reactive.messaging.providers.connectors.WorkerPoolRegistry#executionHolder,
- @Inject field io.smallrye.reactive.messaging.rabbitmq.RabbitMQConnector#clientOptions,
- @Inject field io.smallrye.reactive.messaging.rabbitmq.RabbitMQConnector#credentialsProviders,
- @Inject field io.smallrye.reactive.messaging.providers.connectors.WorkerPoolRegistry#configInstance,
- @Inject field io.smallrye.reactive.messaging.providers.connectors.WorkerPoolRegistry#executionHolder,
- @Inject field io.smallrye.reactive.messaging.providers.impl.ConfiguredChannelFactory#publisherDecoratorInstance
This is done in order to avoid warnings in Quarkus
(which does support private field injection but needs
to use reflection)
Relates to: quarkusio/quarkus#28420
Describe the bug
When activating debug logging for io.quarkus with the quarkus-smallrye-reactive-messaging-rabbitmq extension present, I get following output:
These private injects should be changed to package private
https://quarkus.io/guides/cdi-reference#native-executables-and-private-members
Expected behavior
No private injects inside quarkus framework code
Actual behavior
No response
How to Reproduce?
quarkus.log.min-level=DEBUG
quarkus.log.category."io.quarkus".level=DEBUG
Output of
uname -a
orver
Microsoft Windows [Version 10.0.19044.2006]
Output of
java -version
17.0.4
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.13.0.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)Apache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537) Maven home: C:\eclipse\tools\java\maven Java version: 17.0.4, vendor: Eclipse Adoptium, runtime: C:\eclipse\tools\java\17 Default locale: de_DE, platform encoding: Cp1252 OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
Additional information
No response
The text was updated successfully, but these errors were encountered: