This is an automated email from the ASF dual-hosted git repository. jpoth pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git
The following commit(s) were added to refs/heads/main by this push: new 8d9f290 CAMEL-20212 FileStateRepository was moved to package org.apache.camel.support.processor.state 8d9f290 is described below commit 8d9f2909607a58ad59693fef81297523d524f33b Author: John Poth <poth.j...@gmail.com> AuthorDate: Wed Feb 28 14:49:30 2024 +0100 CAMEL-20212 FileStateRepository was moved to package org.apache.camel.support.processor.state --- kafka-offsetrepository/src/main/resources/spring/camel-context.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kafka-offsetrepository/src/main/resources/spring/camel-context.xml b/kafka-offsetrepository/src/main/resources/spring/camel-context.xml index 303a845..6ddc59c 100644 --- a/kafka-offsetrepository/src/main/resources/spring/camel-context.xml +++ b/kafka-offsetrepository/src/main/resources/spring/camel-context.xml @@ -37,7 +37,7 @@ <bean class="java.io.File" id="filerepo"> <constructor-arg type="java.lang.String" value="${fileOffsetrepoPath}"/> </bean> - <bean class="org.apache.camel.impl.engine.FileStateRepository" + <bean class="org.apache.camel.support.processor.state.FileStateRepository" factory-method="fileStateRepository" id="offsetRepo" init-method="doStart"> <constructor-arg ref="filerepo"/> </bean>