Skip to content
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

[3.8] Do not expect index page in DEV mode on Windows #1759

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,13 @@ public void shouldCreateApplicationOnJvm() {

// Start using DEV mode
app.start();
app.given().get().then().statusCode(HttpStatus.SC_OK);
if (OS.WINDOWS.isCurrentOs()) {
// there is empty page on Windows as we don't use registry prepared by prod team
// related to https://github.com/quarkusio/quarkus/issues/39909
app.given().get("/hello").then().statusCode(HttpStatus.SC_OK);
} else {
app.given().get().then().statusCode(HttpStatus.SC_OK);
}
}

@Tag("QUARKUS-1472")
Expand Down