Support multiple availability zones in AWS (fix #2177) (#2254)

* AWS: support multiple availability zones (fix #2177)

* Bugfix: [] rather than ()

* Test config

* Test config tweaks

* Remove test config

* Formatting fixes

* Update YAML config
This commit is contained in:
Adam Gleave
2018-06-19 20:22:07 -07:00
committed by Eric Liang
parent 46cc51ce0c
commit 30684446a6
4 changed files with 33 additions and 27 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ import os
def env_integer(key, default):
if key in os.environ:
return int(os.environ(key))
return int(os.environ[key])
return default