-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the same code path for local and remote syncs
In the Copy module, local syncs do a direct copy and that's it. Remote syncs meanwhile check for already transferred files, check for partially transferred resumable files, can use the rsync algorithm and an external copyprog. Make local and remote syncs use the same code path. The functionality for both cases is now the same, but since the code was optimized for the remote case then there could be some optimization opportunities for local syncs. This is something this patch does not include.
- Loading branch information
Showing
3 changed files
with
52 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters