You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if diffs is None:
dst_path= dst_path.joinpath(src_path.name)
if self.is_dataobject(src_obj):
diff, _, only_irods, _ = self.diffObjFile(
src_path, dst_path, scope="checksum")
the variable dst_path is extended with the name of the collection to download. It is needed to compare data, but for the download itself the original dst_path as presented as argument to the function is needed.
The bug can be fixed with:
if diffs is None:
dst_path_compare = dst_path.joinpath(src_path.name)
if self.is_dataobject(src_obj):
diff, _, only_irods, _ = self.diffObjFile(
src_path, dst_path_compare, scope="checksum")
When downloading an iRODS connection the collection name is created twice as a nested directory on the destination:
Downloading a collection without any subcollections
The actual download
And its result:
I also see that the diffs are not calculated correctly.
All checked on Mac.
The text was updated successfully, but these errors were encountered: