This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-4.10.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 828ed11d8a15a4885378107f49c646686f507991 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Feb 14 20:44:23 2025 +0100 CAMEL-21739: camel-ftp - Add filename to implementation of GenericFileConsumer.getRelativeFilePath for (S)FTP --- .../sftp/integration/SftpSimpleConsumeWithAntIncludeIT.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/integration/SftpSimpleConsumeWithAntIncludeIT.java b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/integration/SftpSimpleConsumeWithAntIncludeIT.java index 25a40c635b3..98615210dd4 100644 --- a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/integration/SftpSimpleConsumeWithAntIncludeIT.java +++ b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/integration/SftpSimpleConsumeWithAntIncludeIT.java @@ -48,10 +48,10 @@ public class SftpSimpleConsumeWithAntIncludeIT extends SftpServerTestSupport { @Override public void configure() { from("sftp://localhost:{{ftp.server.port}}/{{ftp.root.dir}}" - + "?username=admin&password=admin&delay=10000&disconnect=true" - + "&recursive=true&antInclude=subdir/hello.txt" - + "&knownHostsFile=" - + service.getKnownHostsFile()).routeId("foo").noAutoStartup() + + "?username=admin&password=admin&delay=10000&disconnect=true" + + "&recursive=true&antInclude=subdir/hello.txt" + + "&knownHostsFile=" + + service.getKnownHostsFile()).routeId("foo").noAutoStartup() .to("mock:result"); } };