Skip to content

Commit

Permalink
Fix * handling of debug configuration in VertxCoreProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Jul 8, 2024
1 parent 7e98e77 commit 30656e9
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 30656e9

Please sign in to comment.