Community
Participate
Working Groups
there is a wrong code in jetty-websocket, TestClient, main(): ............ else if (("-h".equals(a)) || ("--host".equals(a))) port = Integer.parseInt(args[(++i)]); ............ i.e. --host can't be used. must be: .............. else if (("-h".equals(a)) || ("--host".equals(a))) host = args[(++i)]; ..............
Good catch! Fix committed to master for 7.5.0 release, and will be merged into 8.0.0 before the next release.