Merge pull request #8313 from sivel/issue/8250

Make sure to assign pyrax.cloudservers to cs. Fixes #8250
reviewable/pr18780/r1
Michael DeHaan 10 years ago
commit fe7d092f0b

@ -155,7 +155,8 @@ def rax_asg(module, cooldown=300, disk_config=None, files={}, flavor=None,
au = pyrax.autoscale
cnw = pyrax.cloud_networks
if not au or not cnw:
cs = pyrax.cloudservers
if not au or not cnw or not cs:
module.fail_json(msg='Failed to instantiate clients. This '
'typically indicates an invalid region or an '
'incorrectly capitalized region name.')

Loading…
Cancel
Save