This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 517252c  CAMEL-13717 - fixed wrong syntax for websocket-jsr356 
endpoints
     new ac97ac4  Merge pull request #3012 from lhein/CAMEL-13717
517252c is described below

commit 517252c0623fed16de6c16d44063f0628066862a
Author: Lars Heinemann <lhein....@gmail.com>
AuthorDate: Tue Jul 2 15:16:27 2019 +0200

    CAMEL-13717 - fixed wrong syntax for websocket-jsr356 endpoints
    
    Signed-off-by: Lars Heinemann <lhein....@gmail.com>
---
 .../src/main/java/org/apache/camel/websocket/jsr356/JSR356Endpoint.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-websocket-jsr356/src/main/java/org/apache/camel/websocket/jsr356/JSR356Endpoint.java
 
b/components/camel-websocket-jsr356/src/main/java/org/apache/camel/websocket/jsr356/JSR356Endpoint.java
index 0a74174..8ba00ce 100644
--- 
a/components/camel-websocket-jsr356/src/main/java/org/apache/camel/websocket/jsr356/JSR356Endpoint.java
+++ 
b/components/camel-websocket-jsr356/src/main/java/org/apache/camel/websocket/jsr356/JSR356Endpoint.java
@@ -24,7 +24,7 @@ import org.apache.camel.spi.UriParam;
 import org.apache.camel.spi.UriPath;
 import org.apache.camel.support.DefaultEndpoint;
 
-@UriEndpoint(firstVersion = "2.23.0", scheme = "websocket-jsr356", title = 
"Javax Websocket", syntax = "websocket-jsr356:/resourceUri", label = "jsr356")
+@UriEndpoint(firstVersion = "2.23.0", scheme = "websocket-jsr356", title = 
"Javax Websocket", syntax = "websocket-jsr356:websocketPathOrUri", label = 
"jsr356")
 public class JSR356Endpoint extends DefaultEndpoint {
     @UriPath(description = "If a path (/foo) it will deploy locally the 
endpoint, " + "if an uri it will connect to the corresponding server")
     private String websocketPathOrUri;

Reply via email to