You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/10/17 13:40:05 UTC

[camel] branch camel-2.24.x updated: Camel-SQL: Fixed build

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

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


The following commit(s) were added to refs/heads/camel-2.24.x by this push:
     new bc78497  Camel-SQL: Fixed build
bc78497 is described below

commit bc78497e3c7436206ab4b24bbb4ecf9a591b788a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 17 15:39:41 2019 +0200

    Camel-SQL: Fixed build
---
 .../org/apache/camel/component/sql/stored/SqlStoredEndpoint.java     | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java b/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java
index 6d80de9..005ab5b 100644
--- a/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java
+++ b/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java
@@ -160,4 +160,9 @@ public class SqlStoredEndpoint extends DefaultEndpoint {
         this.function = function;
     }
 
+    @Override
+    public boolean isSingleton() {
+        return true;
+    }
+
 }