-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
DevUI - config editor doesn't work well over https, UI doesn't get updated #29431
Comments
Hum.... why I do have the feeling it's a problem with the virtual channel thiny |
Reproducer app - https://github.com/rsvoboda/code-with-quarkus
|
Fixes quarkusio#29431 This is a workaround though. The core of the problem is that when in HTTPS, event.request().absoluteURI() returns an HTTP url, which is wrong and leads to the redirect not working.
From what I can see, the problem is when
I worked around it by using PR is here: #29586 |
@rsvoboda I added the labels. |
Fixes quarkusio#29431 This is a workaround though. The core of the problem is that when in HTTPS, event.request().absoluteURI() returns an HTTP url, which is wrong and leads to the redirect not working. (cherry picked from commit e2572f4)
Fixes quarkusio#29431 This is a workaround though. The core of the problem is that when in HTTPS, event.request().absoluteURI() returns an HTTP url, which is wrong and leads to the redirect not working. (cherry picked from commit e2572f4)
Fixes quarkusio#29431 This is a workaround though. The core of the problem is that when in HTTPS, event.request().absoluteURI() returns an HTTP url, which is wrong and leads to the redirect not working. (cherry picked from commit e2572f4)
Describe the bug
DevUI - config editor doesn't work well over https, the value gets updated in
application.properties
but the UI gets grey for the updated entry and new value is not reflected.Browser console shows
GET http://localhost/q/dev/io.quarkus.quarkus-vertx-http/config net::ERR_CONNECTION_REFUSED
when I access I https://localhost:8443/q/dev/io.quarkus.quarkus-vertx-http/config and update somethingAs if the Dev UI counts only with port 8080 /
quarkus.http.port
.CC @radcortez @phillip-kruger @geoand
Expected behavior
UI gets updated, no
net::ERR_CONNECTION_REFUSED
Actual behavior
UI doesn't get updated
How to Reproduce?
quarkus.http.ssl.certificate.key-store-file
andquarkus.http.ssl.certificate.key-store-password
Output of
uname -a
orver
No response
Output of
java -version
Java 17
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.14.1.Final, 2.13.4.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)No response
Additional information
No response
The text was updated successfully, but these errors were encountered: