Skip to content

Commit

Permalink
Merge pull request #272 from ericaltendorf/rsync_no_compress
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored May 8, 2021
2 parents 562883b + 6e5e77d commit 6763bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plotman/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def archive(dir_cfg, all_jobs):

bwlimit = dir_cfg.archive.rsyncd_bwlimit
throttle_arg = ('--bwlimit=%d' % bwlimit) if bwlimit else ''
cmd = ('rsync %s --remove-source-files -P %s %s' %
cmd = ('rsync %s --no-compress --remove-source-files -P %s %s' %
(throttle_arg, chosen_plot, rsync_dest(dir_cfg.archive, archdir)))

return (True, cmd)

0 comments on commit 6763bf3

Please sign in to comment.