diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2013-07-29 11:11:11 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2013-07-31 10:07:50 -0500 |
| commit | 0aa3c206a38b681e106ca8bfd82cab27cd7e1861 (patch) | |
| tree | 90d23ca81ef61bbdf4b0e0deaa5d3002575573a9 /openstackclient/compute | |
| parent | 9ec1cf385ee1434ebdb13a9de2f35024925ff50f (diff) | |
| download | python-openstackclient-0aa3c206a38b681e106ca8bfd82cab27cd7e1861.tar.gz | |
Remove tenant round 1 - global options
Change the global auth options to use 'project', leave the original
tenant options in place but silent for compatability with the existing
project CLI auth options. This is the only compatibility for tenant
usage in this changeover.
Change-Id: I3cce6e552f18822cc9f445ec5f301b0f5d9003f8
Diffstat (limited to 'openstackclient/compute')
| -rw-r--r-- | openstackclient/compute/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/compute/client.py b/openstackclient/compute/client.py index f7ebfe3e..9bd40a4f 100644 --- a/openstackclient/compute/client.py +++ b/openstackclient/compute/client.py @@ -36,7 +36,7 @@ def make_client(instance): client = compute_client( username=instance._username, api_key=instance._password, - project_id=instance._tenant_name, + project_id=instance._project_name, auth_url=instance._auth_url, # FIXME(dhellmann): add constructor argument for this insecure=False, |
