Hunter Anderson

Results 4 comments of Hunter Anderson

From what I can tell, the issue is probably in [HealthCDIExtension.java](https://github.com/payara/Payara/blob/payara-server-5.2021.10/appserver/payara-appserver-modules/microprofile/healthcheck/src/main/java/fish/payara/microprofile/healthcheck/cdi/extension/HealthCDIExtension.java#L87). ``` java void processBean(@Observes ProcessBean event) { final Annotated annotated = event.getAnnotated(); if (annotated.isAnnotationPresent(Readiness.class) || annotated.isAnnotationPresent(Liveness.class) || annotated.isAnnotationPresent(Startup.class)) {...

I've created a small example repository [here](https://github.com/ghunteranderson/payara-issue-5594). It can be ran with the Payara Maven plugin. I reviewed the specification again and it's not clear to me how this scenario...

The original issue https://github.com/payara/Payara/issues/5594 was opened against Payara 5. Continuing the conversation for Payara 6. I believe the change might be as simple as scanning the bean's qualifiers instead of...

This issue is affecting all the applications across my teams as well. Unfortunately, we've not found a workaround yet. I've opened PR https://github.com/payara/Payara/pull/6563 with @marcinpaton's suggested solution. Local testing confirms...