Repository: camel Updated Branches: refs/heads/master 9020df3be -> 3ef0af5a5
CAMEL-8600 Changed the ftp default separator to be Unix style Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c0389943 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c0389943 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c0389943 Branch: refs/heads/master Commit: c0389943321488a37064b39e0a59faec20f11bbd Parents: 9020df3 Author: Willem Jiang <willem.ji...@gmail.com> Authored: Mon Apr 6 21:04:02 2015 +0800 Committer: Willem Jiang <willem.ji...@gmail.com> Committed: Mon Apr 6 21:04:02 2015 +0800 ---------------------------------------------------------------------- .../camel/component/file/remote/RemoteFileConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/c0389943/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/RemoteFileConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/RemoteFileConfiguration.java b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/RemoteFileConfiguration.java index b2a9958..af354c9 100644 --- a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/RemoteFileConfiguration.java +++ b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/RemoteFileConfiguration.java @@ -68,8 +68,8 @@ public abstract class RemoteFileConfiguration extends GenericFileConfiguration { private String siteCommand; @UriParam(defaultValue = "true") private boolean stepwise = true; - @UriParam(defaultValue = "Auto") - private PathSeparator separator = PathSeparator.Auto; + @UriParam(defaultValue = "UNIX") + private PathSeparator separator = PathSeparator.UNIX; @UriParam private boolean streamDownload; @UriParam(defaultValue = "true")