You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2015/04/09 07:32:57 UTC

camel git commit: CAMEL-8600 Changed the ftp default separator to be Unix style

Repository: camel
Updated Branches:
  refs/heads/camel-2.15.x 3b4402092 -> be85a084c


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/be85a084
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/be85a084
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/be85a084

Branch: refs/heads/camel-2.15.x
Commit: be85a084c3f694779557cffa9e7fb287161a984d
Parents: 3b44020
Author: Willem Jiang <wi...@gmail.com>
Authored: Mon Apr 6 21:04:02 2015 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Thu Apr 9 08:36:50 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/be85a084/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")