From eddab621094e5da9f9c6bf2ae27a872625c8e135 Mon Sep 17 00:00:00 2001
From: Terry Howe <terrylhowe@gmail.com>
Date: Fri, 21 Feb 2014 17:22:26 -0700
Subject: [PATCH] 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
---
 openstackclient/volume/client.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/openstackclient/volume/client.py b/openstackclient/volume/client.py
index a53203f1a8..2d82437268 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
     )