diff options
| author | Zuul <zuul@review.openstack.org> | 2017-11-01 07:19:20 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-11-01 07:19:20 +0000 |
| commit | 95ce6ad9b1600046c28a7d46bc37686c70065997 (patch) | |
| tree | 15465ab01030487afc34826f6ba8d8fef8387aee /troveclient | |
| parent | 1d3e516dea5448f2230354d1457f488b34a2bd4d (diff) | |
| parent | 0b79fb0dd45a5c6b5cef5b77ed1006f1c932c593 (diff) | |
| download | python-troveclient-95ce6ad9b1600046c28a7d46bc37686c70065997.tar.gz | |
Merge "Fix trove schedule-list error"
Diffstat (limited to 'troveclient')
| -rw-r--r-- | troveclient/v1/backups.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/troveclient/v1/backups.py b/troveclient/v1/backups.py index 2104931..a50ab29 100644 --- a/troveclient/v1/backups.py +++ b/troveclient/v1/backups.py @@ -119,9 +119,9 @@ class Backups(base.ManagerWithFind): tenant_name = self.api.client.auth._project_name else: auth_url = self.api.client.auth_url - user = self.api.client.username + user = self.api.client.user key = self.api.client.password - tenant_name = self.api.client.tenant + tenant_name = self.api.client.projectid return mistral_client(auth_url=auth_url, username=user, api_key=key, project_name=tenant_name) |
