Fix volume commands with multiple regions

The region_name was not passed into the the client causing volume
commands to fail if there were multiple regions.

Change-Id: I066dbbc4852f412e017daeeb16a3f186d3f91d2f
Closes-Bug: #1241177
This commit is contained in:
Terry Howe 2014-02-21 17:22:26 -07:00
parent 8b494f08b2
commit eddab62109
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ def make_client(instance):
auth_url=instance._auth_url,
cacert=instance._cacert,
insecure=instance._insecure,
region_name=instance._region_name,
http_log_debug=http_log_debug
)