jamesnetherton opened a new issue, #4557: URL: https://github.com/apache/camel-quarkus/issues/4557
Currently [`QuarkusVertxWebsocketHost`](https://github.com/apache/camel-quarkus/blob/7dc82684910a20ea10159950390773ed6e3896c7/extensions/vertx-websocket/runtime/src/main/java/org/apache/camel/quarkus/component/vertx/websocket/VertxWebsocketRecorder.java#L50) does not return the actual port used by the underlying HTTP server. This prohibits the `vertx-websocket` producer from being used against the local server like: ```java .to("vertx-websocket:localhost:8080/foo"); ``` There's an undocumented idiom that works instead like: ```java .to("vertx-websocket:///foo"); ``` But, it's a pain to maintain the logic to make it work properly. So I'd like to get rid of it and force usage of the standard `host:port/path` style. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
