do not print upload progress

This commit is contained in:
Evgenii Alekseev 2021-03-17 19:12:31 +03:00
parent 47bb22b1f4
commit 2c7ef3471e
2 changed files with 4 additions and 13 deletions

View File

@ -43,15 +43,6 @@ class Rsync(Uploader):
sync data to remote server sync data to remote server
:param path: local path to sync :param path: local path to sync
''' '''
check_output( check_output('rsync', '--archive', '--verbose', '--compress', '--partial', '--delete', path, self.remote,
'rsync', exception=None,
'--archive', logger=self.logger)
'--verbose',
'--compress',
'--partial',
'--progress',
'--delete',
path,
self.remote,
exception=None,
logger=self.logger)

View File

@ -44,6 +44,6 @@ class S3(Uploader):
:param path: local path to sync :param path: local path to sync
''' '''
# TODO rewrite to boto, but it is bullshit # TODO rewrite to boto, but it is bullshit
check_output('aws', 's3', 'sync', '--delete', path, self.bucket, check_output('aws', 's3', 'sync', '--quiet', '--delete', path, self.bucket,
exception=None, exception=None,
logger=self.logger) logger=self.logger)