1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

add debug message to mark when syncing to Amazon S3 starts

This commit is contained in:
Hans-Christoph Steiner 2014-10-14 17:12:47 -04:00
parent d2b5b86ed5
commit e8e94e1020

View File

@ -40,6 +40,9 @@ def update_awsbucket(repo_section):
Requires AWS credentials set in config.py: awsaccesskeyid, awssecretkey
'''
logging.debug('Syncing "' + repo_section + '" to Amazon S3 bucket "'
+ config['awsbucket'] + '"')
import libcloud.security
libcloud.security.VERIFY_SSL_CERT = True
from libcloud.storage.types import Provider, ContainerDoesNotExistError