Skip to content

Commit

Permalink
Fix * handling of debug configuration in VertxCoreProcessor
Browse files Browse the repository at this point in the history
(cherry picked from commit 30656e9)
  • Loading branch information
geoand authored and gsmet committed Jul 9, 2024
1 parent 1636cae commit 64bb1f3
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 64bb1f3

Please sign in to comment.