ESGF / esgf-download

ESGF data transfer and replication tool
https://esgf.github.io/esgf-download/
BSD 3-Clause "New" or "Revised" License
15 stars 2 forks source link

fix(download): use shutil.copyfile in case os.rename fails #24

Closed svenrdz closed 1 year ago

svenrdz commented 1 year ago

Related issue https://github.com/ESGF/esgf-download/issues/16

If Config.paths.data and Config.paths.tmp are on different filesystems, Path.rename fails.

Changes

This is expected to be slower with large files, as it blocks the async execution and prevents new chunks of data to be downloaded until copying is finished.