Skip to content

Commit

Permalink
Merge pull request quarkusio#41753 from geoand/quarkusio#41730
Browse files Browse the repository at this point in the history
Fix `*` handling of debug configuration in VertxCoreProcessor
  • Loading branch information
geoand authored Jul 9, 2024
2 parents 6a5670a + 30656e9 commit 1f52cf1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ private Filter createDebuggerFilter() {
debugPort = Integer.parseInt(m.group(2));
String host = m.group(1);
if (host.equals("*")) {
host.equals("localhost");
host = "localhost";
}
bindAddress = InetAddress.getByName(host);
}
Expand Down

0 comments on commit 1f52cf1

Please sign in to comment.