summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorAnton Frolov <af9740@att.com>2017-09-25 12:31:24 -0700
committerAnton Frolov <af9740@att.com>2017-09-26 14:31:07 -0700
commitf6f5ce03c5b8a03180db24a02dda5b30f40b4cee (patch)
tree2c5355d1dd26e73a284defa810b63fc2563666e7 /releasenotes
parent953d74b5d65b095428c783f80cc61f2d85909841 (diff)
downloadpython-openstackclient-f6f5ce03c5b8a03180db24a02dda5b30f40b4cee.tar.gz
Optimize getting endpoint list
Currently ListEndpoint.take_action method unconditionally iterates over all endpoints and issue GET /v3/services/<ep.service_id> request for each endpoint. In case of HTTPS keystone endpoint this can take significant amout of time, and it only getting worse in case of multiple regions. This commit change this logic to making just two GET requests: first it gets endpoint list, then it gets service list, searching service in the list instead of issuing GET /v3/services/<id> request. Change-Id: I22b61c0b45b0205a2f5a4608c2473cb7814fe3cf Closes-Bug: 1719413
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/bug-1719413-0401d05c91cc9094.yaml8
1 files changed, 8 insertions, 0 deletions
diff --git a/releasenotes/notes/bug-1719413-0401d05c91cc9094.yaml b/releasenotes/notes/bug-1719413-0401d05c91cc9094.yaml
new file mode 100644
index 00000000..784d19ec
--- /dev/null
+++ b/releasenotes/notes/bug-1719413-0401d05c91cc9094.yaml
@@ -0,0 +1,8 @@
+---
+fixes:
+ - |
+ Fix an issue with ``endpoint list`` working slow because it is issuing one GET
+ request to /v3/services/<id> Keystone API for each endpoint. In case of HTTPS
+ keystone endpoint and multiple regions it can take significant amount of time.
+ [Bug `1719413 <https://bugs.launchpad.net/python-openstackclient/+bug/1719413>`_]
+