-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Incorrect error page in dev mode when quarkus-kubernetes is in the classpath #5174
Comments
@iocanel we stumbled upon this one. Is perhaps one of the jar dependencies adding annotation processing stuff by mistake? |
Can you assign the issue to me? |
VelocityTransformationProcessor is a dekorate transitive. |
I can't seem to assign it to you, but consider it your |
I created a pull request that should fix the issue for now. |
fix (#5174): Add sundrio exclusion in kubernetes extension.
Create a project with
quarkus-kubernetes
as extension.Then start in dev mode.
Then create a new java file and forget to add a mandatory import (e.g.
List getAll()
without importingjava.util;.List
). You then get the following nasty errorThe web page shows
Does annotation processors leaks somehow. CC @geoand
The text was updated successfully, but these errors were encountered: