Earlier  
Posted Nick Remark
#openstack-sdks - 2017-05-11
18:16:28 openstackgerrit Robert van Leeuwen proposed openstack/python-openstackclient master: Fixes osc port set allowed-address for ports without previous set allowed address https://review.openstack.org/461364
19:18:36 openstackgerrit Merged openstack/python-openstackclient master: Ignore more exceptions in quota list https://review.openstack.org/463996
#openstack-sdks - 2017-05-12
01:20:40 openstackgerrit Monty Taylor proposed openstack/api-wg master: Add support for historical service type aliases https://review.openstack.org/460654
01:20:41 openstackgerrit Monty Taylor proposed openstack/api-wg master: Change the version format to be ISO format https://review.openstack.org/462988
01:20:41 openstackgerrit Monty Taylor proposed openstack/api-wg master: Add document describing consuming version discovery https://review.openstack.org/459405
01:20:42 openstackgerrit Monty Taylor proposed openstack/api-wg master: Describe the publication of service-types-authority data https://review.openstack.org/462815
01:20:42 openstackgerrit Monty Taylor proposed openstack/api-wg master: Add guideline about consuming endpoints from catalog https://review.openstack.org/462814
12:02:10 openstackgerrit M V P Nitesh proposed openstack/python-openstackclient master: Added 'openstack image set --visibility' https://review.openstack.org/464182
17:06:12 openstackgerrit Monty Taylor proposed openstack/os-client-config master: Add helper method to fetch service catalog https://review.openstack.org/464238
17:06:14 openstackgerrit Monty Taylor proposed openstack/os-client-config master: Add ironicclient to constructors list https://review.openstack.org/464239
#openstack-sdks - 2017-05-13
08:35:02 openstackgerrit Jordan Pittier proposed openstack/os-client-config master: Revert "Use interface not endpoint_type for keystoneclient" https://review.openstack.org/462144
13:57:35 openstackgerrit Monty Taylor proposed openstack/os-client-config master: Revert "Revert "Use interface not endpoint_type for keystoneclient"" https://review.openstack.org/464299
#openstack-sdks - 2017-05-14
07:30:30 reedip o/
#openstack-sdks - 2017-05-15
08:13:17 openstackgerrit Rodolfo Alonso Hernandez proposed openstack/python-openstackclient master: Add direction field to QoS bandwidth limit. https://review.openstack.org/458056
12:11:47 openstackgerrit M V P Nitesh proposed openstack/python-openstackclient master: Added 'openstack image set --visibility' https://review.openstack.org/464182
13:22:15 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in network commands https://review.openstack.org/462170
13:22:16 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in identity commands https://review.openstack.org/464637
13:22:16 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in image commands https://review.openstack.org/464638
13:22:17 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in object storage commands https://review.openstack.org/464639
13:22:17 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in volume v1 commands https://review.openstack.org/464640
13:22:18 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in volume v2 commands https://review.openstack.org/464641
15:24:26 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in volume v1 commands https://review.openstack.org/464640
15:24:27 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in volume v2 commands https://review.openstack.org/464641
15:24:27 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in identity commands https://review.openstack.org/464637
15:24:28 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in image commands https://review.openstack.org/464638
15:24:28 openstackgerrit Akihiro Motoki proposed openstack/python-openstackclient master: Use cliff formattable columns in object storage commands https://review.openstack.org/464639
16:16:42 openstackgerrit David Rabel proposed openstack/python-openstackclient master: Use _get_token_resource in role assignment list https://review.openstack.org/464684
19:24:23 cfriesen Hi, just wondering whether openstackclient would be susceptible to this bug? https://bugs.launchpad.net/python-novaclient/+bug/1667794
19:24:23 openstack Launchpad bug 1667794 in python-novaclient "assorted novaclient CLI commands treat hostname as pattern" [Undecided,In progress] - Assigned to NidhiMittalHada (nidhimittal19)
19:38:46 dtroyer cfriesen: looking… at first glance (before I've looked at novaclient directly) I would suspect it is as the description in the bug implies it is the API that returns the multiple matches and novaclient just shows them all.
19:41:40 cfriesen the issue is that the novaclient is calling the /os-hypervisors/{hypervisor_hostname_pattern}/search API without realizing that it returns a substring match rather than an exact match.
19:41:58 cfriesen line 58 at openstackclient/compute/v2/hypervisor.py looks a bit suspicious
19:43:16 cfriesen dtroyer: ^ (just adding your name in case you're off doing something else)
19:43:44 dtroyer except in that case we do expect to get a list back
19:44:45 dtroyer and looking at novaclient do_host_servers_migrate() it also expects to get a list back
19:45:56 dtroyer This feels a bit like a case of expectations that are not clearly set by docs not matching assumptions made by users
19:47:06 dtroyer OSC's help uses 'substring' but I'll admit it could be clearer on what is happening there
19:47:29 dtroyer —matching for an option name should be a clue too
19:48:11 dtroyer in novaclient's _do_hypervisor_list() it is also expecting a list to be returned
19:48:34 dtroyer and it looks like OSC stole that —matching option name from there too
19:58:21 cfriesen yeah, for the hypervisor-list case it makes sense, and openstackclient doesn't do the problematic ones like "nova evacuate"
19:58:53 cfriesen oops, I meant "nova host-evacuate"
20:00:35 cfriesen dtroyer: so it looks like it's still an issue in novaclient but not in openstackclient. (incidentally is the expectation for osc that the user would implement a script or something to do the equivalent of "nova host-evacuate"?
20:01:42 dtroyer I don't think I had an explicit reason for not doing host-evacuate, possibly that I just never got around to it
20:03:25 cfriesen incidentally, I opened up https://bugs.launchpad.net/python-openstackclient/+bug/1690902 while digging around for this issue. I think nova.csv isn't quite right in the "host-meta" case.
20:03:25 openstack Launchpad bug 1690902 in python-openstackclient "doc/source/data/nova.csv is inaccurate for host-meta" [Undecided,New]
#openstack-sdks - 2017-05-16
02:08:19 openstackgerrit Merged openstack/keystoneauth master: Updated from global requirements https://review.openstack.org/464392
02:30:22 chenyb4 med_, please help me review https://review.openstack.org/#/c/462818/ this patch, thaks
02:31:15 openstackgerrit Merged openstack/keystoneauth master: Fix V3ADFSPassword retrieval of scoped token https://review.openstack.org/463212
02:46:45 openstackgerrit Takashi NATSUME proposed openstack/python-openstackclient master: List/show all server migration types https://review.openstack.org/450119
03:14:32 chenyb4 Qiming, please help me review https://review.openstack.org/#/c/462818/ this patch about 'senlin service list', thaks
05:13:20 Qiming chenyb4, done.
05:40:53 openstackgerrit Divya K Konoor proposed openstack/keystoneauth master: Re-use token passed in for v3 Token https://review.openstack.org/464934
08:36:52 LuigiOpenstack Hi..is this the right IRC for development practice of Openstack and Luigi workflows?
08:45:09 LuigiOpenstack anybody has an idea of how to leverage luigi with Openstack ?
09:48:20 openstackgerrit Divya K Konoor proposed openstack/keystoneauth master: Re-use token passed in for v3 Token https://review.openstack.org/464934
12:48:20 LuigiOpenstack Can anyone assist me with Python code ?
13:49:07 mordred LuigiOpenstack: hi! I'm not sure what a luigi is. this is the right channel to discuss OpenStack SDKs though
14:41:20 edleafe mordred: it's a module to handle plumbing a series of tasks together. Mario Bros. reference
14:48:19 elmiko edleafe: lol
14:48:39 elmiko or were you referring to the actual luigi package
14:49:20 cdent elmiko: how doing after two solid weeks of conferencing?
14:49:34 elmiko cdent: almost fully recovered =)
14:49:43 elmiko finishing the last of my expense reports now lol
14:50:32 cdent I got home yesterday around 11am and just want to sleep
14:50:41 elmiko wow
14:50:55 elmiko hope you're feeling rested now =)
14:53:19 edleafe elmiko: both
14:53:40 edleafe cdent: go to sleep.
14:54:06 edleafe cdent: elmiko: btw, I'll be in Portland on Thursday for the start of PyCon, so I won't be at the meeting
14:54:14 cdent i slept most of yesterday, but it hasn't helped yet
15:00:49 elmiko edleafe: ack, also enjoy pycon! =)
15:03:13 edleafe elmiko: oh, I will!
15:03:58 cdent edleafe: make sure you come back with lots of ideas to change everything
15:04:28 edleafe cdent: yeah, that always goes over well in this community.
15:04:31 edleafe :)
15:04:41 cdent exactly why it is critical
15:05:33 elmiko re-write all services in ruby after visiting pycon? XD
15:07:11 edleafe elmiko: bite your tongue!
15:07:49 openstackgerrit Blake Covarrubias proposed openstack/keystoneauth master: Allow setting EndpointReference in ADFSPassword https://review.openstack.org/463432
15:38:43 mordred edleafe: somehow last week - several sessions ended up with the outcome "mordred will write a spec" ...
15:38:50 mordred edleafe: so, youknow - sorry in advance
15:39:22 mordred edleafe, cdent: speaking of - dhellmann mentioned someting in one of the sessions that I think bears thinking about deeply and making a plan for
15:40:25 mordred with some of the new things we're writing up - we're winding up with 3 audiences for some of these API related specs- OpenStack Developers writing API services, Deployers registering things in such a way that affects API consumers, and API Consumers using the API services the OpenSTack Developers have written
15:41:27 mordred so I _think_ I understood that dhellmann suggested we maybe make three different outputs that we publish - so we can point deployers at the info that's relevant to them without them needing to read about implementation internals or whatnot
15:41:30 mordred or - something similar
15:42:42 edleafe mordred: that sort of meshes with the feeling I had reviewing your discovery docs (besides the dizziness)
15:42:57 mordred the dizziness means it's working
15:43:04 mordred soon I will have the mind control overyou!
15:43:05 edleafe mordred: that these aren't API guidelines, but more like deployment guidelines
15:43:06 mordred wait
15:43:10 mordred sssh. I didnt' say that
15:43:24 edleafe or something like that
15:43:38 mordred edleafe: exactly. I mean - they're API guidelines in as much as we want the API to behave in a way, and the deployers have to participate on a few topics
15:43:39 edleafe I didn't hear that. I hear only what the master tells me to hear
15:43:44 mordred edleafe: :)
15:44:31 edleafe I think of these guidelines as helping the OpenStack developers make good choices when creating APIs
15:44:46 edleafe These seem... different
15:45:32 mordred do you think they seem different enough to put into a separate source repo? my original thought was "no" - since the corpus is about OpenStack REST APIs ...
15:45:49 mordred but I am more than happy to agree with whatever opinions y'all have on that topic

Earlier   Later