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 2018/12/12 13:44:42 UTC

[camel] 01/03: CAMEL-12935:Deprecated isCreateCamelContextPerClass not supported / in-use for blueprint (#2663)

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

commit 3f7a851846ec86e7aba97e2a8b5c30e130197a67
Author: ramu11 <kr...@gmail.com>
AuthorDate: Wed Dec 12 17:20:27 2018 +0530

    CAMEL-12935:Deprecated isCreateCamelContextPerClass not supported / in-use for blueprint (#2663)
---
 .../apache/camel/test/blueprint/CamelBlueprintTestSupport.java   | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java b/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java
index 56d6ae2..66f13af 100644
--- a/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java
+++ b/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java
@@ -221,6 +221,15 @@ public abstract class CamelBlueprintTestSupport extends CamelTestSupport {
 
         return answer;
     }
+    
+    /**
+     * This option is not supported / in-use for blueprint
+     */
+    @Deprecated
+    @Override
+    public boolean isCreateCamelContextPerClass() {
+        return false;
+    }
 
     @Before
     @Override