-
Notifications
You must be signed in to change notification settings - Fork 35
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
Verify, that dev ui page can be updated via "browser" and HTTPS #986
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have to wait to CI
|
||
@BeforeEach | ||
void setUp() { | ||
webClient = new WebClient(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WDYT ?
new WebClient(BrowserVersion.FIREFOX);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why? We do not really care, which implementation is used, and we prefer to use the most universal one. If you look for other usages in our code base (eg BaseMultiTenantSecurityIT
or BaseWebappSecurityIT
), you will notice, that we always use default constructor.
...ttp-advanced-reactive/src/test/java/io/quarkus/ts/http/advanced/reactive/DevModeHttpsIT.java
Show resolved
Hide resolved
...ttp-advanced-reactive/src/test/java/io/quarkus/ts/http/advanced/reactive/DevModeHttpsIT.java
Show resolved
Hide resolved
390bbd8
to
3204b0a
Compare
3204b0a
to
475eb46
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -67,3 +67,5 @@ pl-container-request-filter.enabled=false | |||
# Register MultipartFormDataReader as provider (used by io.quarkus.ts.http.advanced.reactive.MultipartResource.multipartFormData) | |||
quarkus.index-dependency.resteasy-multipart.group-id=org.jboss.resteasy | |||
quarkus.index-dependency.resteasy-multipart.artifact-id=resteasy-multipart-provider | |||
|
|||
quarkus.qe.test.value=42 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know we are Quarkus QE :-) but using quarkus.qe
property prefix goes directly against docs https://quarkus.io/guides/config-reference#configuring_quarkus : As mentioned above, properties prefixed with quarkus. are effectively reserved for configuring Quarkus itself and its extensions. Therefore, the quarkus. prefix should never be used for application specific properties.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we change existing property instead?
Required for https://issues.redhat.com/browse/QUARKUS-2748
Is in draft stage, until we release a new version of the FW.
Summary
(Summarize the problem solved by this PR, and how to verify it manually)
Please select the relevant options.
run tests
phrase in comment)Checklist: