Dev UI (/q/dev) missing after updating bom #22779
Unanswered
LucienBrule
asked this question in
Q&A
Replies: 1 comment
-
/cc @geoand |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This isn't critical but I find it odd, it may effect others as well so figured I'd report it.
Scenario:
I generated a quarkus application ~2 months ago, as of last week /q/dev was working fine then I recently updated the POM and poof, no more pretty dev ui. However the other dev endpoints are still there. This isn't a huge concern, but I'd like my Dev UI back.
To sanity check myself I generated a new project yesterday with
quarkus create app
, the Dev UI showed up just fine on that project. I diffed both POMS to make sure they were effectively equivalent to no avail. I even stripped the application properties of my main project to match the newly generated project but nada.Main Project : Missing /q/dev
New Project: Has /q/dev
Main Project Pom.xml
New Project pom.xml
Main Project application.properties
New Project application.properties
Main runtime (docker-compose)
What I see when navigating to /q/dev behind my load balancer (accessing localhost directly)
What I expect to see when navigating to /q/dev (from New Project)
Main project Dockerfile.dev
*chmod 777 workaround: the jboss user didn't have privileges to make a directory in /deployments/dev
$ curl localhost:9003/q/arc/beans
$ curl localhost:9003/q/arc
Note Main Project Dev UI also doesn't show up when ran on the host machine with ./mvnw quarkus dev.
After making sure the configuration files were as close as possible, I deleted the target folder and ran mvn clean package, rebuilt the docker container, to no avail.
I also tried setting the non application http root to something else but nope.
The only endpoint on the Main Project is annotated on the class at /api/jobs
So in short, I'm pretty stumped as to why the dev ui isn't showing up.
Please Quarkus aficionados, you're my only hope.
Beta Was this translation helpful? Give feedback.
All reactions