rmannibucau commented on pull request #469: URL: https://github.com/apache/maven/pull/469#issuecomment-830823506
@michael-o just mentionning that the JDK parses the address by testing if ":" exists and if not uses localhost as host and the string as port. Your 15474 is a random value attributed because no port was set so address=localhost is not expected to work I think. It is explained at https://docs.oracle.com/en/java/javase/11/docs/specs/jpda/conninv.html. > In contexts where a client is attaching to a server, socket transport addresses have the format "<name>:<port>" where <name> is the host name and <port> is the socket port number at which it attaches or listens. In contexts where a server is waiting for a client to attach, the address consists of the port number alone (the host name is implicit). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
