Add more availability regions and implement default VPC (#773)
Fix filter name for availability zone Fix bug assuming dict keys are ordered Fix tests Fix tests Fix bug
This commit is contained in:
parent
231d3cadcb
commit
02324ad708
13 changed files with 218 additions and 142 deletions
|
|
@ -19,6 +19,7 @@ from .exceptions import (
|
|||
)
|
||||
|
||||
|
||||
|
||||
class FakeHealthCheck(object):
|
||||
def __init__(self, timeout, healthy_threshold, unhealthy_threshold,
|
||||
interval, target):
|
||||
|
|
@ -337,5 +338,5 @@ class ELBBackend(BaseBackend):
|
|||
|
||||
|
||||
elb_backends = {}
|
||||
for region in boto.ec2.elb.regions():
|
||||
elb_backends[region.name] = ELBBackend(region.name)
|
||||
for region in ec2_backends.keys():
|
||||
elb_backends[region] = ELBBackend(region)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue