Add missing name and website attribute to the Outscale storage driver.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/924fbe2b Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/924fbe2b Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/924fbe2b Branch: refs/heads/trunk Commit: 924fbe2ba1b533382ef1c1a2b8cc8dcc35e93d00 Parents: 6d3e601 Author: Tomaz Muraus <[email protected]> Authored: Wed Jun 29 21:10:16 2016 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Wed Jun 29 21:13:39 2016 +0200 ---------------------------------------------------------------------- libcloud/storage/drivers/rgw.py | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/924fbe2b/libcloud/storage/drivers/rgw.py ---------------------------------------------------------------------- diff --git a/libcloud/storage/drivers/rgw.py b/libcloud/storage/drivers/rgw.py index f7d053e..c2e13ff 100644 --- a/libcloud/storage/drivers/rgw.py +++ b/libcloud/storage/drivers/rgw.py @@ -69,6 +69,8 @@ class S3RGWConnectionAWS2(S3Connection): class S3RGWStorageDriver(S3StorageDriver): + name = 'Ceph RGW' + website = 'http://ceph.com/' def __init__(self, key, secret=None, secure=True, host=None, port=None, api_version=None, region=S3_RGW_DEFAULT_REGION, **kwargs): @@ -107,6 +109,8 @@ class S3RGWStorageDriver(S3StorageDriver): class S3RGWOutscaleStorageDriver(S3RGWStorageDriver): + name = 'RGW Outscale' + website = 'https://en.outscale.com/' def __init__(self, key, secret=None, secure=True, host=None, port=None, api_version=None, region=S3_RGW_OUTSCALE_DEFAULT_REGION,
