This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 3c2c161736cd17bd2d151eb5e942aa27a3e27c84 Author: Cristian Rasch <[email protected]> AuthorDate: Thu Dec 10 11:18:13 2020 -0300 Storage: Add support for the SFO2 datacenter --- libcloud/storage/drivers/digitalocean_spaces.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libcloud/storage/drivers/digitalocean_spaces.py b/libcloud/storage/drivers/digitalocean_spaces.py index fd96cab..bace4f1 100644 --- a/libcloud/storage/drivers/digitalocean_spaces.py +++ b/libcloud/storage/drivers/digitalocean_spaces.py @@ -24,6 +24,7 @@ __all__ = [ DO_SPACES_HOSTS_BY_REGION = {'nyc3': 'nyc3.digitaloceanspaces.com', 'ams3': 'ams3.digitaloceanspaces.com', + 'sfo2': 'sfo2.digitaloceanspaces.com', 'sgp1': 'sgp1.digitaloceanspaces.com'} DO_SPACES_DEFAULT_REGION = 'nyc3' DEFAULT_SIGNATURE_VERSION = '2'
