Skip to content

Commit

Permalink
Merge pull request #20119 from famod/quarkus-http-host-enabled
Browse files Browse the repository at this point in the history
Fix quarkus.http.host-enabled=false without domain socket
  • Loading branch information
stuartwdouglas authored Sep 15, 2021
2 parents c1cbb7b + 4454bb6 commit 7fd99dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public void startServer(Supplier<Vertx> vertx, ShutdownContext shutdown,
if (startVirtual) {
initializeVirtual(vertx.get());
}
if (startSocket) {
if (startSocket && (httpConfiguration.hostEnabled || httpConfiguration.domainSocketEnabled)) {
// Start the server
if (closeTask == null) {
doServerStart(vertx.get(), httpBuildTimeConfig, httpConfiguration, launchMode, ioThreads,
Expand Down

0 comments on commit 7fd99dc

Please sign in to comment.