You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2017/08/14 09:47:54 UTC

camel git commit: camel-bigquery: fix endpoint annotation

Repository: camel
Updated Branches:
  refs/heads/master 1c47a8893 -> 05b746c3d


camel-bigquery: fix endpoint annotation


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/05b746c3
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/05b746c3
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/05b746c3

Branch: refs/heads/master
Commit: 05b746c3d6ff8fa8bbfa22d36ad423ca8924a5b7
Parents: 1c47a88
Author: lburgazzoli <lb...@gmail.com>
Authored: Mon Aug 14 11:47:49 2017 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Mon Aug 14 11:47:49 2017 +0200

----------------------------------------------------------------------
 .../camel/component/google/bigquery/GoogleBigQueryEndpoint.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/05b746c3/components/camel-google-bigquery/src/main/java/org/apache/camel/component/google/bigquery/GoogleBigQueryEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-google-bigquery/src/main/java/org/apache/camel/component/google/bigquery/GoogleBigQueryEndpoint.java b/components/camel-google-bigquery/src/main/java/org/apache/camel/component/google/bigquery/GoogleBigQueryEndpoint.java
index 2121446..19cd7f8 100644
--- a/components/camel-google-bigquery/src/main/java/org/apache/camel/component/google/bigquery/GoogleBigQueryEndpoint.java
+++ b/components/camel-google-bigquery/src/main/java/org/apache/camel/component/google/bigquery/GoogleBigQueryEndpoint.java
@@ -40,7 +40,7 @@ import org.apache.camel.spi.UriParam;
  * Another consideration is that exceptions are not handled within the class. They are expected to bubble up and be handled
  * by Camel.
  */
-@UriEndpoint(firstVersion = "2.20.0", scheme = "bigquery", title = "BigQuery", syntax = "bigquery:projectId:datasetId[:tableName]", label = "messaging")
+@UriEndpoint(firstVersion = "2.20.0", scheme = "bigquery", title = "BigQuery", syntax = "bigquery:projectId:datasetId:tableName", label = "messaging", producerOnly = true)
 public class GoogleBigQueryEndpoint extends DefaultEndpoint {
     @UriParam
     protected final GoogleBigQueryConfiguration configuration;