oscerd commented on a change in pull request #5301: URL: https://github.com/apache/camel/pull/5301#discussion_r608387920
########## File path: components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java ########## @@ -59,6 +59,9 @@ @UriParam(description = "Whether this call is for a function.") private boolean function; + @UriParam(label = "template") Review comment: the label in the uriParam is related to generic camel labels, template is not one of them ########## File path: components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java ########## @@ -163,4 +166,16 @@ public void setFunction(boolean function) { this.function = function; } + public int getQueryTimeout() { + return queryTimeout; + } + + /** + * Sets the query timeout property on statements used for query processing. This will be overridden by the remaining Review comment: Please add the description as field of the annotation like the other options. -- 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: us...@infra.apache.org