Skip to content

Commit

Permalink
Removing cloud_type attribute: use PROVIDER_ID instead
Browse files Browse the repository at this point in the history
  • Loading branch information
machristie committed Aug 31, 2017
1 parent 3bc138d commit 81dfc90
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion cloudbridge/cloud/providers/aws/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class AWSCloudProvider(BaseCloudProvider):

def __init__(self, config):
super(AWSCloudProvider, self).__init__(config)
self.cloud_type = 'aws'

# Initialize cloud connection fields
self.a_key = self._get_config_value(
Expand Down
1 change: 0 additions & 1 deletion cloudbridge/cloud/providers/openstack/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ class OpenStackCloudProvider(BaseCloudProvider):

def __init__(self, config):
super(OpenStackCloudProvider, self).__init__(config)
self.cloud_type = 'openstack'

# Initialize cloud connection fields
self.username = self._get_config_value(
Expand Down

0 comments on commit 81dfc90

Please sign in to comment.