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 ac44e072c0f410ee0df0ebf2303135743dae384a Author: Tomaz Muraus <[email protected]> AuthorDate: Mon Jan 2 15:10:38 2023 +0100 Remove region specific classes which are not needed anymore. --- libcloud/storage/drivers/s3.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/libcloud/storage/drivers/s3.py b/libcloud/storage/drivers/s3.py index aa44d991c..44fe7f7e9 100644 --- a/libcloud/storage/drivers/s3.py +++ b/libcloud/storage/drivers/s3.py @@ -1402,17 +1402,6 @@ class S3CNNorthStorageDriver(S3StorageDriver): region_name = "cn-north-1" -class S3AFSouthConnection(S3SignatureV4Connection): - host = S3_AF_SOUTH1_HOST - - -class S3AFSouthStorageDriver(S3StorageDriver): - name = "Amazon S3 (af-south-1)" - connectionCls = S3AFSouthConnection - ex_location_name = "af-south-1" - region_name = "af-south-1" - - class S3EUWestConnection(S3SignatureV4Connection): host = S3_EU_WEST_HOST @@ -1538,4 +1527,3 @@ class S3CACentralStorageDriver(S3StorageDriver): connectionCls = S3CACentralConnection ex_location_name = "ca-central-1" region_name = "ca-central-1" - \ No newline at end of file
