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
The following commit(s) were added to refs/heads/main by this push: new 4605dc4 CAMEL-17257: camel-core - RouteBuilder should store source location of the file from the DSL loader 4605dc4 is described below commit 4605dc4888c231769eddccd2b8694abb1f01da76 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Dec 1 20:32:42 2021 +0100 CAMEL-17257: camel-core - RouteBuilder should store source location of the file from the DSL loader --- .../hystrix/processor/SpringHystrixRouteHierarchicalConfigTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-hystrix/src/test/java/org/apache/camel/component/hystrix/processor/SpringHystrixRouteHierarchicalConfigTest.java b/components/camel-hystrix/src/test/java/org/apache/camel/component/hystrix/processor/SpringHystrixRouteHierarchicalConfigTest.java index d6d3842..003d6f9 100644 --- a/components/camel-hystrix/src/test/java/org/apache/camel/component/hystrix/processor/SpringHystrixRouteHierarchicalConfigTest.java +++ b/components/camel-hystrix/src/test/java/org/apache/camel/component/hystrix/processor/SpringHystrixRouteHierarchicalConfigTest.java @@ -44,7 +44,7 @@ public class SpringHystrixRouteHierarchicalConfigTest extends CamelSpringTestSup RouteDefinition routeDefinition = context.getRouteDefinition("hystrix-route"); final Route route = new DefaultRoute( context, routeDefinition, - routeDefinition.idOrCreate(context.adapt(ExtendedCamelContext.class).getNodeIdFactory()), null, null); + routeDefinition.idOrCreate(context.adapt(ExtendedCamelContext.class).getNodeIdFactory()), null, null, null); CircuitBreakerDefinition hystrixDefinition = findCircuitBreakerDefinition(routeDefinition); assertNotNull(hystrixDefinition);