This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 882400820c858231f8901d24f934a6e18b65862c Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Dec 1 20:39:31 2021 +0100 CAMEL-17257: camel-core - RouteBuilder should store source location of the file from the DSL loader --- .../component/hystrix/processor/HystrixHierarchicalConfigTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-hystrix/src/test/java/org/apache/camel/component/hystrix/processor/HystrixHierarchicalConfigTest.java b/components/camel-hystrix/src/test/java/org/apache/camel/component/hystrix/processor/HystrixHierarchicalConfigTest.java index cbdf382..0aee584 100644 --- a/components/camel-hystrix/src/test/java/org/apache/camel/component/hystrix/processor/HystrixHierarchicalConfigTest.java +++ b/components/camel-hystrix/src/test/java/org/apache/camel/component/hystrix/processor/HystrixHierarchicalConfigTest.java @@ -34,7 +34,7 @@ public class HystrixHierarchicalConfigTest { public void testRegistryConfiguration() throws Exception { final SimpleRegistry registry = new SimpleRegistry(); final CamelContext context = new DefaultCamelContext(registry); - final Route route = new DefaultRoute(context, null, null, null, null); + final Route route = new DefaultRoute(context, null, null, null, null, null); HystrixConfigurationDefinition def = new HystrixConfigurationDefinition(); def.setGroupKey("global-group-key"); @@ -66,7 +66,7 @@ public class HystrixHierarchicalConfigTest { @Test public void testContextConfiguration() throws Exception { final CamelContext context = new DefaultCamelContext(); - final Route route = new DefaultRoute(context, null, null, null, null); + final Route route = new DefaultRoute(context, null, null, null, null, null); HystrixConfigurationDefinition def = new HystrixConfigurationDefinition(); def.setGroupKey("global-group-key"); @@ -99,7 +99,7 @@ public class HystrixHierarchicalConfigTest { public void testMixedConfiguration() throws Exception { final SimpleRegistry registry = new SimpleRegistry(); final CamelContext context = new DefaultCamelContext(registry); - final Route route = new DefaultRoute(context, null, null, null, null); + final Route route = new DefaultRoute(context, null, null, null, null, null); HystrixConfigurationDefinition def = new HystrixConfigurationDefinition(); def.setGroupKey("global-group-key");