Earlier  
Posted Nick Remark
#openstack-sdks - 2018-06-03
20:55:19 openstackgerrit Merged openstack/os-api-ref master: Raise warning if top-level value is not a dict https://review.openstack.org/563178
#openstack-sdks - 2018-06-04
15:31:53 vadim Using novaclient or os_client_config I can filter compute servises like http://paste.openstack.org/show/722663/ Can I filter compute.services() using openstacksdk?
20:09:22 openstackgerrit Lance Bragstad proposed openstack/python-openstackclient master: Add system role functionality https://review.openstack.org/524416
#openstack-sdks - 2018-06-05
00:08:28 openstackgerrit Merged openstack/openstacksdk master: Add ansible functional tests on stable-2.6 https://review.openstack.org/571240
01:27:19 openstackgerrit wangxiyuan proposed openstack/python-openstackclient master: [WIP] Add unified limit CLIs https://review.openstack.org/572238
02:11:24 openstackgerrit chenyb4 proposed openstack/openstacksdk master: Add compute server migrate support host parameter https://review.openstack.org/572240
13:08:55 openstackgerrit Chuck Short proposed openstack/osc-lib master: Switch to using stestr https://review.openstack.org/572380
22:12:43 cdent elmiko, dtantsur|afk : neither edleafe nor I are likely to be available on thursday for meeting. Worth doing or wanna skip?
22:19:26 elmiko cdent: i will be around, but i'm fine with cancelling this week. as a heads up, i will be ok next week.
22:19:35 elmiko s/ok/out/
22:19:57 cdent please be ok next week too
22:20:02 cdent being ok is good
22:20:44 cdent unless you don't feel like it, maybe run it and see who shows up?
22:21:01 cdent I may be on a train by then (travelling home on thursday), so might be able to join
23:31:34 elmiko cdent: ok, we can just wing it. no worries
23:31:53 elmiko and i will definitely be ok as well, i will be on pto in bavaria =D
23:35:23 cdent nice
#openstack-sdks - 2018-06-06
03:53:49 openstackgerrit tianhui proposed openstack/python-openstackclient master: Compute: Add tags support for server https://review.openstack.org/569386
03:56:01 openstackgerrit tianhui proposed openstack/python-openstackclient master: Compute: Add tags support for server https://review.openstack.org/569386
06:22:36 openstackgerrit chenge proposed openstack/python-openstackclient master: Replace Chinese quotes to English quotes https://review.openstack.org/572679
08:21:16 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: Repair evacuate and migrate https://review.openstack.org/572693
09:56:58 openstackgerrit Harald Jensås proposed openstack/python-openstackclient master: Allow setting network-segment on subnet update https://review.openstack.org/523974
13:40:00 openstackgerrit Chen proposed openstack/python-openstackclient master: Fix a tyo https://review.openstack.org/572771
14:44:15 openstackgerrit Jens Harbott (frickler) proposed openstack-infra/shade master: WIP: Test job based on devstack-new-neutron https://review.openstack.org/552459
18:01:23 mordred dtantsur: I like https://review.openstack.org/#/c/570934 - but just as a quick fyi, we will still need the retry logic where it sits in sdk so that client-side rate-limiting works proparly
18:01:47 dtantsur mordred: hmmm
18:02:02 dtantsur cannot we do this rate limiting in Session as well?
18:02:17 dtantsur it feels more like a property of the HTTP client implementation rather than something specific to the SDK..
18:02:25 mordred dtantsur: we can - but it's a much larger thing that kmalloc and I have each failed at doing at least once
18:02:26 dtantsur and I can imagine not only openstacksdk using it
18:02:53 mordred dtantsur: I still think we should do it - just wanted to warn we wouldn't be able to immediately make use of the ksa patch in sdk until we do
18:03:01 dtantsur mordred: do we have this rate-limiting now? it seems to me that at least baremetal requests just go through..
18:04:16 mordred dtantsur: well... we have support for it, but the class that implements it is currently sitting in nodepool. I've been planning on moving the nodepool rate-limiting taskmanager into the sdk tree so that the whole picture is present (this plays in to the caching story too)
18:04:44 mordred dtantsur: so - it's a thing we support, but you woulnd't know it by looking at the code that's there - which needs to be fixed
18:04:56 dtantsur much complexity not wow
18:05:20 dtantsur I guess "just switch from ironicclient to openstacksdk" is not as easy as it seemed initially :)
18:05:36 mordred dtantsur: sure it is :)
18:06:02 mordred dtantsur: http://git.openstack.org/cgit/openstack-infra/nodepool/tree/nodepool/task_manager.py#n65 is the TaskManager that needs to be added to the openstacksdk tree - nodepool currently passes it in to the sdk connection constructor
18:06:05 dtantsur I wonder if it's a problem for other services, but ironic better has retries
18:06:08 mordred everyone else gets the direct-action taskmanager
18:06:26 dtantsur aha, taskmanagers is something I haven't figured out yet, to be honest
18:07:04 mordred you can mostly ignore them - until this - the one that's on by default just executes the calls when you make them
18:09:42 dtantsur mordred: do these work only in the former shade bits or in the other half as well?
18:09:51 dtantsur since connection.baremetal things seem to just use the session
18:09:59 dtantsur (unless I'm completely clueless, which is not unlikely)
18:10:00 mordred the other half - the way it's connected through is that it happens on the adapter calls
18:10:46 mordred dtantsur: this next thing I'm going to say will make you table flip - but the sessions laying around are all actually adapters - we need a gloal search-and-replace
18:11:37 mordred but - the Adapter created for each service by the sdk puts submits every external rest call into the taskmanager (which by default just executes it right then) - so if you did use a different taskmanager it would apply to any calls made on the adapter
18:12:05 mordred :)
18:12:13 dtantsur okay, so MAAAGIIIC happens, and it just works somewhere inside, right?
18:12:19 mordred yup
18:13:12 mordred ah - we have generalized support for retrying on keystoneauth1.exceptions.RetriableConnectionFailure
18:13:20 mordred but only on that one
18:13:29 mordred I like your approach in ksa better :)
18:13:58 dtantsur :)
18:29:51 dtantsur okay, I'll think about all this in the morning.. ironic really needs retries on 503 and 409 though. just not sure how to play nicely with rate limiting.
18:33:51 kmalloc ratelimiting is ... hard(tm)
19:27:26 openstackgerrit Doug Hellmann proposed openstack/cliff master: fix tox python3 overrides https://review.openstack.org/572901
19:27:38 openstackgerrit Doug Hellmann proposed openstack/keystoneauth master: fix tox python3 overrides https://review.openstack.org/572906
19:27:57 openstackgerrit Doug Hellmann proposed openstack/openstacksdk master: fix tox python3 overrides https://review.openstack.org/572913
19:28:02 openstackgerrit Doug Hellmann proposed openstack/osc-lib master: fix tox python3 overrides https://review.openstack.org/572915
19:28:04 openstackgerrit Doug Hellmann proposed openstack/os-client-config master: fix tox python3 overrides https://review.openstack.org/572916
19:28:29 openstackgerrit Doug Hellmann proposed openstack-infra/requestsexceptions master: fix tox python3 overrides https://review.openstack.org/572926
19:28:34 openstackgerrit Doug Hellmann proposed openstack-infra/shade master: fix tox python3 overrides https://review.openstack.org/572928
19:31:41 Shrews dhellmann: i left a comment on 572928
19:31:51 Shrews i'm not sure that will work, but we'll see
19:35:25 dhellmann Shrews : yeah, I responded on the patch, but this was all auto-generated (I guess I should have included that in the commit message)
19:35:30 dhellmann I'll fix up anything that fails hard
19:58:46 openstackgerrit Merged openstack/keystoneauth master: Add optional support for retrying certain HTTP codes https://review.openstack.org/570934
21:22:23 edleafe elmiko: cdent: dtantsur|afk: As it turns out, I should be available for the API-SIG meeting tomorrow
#openstack-sdks - 2018-06-07
00:16:07 openstackgerrit Merged openstack/python-openstackclient master: Allow setting network-segment on subnet update https://review.openstack.org/523974
07:15:07 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: commit ddd5f58d5eda742e908dd505de80654348c359ed Author: Popescu Catalin Date: Mon Jun 07 10:16:10 2018 +0300 https://review.openstack.org/572693
07:17:17 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: commit ddd5f58d5eda742e908dd505de80654348c359ed Author: Popescu Catalin Date: Mon Jun 07 10:16:10 2018 +0300 https://review.openstack.org/572693
07:38:57 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: commit ddd5f58d5eda742e908dd505de80654348c359ed Author: Popescu Catalin Date: Mon Jun 07 10:16:10 2018 +0300 https://review.openstack.org/573117
08:00:21 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: commit 7b1e758f3870ad62c2478250daa7cf4d00614689 Author: Popescu Catalin Date: Mon Jun 07 11:00:10 2018 +0300 https://review.openstack.org/573122
08:19:17 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: commit 7b1e758f3870ad62c2478250daa7cf4d00614689 Author: Popescu Catalin Date: Mon Jun 07 11:20:10 2018 +0300 https://review.openstack.org/573126
08:20:01 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: commit 7b1e758f3870ad62c2478250daa7cf4d00614689 Author: Popescu Catalin Date: Mon Jun 07 11:20:10 2018 +0300 https://review.openstack.org/573126
08:25:26 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: commit 7b1e758f3870ad62c2478250daa7cf4d00614689 Author: Popescu Catalin Date: Mon Jun 07 11:24:10 2018 +0300 https://review.openstack.org/573127
08:47:13 openstackgerrit Catalin Popescu proposed openstack/openstacksdk master: Modify live migrate in order to work https://review.openstack.org/573134
09:05:14 openstackgerrit Chen proposed openstack/python-openstackclient master: Fix urls in README.rst https://review.openstack.org/573140
10:19:17 openstackgerrit Jens Harbott (frickler) proposed openstack-infra/shade master: WIP: Test job based on devstack-new-neutron https://review.openstack.org/552459
10:58:09 openstackgerrit Merged openstack/cliff master: fix tox python3 overrides https://review.openstack.org/572901
12:34:23 openstackgerrit Sami Makki proposed openstack/python-openstackclient master: Fix the `role implies list` command. https://review.openstack.org/557359
12:35:37 openstackgerrit Sami Makki proposed openstack/python-openstackclient master: Fix the `role implies list` command. https://review.openstack.org/557359
14:07:24 openstackgerrit Merged openstack-infra/shade master: fix tox python3 overrides https://review.openstack.org/572928
14:16:28 openstackgerrit Sami Makki proposed openstack/python-openstackclient master: Fix the `role implies list` command. https://review.openstack.org/557359
14:55:01 openstackgerrit Chen proposed openstack/python-openstackclient master: Fix urls in README.rst https://review.openstack.org/573140
15:58:58 openstackgerrit Lance Bragstad proposed openstack/python-openstackclient master: Update role document to include system parameter https://review.openstack.org/573303
16:30:11 elmiko edleafe cdent dtantsur ready for review, https://etherpad.openstack.org/p/api-sig-newsletter
16:31:43 edleafe elmiko: lgtm with the minor changes
16:31:57 elmiko thanks as always for the helping hand edleafe =)
16:36:40 elmiko sent
17:54:01 openstackgerrit Merged openstack/os-client-config master: fix tox python3 overrides https://review.openstack.org/572916
23:44:38 openstackgerrit Tim Burke proposed openstack/python-openstackclient master: Before writing object data to stdout, re-open it in binary mode https://review.openstack.org/573465
#openstack-sdks - 2018-06-08
07:57:07 openstackgerrit Sami Makki proposed openstack/python-openstackclient master: Fix the `role implies list` command. https://review.openstack.org/557359
09:23:15 viktor_t Hi, what is the correction policy for python-openstackclient? Is there any chance to get https://bugs.launchpad.net/python-openstackclient/+bug/1747862 corrected into 3.14.x (for queens)?
09:23:16 openstack Launchpad bug 1747862 in python-openstackclient "encoding error when doing console log show" [Undecided,Fix released]
09:38:21 openstackgerrit Yang Youseok proposed openstack/openstacksdk master: Support port binding extended attributes for querying port https://review.openstack.org/573645
09:41:29 Luzi victor_t: Is there anyone active in osc? I tried to propose something on the mailinglist, but got no answer.
09:42:47 viktor_t Luzi: no idea...

Earlier   Later