summaryrefslogtreecommitdiff
path: root/keystoneclient/base.py
diff options
context:
space:
mode:
authorBoris Bobrov <bbobrov@mirantis.com>2016-11-10 17:56:30 +0300
committerBoris Bobrov <bbobrov@mirantis.com>2016-11-10 17:57:47 +0300
commit0bfd6251b674c998680ee0018fc95f47e1d26fe6 (patch)
tree083abe1cdaa603c9c7f71391bae2bd344d018a2e /keystoneclient/base.py
parent228d9b7810fa2ecdf64c25f57f08e43608f15f93 (diff)
downloadpython-keystoneclient-0bfd6251b674c998680ee0018fc95f47e1d26fe6.tar.gz
Do not add last_request_id
It is untested and doesn't work for a while. It also causes a failure when the method is used by other client or by keystoneclient itself. Change-Id: Icdd53936a107933e275acd43b5ebe94b8d04bc4b Closes-Bug: 1637530
Diffstat (limited to 'keystoneclient/base.py')
-rw-r--r--keystoneclient/base.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/keystoneclient/base.py b/keystoneclient/base.py
index f18c4a7..4e393c6 100644
--- a/keystoneclient/base.py
+++ b/keystoneclient/base.py
@@ -519,8 +519,6 @@ class Resource(object):
new = self.manager.get(self.id)
if new:
self._add_details(new._info)
- self._add_details(
- {'x_request_id': self.manager.client.last_request_id})
def __eq__(self, other):
"""Define equality for resources."""