Skip to content
Snippets Groups Projects
Commit c5df464e authored by felmer's avatar felmer
Browse files

bug fixed

SVN: 20480
parent 9db265e5
No related branches found
No related tags found
No related merge requests found
...@@ -106,6 +106,7 @@ class LocalAndRemoteCopier implements Serializable, IPostRegistrationDatasetHand ...@@ -106,6 +106,7 @@ class LocalAndRemoteCopier implements Serializable, IPostRegistrationDatasetHand
{ {
File sshExecutable = Copier.getExecutable(properties, DataSetCopier.SSH_EXEC); File sshExecutable = Copier.getExecutable(properties, DataSetCopier.SSH_EXEC);
File rsyncExecutable = Copier.getExecutable(properties, DataSetCopier.RSYNC_EXEC); File rsyncExecutable = Copier.getExecutable(properties, DataSetCopier.RSYNC_EXEC);
File gfindExecutable = Copier.getExecutable(properties, DataSetCopier.GFIND_EXEC);
IPathCopier copier = pathCopierFactory.create(rsyncExecutable, sshExecutable); IPathCopier copier = pathCopierFactory.create(rsyncExecutable, sshExecutable);
copier.check(); copier.check();
String rsyncModule = hostAwareFile.tryGetRsyncModule(); String rsyncModule = hostAwareFile.tryGetRsyncModule();
...@@ -116,8 +117,8 @@ class LocalAndRemoteCopier implements Serializable, IPostRegistrationDatasetHand ...@@ -116,8 +117,8 @@ class LocalAndRemoteCopier implements Serializable, IPostRegistrationDatasetHand
ISshCommandExecutor sshCommandExecutor = ISshCommandExecutor sshCommandExecutor =
sshCommandExecutorFactory.create(sshExecutable, hostOrNull); sshCommandExecutorFactory.create(sshExecutable, hostOrNull);
executor = executor =
new RemoteDataSetFileOperationsExecutor(sshCommandExecutor, copier, hostOrNull, new RemoteDataSetFileOperationsExecutor(sshCommandExecutor, copier,
rsyncModule, rsyncPasswordFile); gfindExecutable, hostOrNull, rsyncModule, rsyncPasswordFile);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment