Skip to content

Commit

Permalink
Merge pull request #4 from ocadotechnology/avoid-file_cache-importerror
Browse files Browse the repository at this point in the history
refactor: avoid file_cache warning
  • Loading branch information
rubencabrera authored Sep 7, 2018
2 parents c7a46ac + d53b1b3 commit e947047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage-cluster-state
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class GoogleCloudProvider(CloudProvider):
project_name = response.text

credentials = oauth2client.client.GoogleCredentials.get_application_default()
compute = googleapiclient.discovery.build('compute', 'v1', credentials=credentials)
compute = googleapiclient.discovery.build('compute', 'v1', credentials=credentials, cache_discovery=False)

zones = compute.zones().list(project=project_name).execute()
instances = []
Expand Down

0 comments on commit e947047

Please sign in to comment.