This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-2.23.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.23.x by this push: new b6f3d3f CAMEL-12935:Deprecated isCreateCamelContextPerClass not supported / in-use for blueprint (#2663) b6f3d3f is described below commit b6f3d3f83a0b98f27b0bfe1e32f5901c1d102225 Author: ramu11 <kramu...@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