Skip to content

Commit

Permalink
Fix GCP zone_name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang committed Mar 13, 2019
1 parent c429294 commit 10cd058
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cloudbridge/providers/gcp/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,12 @@ def __init__(self, config):
self._networking = GCPNetworkingService(self)
self._storage = GCPStorageService(self)

# Override base class implementation because it will cause
# an infinite loop
@property
def zone_name(self):
return self._zone_name

@property
def compute(self):
return self._compute
Expand Down

0 comments on commit 10cd058

Please sign in to comment.