diff options
| author | Terry Howe <terrylhowe@gmail.com> | 2014-02-21 17:22:26 -0700 |
|---|---|---|
| committer | Terry Howe <terrylhowe@gmail.com> | 2014-02-21 17:22:26 -0700 |
| commit | eddab621094e5da9f9c6bf2ae27a872625c8e135 (patch) | |
| tree | fde83ced8420a74e79bd08310f80bdfdbbb537f6 /openstackclient/volume | |
| parent | 8b494f08b2d60b487b37de6603349db66496b955 (diff) | |
| download | python-openstackclient-eddab621094e5da9f9c6bf2ae27a872625c8e135.tar.gz | |
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
Diffstat (limited to 'openstackclient/volume')
| -rw-r--r-- | openstackclient/volume/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openstackclient/volume/client.py b/openstackclient/volume/client.py index a53203f1..2d824372 100644 --- a/openstackclient/volume/client.py +++ b/openstackclient/volume/client.py @@ -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 ) |
