jamielennox | dtroyer_zz: i'm v. not happy with those interfaces ^, but i'm not sure how much the OneCloud object should be reading from argparse.Namespace and env | 00:01 |
---|---|---|
jamielennox | i figured i should at least put that up though because i haven't seem to have gotten any new ideas in the last week or so | 00:01 |
*** mnaser has left #openstack-sdks | 00:12 | |
*** reedip has quit IRC | 00:14 | |
*** jamielennox is now known as jamielennox|away | 00:20 | |
*** jamielennox|away is now known as jamielennox | 00:27 | |
*** hoangcx has joined #openstack-sdks | 00:31 | |
*** namnh has joined #openstack-sdks | 00:42 | |
*** dave-mccowan has joined #openstack-sdks | 00:59 | |
*** reedip has joined #openstack-sdks | 01:04 | |
*** huanxuan has joined #openstack-sdks | 01:24 | |
*** amotoki has quit IRC | 01:30 | |
*** annp has joined #openstack-sdks | 01:30 | |
openstackgerrit | huangtianhua proposed openstack/python-openstackclient master: Provide cmd 'image member list' https://review.openstack.org/443588 | 01:40 |
*** salv-orlando has joined #openstack-sdks | 01:41 | |
*** Kevin_Zheng has joined #openstack-sdks | 01:41 | |
*** reedip has quit IRC | 01:42 | |
*** amotoki has joined #openstack-sdks | 01:43 | |
*** salv-orlando has quit IRC | 01:45 | |
Qiming | briancurtin, https://bugs.launchpad.net/python-openstacksdk/+bug/1672238 | 01:49 |
openstack | Launchpad bug 1672238 in OpenStack SDK "The way SDK uses its own version is causing problem for its installation" [Undecided,New] | 01:49 |
*** amotoki has quit IRC | 01:49 | |
*** amotoki has joined #openstack-sdks | 01:55 | |
*** gouthamr has quit IRC | 02:17 | |
*** amotoki has quit IRC | 02:19 | |
*** amotoki has joined #openstack-sdks | 02:29 | |
*** amotoki has quit IRC | 02:30 | |
*** amotoki has joined #openstack-sdks | 02:30 | |
*** reedip has joined #openstack-sdks | 02:42 | |
*** yuvalb has quit IRC | 02:43 | |
*** yuvalb has joined #openstack-sdks | 02:43 | |
*** reedip has quit IRC | 02:48 | |
*** reedip has joined #openstack-sdks | 02:49 | |
openstackgerrit | Reedip proposed openstack/python-openstackclient master: Introduce quota unset command https://review.openstack.org/376311 | 03:05 |
*** dave-mccowan has quit IRC | 03:32 | |
*** bobh has quit IRC | 03:34 | |
*** salv-orlando has joined #openstack-sdks | 03:42 | |
*** salv-orlando has quit IRC | 03:46 | |
*** annp_ has joined #openstack-sdks | 03:50 | |
*** chlong_ has quit IRC | 04:34 | |
*** bobh has joined #openstack-sdks | 04:34 | |
*** gildub_ has joined #openstack-sdks | 04:35 | |
*** markvoelker has quit IRC | 04:35 | |
openstackgerrit | Reedip proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025 | 04:36 |
*** gildub has quit IRC | 04:37 | |
*** bobh has quit IRC | 04:39 | |
*** gdubreui has joined #openstack-sdks | 04:56 | |
*** gildub_ has quit IRC | 04:58 | |
*** yanyanhu has joined #openstack-sdks | 05:13 | |
*** markvoelker has joined #openstack-sdks | 05:36 | |
*** markvoelker has quit IRC | 05:41 | |
*** salv-orlando has joined #openstack-sdks | 05:43 | |
*** salv-orlando has quit IRC | 05:47 | |
*** salv-orlando has joined #openstack-sdks | 06:02 | |
*** bobh has joined #openstack-sdks | 06:36 | |
openstackgerrit | Reedip proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025 | 06:37 |
reedip | amotoki : hi . I checked your comment for https://review.openstack.org/383025 . I think router removes the port which it creates itself when an interface is attached to it, not sure about the port which is assigned to it by user. I guess the code should be the same. | 06:39 |
*** adriant has quit IRC | 06:40 | |
*** bobh has quit IRC | 06:41 | |
*** gildub_ has joined #openstack-sdks | 07:01 | |
*** gdubreui has quit IRC | 07:04 | |
amotoki | reedip: you can check it by the following neutron commands: "neutron port-create", "neutron router-interface-add router1 port=<id>", and then "neutron router-interface-delete" | 07:13 |
amotoki | reedip: I think you don't see the port you created after router-interface-delete | 07:13 |
amotoki | reedip: so I think 'openstack port delete' in addCleanup will fail | 07:14 |
amotoki | reedip: what happens if 'openstack port delete' cleanup fails. are subsequent cleanup called? | 07:15 |
*** salv-orl_ has joined #openstack-sdks | 07:24 | |
*** salv-orlando has quit IRC | 07:26 | |
reedip | amotoki : if port delete fails and does NOT delete the port, subnet delete and network delete will fail | 07:27 |
amotoki | reedip: a case I concern is that a port is deleted successfully by 'router-interface-delete' and the subsequent call of 'port delete' fails | 07:28 |
amotoki | reedip: in this case, subnet delete and network delete should succeed | 07:28 |
reedip | amotoki : Port deletion cleanup function might fail but network delete and subnet delete should succeed . | 07:29 |
amotoki | reedip: so I wonder 'network delete' registered by addCleanup will be called or not. | 07:29 |
amotoki | reedip: if you have 100% confident and other reviewers think the current is okay, I have no more objection. | 07:30 |
reedip | amotoki : :) | 07:30 |
amotoki | reedip: as one who knows neutron behavior, it just sounds tricky to me :) | 07:30 |
reedip | amotoki : Dont you think neutron itself is tricky :) ?? | 07:31 |
reedip | amotoki : this is one of the few patches left for the complete migration. I just wish this completes soon so that we can proceed to other patches and complete migration :) | 07:31 |
amotoki | reedip: so the simple way is drop addCleanup(port delete) :-) | 07:32 |
*** salv-orl_ has quit IRC | 07:33 | |
reedip | amotoki : I checked some comments in other patches. I think we can remove the addCleanup for the port for now ! | 07:33 |
openstackgerrit | Reedip proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025 | 07:33 |
*** gildub_ has quit IRC | 07:46 | |
*** ralonsoh has joined #openstack-sdks | 07:51 | |
*** Cagelin has joined #openstack-sdks | 08:03 | |
*** salv-orlando has joined #openstack-sdks | 08:04 | |
*** ssbarnea has joined #openstack-sdks | 08:09 | |
*** Serlex has joined #openstack-sdks | 08:16 | |
*** rabel has joined #openstack-sdks | 08:17 | |
rabel | hi there | 08:18 |
*** openstackgerrit has quit IRC | 08:18 | |
rabel | is https://bugs.launchpad.net/python-openstackclient/+bug/1612898 still interesting for you? I already wrote a comment in the bug report, because i'd like to work on this issue | 08:18 |
openstack | Launchpad bug 1612898 in python-openstackclient "Separate options for --nic when creating servers" [Medium,Confirmed] - Assigned to Ukesh (ukeshkumar) | 08:18 |
*** openstackgerrit has joined #openstack-sdks | 08:29 | |
openstackgerrit | Reedip proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025 | 08:29 |
reedip | rabel : As there has been no updates in the bug for some time, I think you can take the issue | 08:31 |
openstackgerrit | Rui Chen proposed openstack/osc-lib master: Add formattable column base classes https://review.openstack.org/444760 | 08:35 |
rabel | reedip, ok thanks. i took it. do you think i should wait for answers to my proposal in the bug report or just write a commit and work with the feedback I recieve in the change? | 08:36 |
reedip | rabel : both are good options but I like the Pythonic way ( put a patch and wait for feedback ) :) | 08:37 |
rabel | :) | 08:38 |
*** bobh has joined #openstack-sdks | 08:38 | |
*** bobh has quit IRC | 08:42 | |
*** e0ne has joined #openstack-sdks | 08:43 | |
*** jpich has joined #openstack-sdks | 08:50 | |
openstackgerrit | venkata anil proposed openstack/python-openstackclient master: Allow admin to override distributed router flag https://review.openstack.org/433442 | 08:54 |
openstackgerrit | Reedip proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025 | 09:13 |
*** aarefiev_afk is now known as aarefiev | 09:19 | |
*** gildub_ has joined #openstack-sdks | 09:37 | |
*** e0ne has quit IRC | 09:52 | |
*** gildub_ has quit IRC | 09:57 | |
*** fzdarsky has joined #openstack-sdks | 10:01 | |
openstackgerrit | Reedip proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025 | 10:08 |
*** annp_ has quit IRC | 10:08 | |
*** annp has quit IRC | 10:08 | |
openstackgerrit | Reedip proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025 | 10:08 |
*** e0ne has joined #openstack-sdks | 10:09 | |
*** lifeless has quit IRC | 10:37 | |
*** bobh has joined #openstack-sdks | 10:39 | |
*** ralonsoh_ has joined #openstack-sdks | 10:41 | |
*** markvoelker has joined #openstack-sdks | 10:41 | |
*** bobh has quit IRC | 10:44 | |
*** hoangcx has quit IRC | 10:44 | |
*** ralonsoh has quit IRC | 10:44 | |
*** lifeless has joined #openstack-sdks | 10:45 | |
*** ralonsoh_ is now known as ralonsoh | 10:45 | |
*** markvoelker has quit IRC | 10:46 | |
*** namnh has quit IRC | 10:47 | |
openstackgerrit | Lv Jiawei proposed openstack/python-openstackclient master: Add status filtering options to port list https://review.openstack.org/444810 | 10:56 |
*** cdent has joined #openstack-sdks | 11:01 | |
*** sdague_ has joined #openstack-sdks | 11:16 | |
*** amotoki_ has joined #openstack-sdks | 11:16 | |
*** jkilpatr has joined #openstack-sdks | 11:17 | |
*** amotoki has quit IRC | 11:19 | |
*** jkilpatr has quit IRC | 11:25 | |
*** Cagelin has quit IRC | 11:27 | |
openstackgerrit | Lv Jiawei proposed openstack/python-openstackclient master: Add extra filtering options to qos policy list https://review.openstack.org/401131 | 11:32 |
*** sdague has quit IRC | 11:34 | |
*** sdague_ is now known as sdague | 11:34 | |
*** yanyanhu has quit IRC | 11:36 | |
*** Guest84425 has joined #openstack-sdks | 11:36 | |
*** jkilpatr has joined #openstack-sdks | 11:39 | |
*** reedip has quit IRC | 11:41 | |
*** markvoelker has joined #openstack-sdks | 11:42 | |
*** markvoelker has quit IRC | 11:46 | |
*** erlon has joined #openstack-sdks | 11:51 | |
*** markvoelker has joined #openstack-sdks | 12:16 | |
*** figleaf is now known as edleafe | 12:21 | |
*** DuncanT has joined #openstack-sdks | 12:26 | |
*** salv-orlando has quit IRC | 12:50 | |
sdague | cdent: you about this morning? | 12:55 |
cdent | sdague: yup | 12:55 |
sdague | so, I've been rewriting the microversion blog post for more permanent archival purposes, including trying to get some diagrams in there (though it's not quite what I was hoping for, given the limits of blockdiag) | 12:57 |
sdague | I was curious if you could take a quick looking and comment on whether this was helping or not? | 12:57 |
cdent | yeah, sure | 12:57 |
rabel | when i run tox in python-openstackclient folder without any arguments, i get an invocation error on ostestr. do i have to do something different or is this a bug? | 12:58 |
openstackgerrit | Sean Dague proposed openstack/api-wg master: WIP: microversion architecture archival doc https://review.openstack.org/444892 | 12:59 |
* cdent clicks | 12:59 | |
sdague | cdent: it will probably be most helpful to let it render into html to see it | 12:59 |
* cdent nods | 13:00 | |
* cdent will answer ttx's email about api-wg in the meantime | 13:00 | |
*** Guest84425 has quit IRC | 13:06 | |
*** reedip has joined #openstack-sdks | 13:07 | |
sdague | cdent: http://docs-draft.openstack.org/92/444892/1/check/gate-api-wg-docs-ubuntu-xenial/d706e92//doc/build/html/guidelines/microversions-architecture.html | 13:07 |
edleafe | cdent: totally missed the time for getting the dwindling API-WG numbers discussion on the TC agenda | 13:10 |
cdent | edleafe: looks like the agenda is already pretty full anyway | 13:10 |
edleafe | yup | 13:10 |
edleafe | well, there's no time pressure, other than I said I'd do it | 13:10 |
edleafe | if there's time at the end of the meeting I'll mention it | 13:11 |
cdent | edleafe: I'm pretty sure that if you don't get it in this week, HTTP will stop working. | 13:11 |
edleafe | cdent: that was exactly my fear | 13:12 |
* cdent holds gopher in reserve | 13:12 | |
*** salv-orlando has joined #openstack-sdks | 13:15 | |
cdent | sdague: some thoughts: I like the idea of having some visual aids but at least for me these visual aids aren't communicating enough information to me | 13:20 |
cdent | I feel like I'm only able to intrepret them because I already know what's going on | 13:21 |
sdague | yeh... I have an idea of the visuals that would make this understandable | 13:21 |
cdent | I wonder if side by side comparisons of something closer to actual requests might convey more info? | 13:21 |
sdague | however, they exceed the abilities of any of the markup tools | 13:21 |
sdague | so it's all going to be hand svg | 13:22 |
sdague | so, I was trying to throw some things together as stand in to write the text, then go back and redo the diagrams | 13:23 |
cdent | yeah, makes sense | 13:23 |
cdent | another thing: people who do math find A' and A'' to be full of sense, but I'm not sure that's true for everyone | 13:23 |
*** salv-orl_ has joined #openstack-sdks | 13:24 | |
sdague | yeh, that was directly a limitation of blockdiag | 13:24 |
sdague | given that the blocks don't resize to text inside | 13:24 |
sdague | ok, well, I'll go with "this might be useful, harder to evaluate until there are actually better diagrams. These definitely don't cut it" | 13:25 |
* cdent shakes tiny fist at blockdiag | 13:25 | |
cdent | yeah, that's accurate | 13:25 |
cdent | +1 on it existing a proper archived doc | 13:25 |
sdague | yeh, I spent 4 hours in the hotel in boston last week looking into alternatives like graphviz directly, and the uml things | 13:25 |
sdague | as well as looking at the blockdiag source | 13:25 |
cdent | you so know how to party! | 13:26 |
sdague | and non of them can be bent to what I need here | 13:26 |
sdague | heh | 13:26 |
*** salv-orlando has quit IRC | 13:26 | |
cdent | I assume you're committed to an editable-in-tree format? | 13:27 |
cdent | (otherwise png) | 13:27 |
briancurtin | yuvalb: are you Yuval Shalev? | 13:27 |
yuvalb | briancurtin: nope | 13:29 |
sdague | cdent: yeh, svg ideally, though I was having sphinx choke on svg being used directly, which is something I'll have to figure out | 13:31 |
*** huanxuan has quit IRC | 13:42 | |
*** hongbin has joined #openstack-sdks | 13:45 | |
*** gouthamr has joined #openstack-sdks | 13:47 | |
*** salv-orl_ has quit IRC | 13:51 | |
*** amotoki_ has quit IRC | 14:05 | |
*** chlong has joined #openstack-sdks | 14:11 | |
openstackgerrit | David Rabel proposed openstack/python-openstackclient master: Add --network and --port to server create https://review.openstack.org/444924 | 14:20 |
*** bobh has joined #openstack-sdks | 14:23 | |
*** dtroyer_zz has quit IRC | 14:33 | |
*** dtroyer has joined #openstack-sdks | 14:33 | |
*** dave-mccowan has joined #openstack-sdks | 14:35 | |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk master: Shift some compute attributes within request body https://review.openstack.org/444933 | 14:40 |
openstackgerrit | Jose Castro Leon proposed openstack/python-openstackclient master: Closes-Bug: 1672396 https://review.openstack.org/444934 | 14:50 |
openstack | bug 1672396 in python-openstackclient "Missing flavor information in server list" [Undecided,New] https://launchpad.net/bugs/1672396 | 14:50 |
openstackgerrit | Jose Castro Leon proposed openstack/python-openstackclient master: Adds missing flavor information in the server list long command https://review.openstack.org/444934 | 14:52 |
*** john-davidge has joined #openstack-sdks | 15:01 | |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk master: Shift some compute attributes within request body https://review.openstack.org/444933 | 15:10 |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk master: Add image download example https://review.openstack.org/444940 | 15:15 |
*** amotoki has joined #openstack-sdks | 15:28 | |
openstackgerrit | Dean Troyer proposed openstack/cliff master: Fix broken test with cmd2 0.7.0 https://review.openstack.org/444951 | 15:34 |
openstackgerrit | Jose Castro Leon proposed openstack/python-openstackclient master: Adds missing flavor information in the server list long command https://review.openstack.org/444934 | 15:34 |
openstackgerrit | Nakul Dahiwade proposed openstack/python-openstackclient master: OSC Network Flavor Profile https://review.openstack.org/396783 | 15:35 |
reedip | ankur-gupta-f4 : o/ \o | 15:37 |
*** john-dav_ has joined #openstack-sdks | 15:37 | |
*** john-davidge has quit IRC | 15:37 | |
ankur-gupta-f4 | reedip: good evening | 15:37 |
reedip | its night :) Shifted to Philippines for a month :) | 15:38 |
ankur-gupta-f4 | ooo nice. Im in Colorado for a month. Getting some fresh mountain air | 15:38 |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk master: Shift some compute attributes within request body https://review.openstack.org/444933 | 15:39 |
reedip | and I am getting fresh sea breeze :) | 15:39 |
openstackgerrit | Shashank Kumar Shankar proposed openstack/python-openstackclient master: Introduce Neutron DHCP agent commands to OSC https://review.openstack.org/387611 | 15:42 |
ankur-gupta-f4 | reedip: why Philippines if you don't mind me asking. Business or pleasure? :) | 15:47 |
reedip | Pleasure doing business .... | 15:48 |
ankur-gupta-f4 | thats the dream | 15:48 |
reedip | hehehehe | 15:48 |
reedip | m trying to achieve it | 15:48 |
*** john-dav_ is now known as john-davidge | 16:04 | |
openstackgerrit | Ankur proposed openstack/python-openstacksdk master: Introduce Base for Octavia (load balancing) https://review.openstack.org/428414 | 16:06 |
*** fzdarsky is now known as fzdarsky|afk | 16:07 | |
*** salv-orlando has joined #openstack-sdks | 16:35 | |
openstackgerrit | David Rabel proposed openstack/python-openstackclient master: Add --network and --port to server create https://review.openstack.org/444924 | 16:43 |
*** thingee has quit IRC | 16:45 | |
*** fzdarsky|afk is now known as fzdarsky | 16:45 | |
rabel | can someone help me with the tests? when i'm running py35, i always get "The test run didn't actually run any tests". | 16:49 |
rabel | on master branch btw | 16:49 |
ankur-gupta-f4 | rabel: how are you trying to invoke the tests | 16:49 |
rabel | tox -e py35 | 16:50 |
ankur-gupta-f4 | assuming OSC? | 16:51 |
rabel | yes | 16:51 |
reedip | rabel: do you have py35 in your system ? | 16:51 |
reedip | can you do a where is python3.5 | 16:51 |
reedip | " whereis python3.5 " on your system | 16:51 |
rabel | reedip: python3: /usr/bin/python3 /usr/bin/python3.5m /usr/bin/python3.5-coverage /usr/bin/python3.5-config /usr/bin/python3.5 /usr/bin/python3.5m-config /usr/lib/python3 /usr/lib/python3.5 /etc/python3 /etc/python3.5 /usr/local/lib/python3.5 /usr/include/python3.5m /usr/include/python3.5 /usr/share/python3 /home/rabel/Entwicklung/python-openstackclient/.tox/py35/bin/python3.5 /home/rabel/Entwicklung/python-openstackclient/.tox/py35/bi | 16:52 |
rabel | n/python3 /usr/share/man/man1/python3.1.gz | 16:52 |
ankur-gupta-f4 | usr/bin/python3.5 /usr/local/lib/python3.5 | 16:52 |
reedip | woah ... ok what is the error which you see when you do "tox -v -e py35 " | 16:53 |
reedip | except "the test didnt run any tests " | 16:53 |
reedip | ankur-gupta-f4 : are you controlling rabel's system :D | 16:53 |
reedip | I mean rabel , can you paste the log excerpt and provide the link to us to analyze the issue? | 16:53 |
rabel | reedip: yes. where do i post it? | 16:54 |
reedip | paste.openstack.org is a site | 16:54 |
rabel | ah, thanks :) | 16:54 |
reedip | another one is https://hastebin.com/ ... found it today | 16:54 |
rabel | reedip, ankur-gupta-f4: http://paste.openstack.org/show/602535/ | 16:56 |
reedip | rabel : do rm -rf .tox | 16:56 |
reedip | in python-openstackclient/ | 16:56 |
reedip | basically what you did was run py27 first | 16:56 |
reedip | and then run py35 | 16:56 |
reedip | rabel wait.... just a minute | 16:57 |
reedip | let me confirm one more thing | 16:57 |
rabel | reedip: it's already running | 16:58 |
reedip | rabel : ok, see this https://bugs.launchpad.net/ironic/+bug/1489059 | 16:58 |
openstack | Launchpad bug 1489059 in Fuel for OpenStack newton ""db type could not be determined" running py34" [Low,In progress] - Assigned to LiuNanke (nanke-liu) | 16:58 |
reedip | well, even if you clear .tox and .testrepository , it helps avoid this error :) | 16:58 |
reedip | I confused .tox and .testrepository ... sorry | 16:59 |
openstackgerrit | Bence Romsics proposed openstack/python-openstackclient master: Make MAC address of port updatable https://review.openstack.org/442543 | 16:59 |
rabel | reedip: ok, i try .testrepository now | 17:00 |
rabel | reedip: ... and it worked :) | 17:00 |
reedip | ;0 | 17:00 |
ankur-gupta-f4 | +1 | 17:01 |
reedip | ok, gotta go now .. | 17:01 |
rabel | thanks | 17:03 |
*** rabel_b1 has joined #openstack-sdks | 17:06 | |
*** chlong has quit IRC | 17:07 | |
*** rabel has quit IRC | 17:09 | |
*** jpich has quit IRC | 17:13 | |
*** openstackgerrit has quit IRC | 17:18 | |
*** e0ne has quit IRC | 17:19 | |
*** gouthamr has quit IRC | 17:21 | |
cdent | edleafe, elmiko did either of you have thoughts on this message http://lists.openstack.org/pipermail/openstack-dev/2017-March/113689.html ? I haven't had a chance to really think about it yet, but figure it deserves a response from one of us | 17:29 |
edleafe | cdent: I think Nova can do something like this, although I'm not sure how far along it is. sdague and alex_xu would be better resources | 17:34 |
* sdague reads email | 17:36 | |
sdague | I'm... kind of confused what is being asked for | 17:36 |
cdent | sdague: yes, me too, but I was struggling to tease out enough to even start asking questions | 17:37 |
cdent | I'll give it a shot a bit later in the day. | 17:37 |
sdague | yeh, I feel like this might be the "I wish this was wsdl" comment | 17:37 |
cdent | I just wanted to see if made sense to anyone. Since it appears not to, then I'll respond with a "huh" and some clarifying questions | 17:38 |
*** gouthamr has joined #openstack-sdks | 17:38 | |
edleafe | sdague: if I understand correctly, they want a way for every API to generate its schema, including available resources, body schemas, etc | 17:38 |
sdague | edleafe: then what? | 17:38 |
edleafe | sdague: yeh, pretty much wsdl | 17:38 |
sdague | a schema is just an interchange format | 17:38 |
cdent | sdague: then profit, of course | 17:38 |
sdague | so until/unless you have an equally complicated set of tools consuming it | 17:38 |
sdague | it does nothing but makes you look important | 17:39 |
edleafe | sdague: exactly. WSDL lives! | 17:39 |
sdague | so, it's fine if people would rather that the OpenStack API was WSDL, or gRPC | 17:39 |
sdague | but, it's not | 17:39 |
sdague | and trying to bolt that into the existing REST stuff is just going to be being completely custom ecosystem with no tooling | 17:40 |
sdague | which was actually the same issue around OpenAPI / Swagger. It's all well and good if you stay 100% inside the ecosystem tooling, but the moment you diverge, all you've done is signed up for writing a schema -> code compiler in 10 different languages | 17:41 |
sdague | and, given that we don't even have current 80% client API implementations in that many languages, building a compiler for them all seems... unlikely | 17:41 |
sdague | anyway... /rant | 17:42 |
*** salv-orlando has quit IRC | 17:43 | |
*** salv-orlando has joined #openstack-sdks | 17:43 | |
cdent | edleafe: if you're done with that gold star I gave you earlier, you might give it to sdague now | 17:43 |
cdent | but only if you are done | 17:43 |
edleafe | never! | 17:44 |
cdent | fair | 17:45 |
-openstackstatus- NOTICE: restarting gerrit to address performance problems | 17:45 | |
*** rabel_b1 has quit IRC | 17:51 | |
*** jamielennox is now known as jamielennox|away | 17:53 | |
*** ralonsoh has quit IRC | 18:00 | |
*** aarefiev is now known as aarefiev_afk | 18:01 | |
*** openstackgerrit has joined #openstack-sdks | 18:01 | |
openstackgerrit | Sean Dague proposed openstack/api-wg master: WIP: microversion architecture archival doc https://review.openstack.org/444892 | 18:01 |
*** e0ne has joined #openstack-sdks | 18:09 | |
*** annegentle has joined #openstack-sdks | 18:29 | |
openstackgerrit | Clark Boylan proposed openstack/os-client-config master: OVH supports qcow2 https://review.openstack.org/445042 | 18:37 |
openstackgerrit | Dean Troyer proposed openstack/cliff master: Fix broken test with cmd2 0.7.0 https://review.openstack.org/444951 | 18:39 |
dtroyer | stevemar: ^^^ will unblock cliff's queue if you have a minute | 18:39 |
*** jkilpatr has quit IRC | 18:42 | |
*** jkilpatr has joined #openstack-sdks | 18:43 | |
*** john-davidge has quit IRC | 18:55 | |
*** salv-orl_ has joined #openstack-sdks | 19:24 | |
*** salv-orlando has quit IRC | 19:27 | |
*** salv-orl_ has quit IRC | 19:45 | |
*** jkilpatr has quit IRC | 19:51 | |
*** jkilpatr has joined #openstack-sdks | 19:52 | |
*** john-davidge has joined #openstack-sdks | 19:56 | |
*** john-davidge has quit IRC | 20:01 | |
*** chlong has joined #openstack-sdks | 20:04 | |
*** amotoki has quit IRC | 20:13 | |
*** rabel has joined #openstack-sdks | 20:20 | |
*** rabel_b1 has joined #openstack-sdks | 20:21 | |
*** 07EAAIRVF has joined #openstack-sdks | 20:23 | |
*** rabel has quit IRC | 20:24 | |
*** jamielennox|away is now known as jamielennox | 20:37 | |
openstackgerrit | David Rabel proposed openstack/python-openstackclient master: Add --network and --port to server create https://review.openstack.org/444924 | 20:40 |
*** cdent has quit IRC | 20:47 | |
openstackgerrit | Merged openstack/python-openstacksdk master: Add image download example https://review.openstack.org/444940 | 20:50 |
*** adriant has joined #openstack-sdks | 20:51 | |
*** rabel_b1 has quit IRC | 20:51 | |
*** 07EAAIRVF has quit IRC | 20:52 | |
openstackgerrit | Merged openstack/os-client-config master: OVH supports qcow2 https://review.openstack.org/445042 | 21:05 |
openstackgerrit | Merged openstack/cliff master: Fix broken test with cmd2 0.7.0 https://review.openstack.org/444951 | 21:06 |
*** gouthamr has quit IRC | 21:06 | |
openstackgerrit | Dean Troyer proposed openstack/python-openstackclient master: Add new parameter "is_default" to Network QoS policy. https://review.openstack.org/432260 | 21:08 |
openstackgerrit | Steve Martinelli proposed openstack/cliff master: Remove support for py34 https://review.openstack.org/430577 | 21:09 |
*** e0ne has quit IRC | 21:18 | |
*** salv-orlando has joined #openstack-sdks | 21:30 | |
*** chlong has quit IRC | 21:34 | |
*** bobh has quit IRC | 21:42 | |
*** chlong has joined #openstack-sdks | 21:47 | |
*** john-davidge has joined #openstack-sdks | 21:57 | |
*** annegentle has quit IRC | 21:58 | |
*** Serlex has quit IRC | 21:59 | |
*** john-davidge has quit IRC | 22:02 | |
*** jamielennox is now known as jamielennox|away | 22:03 | |
*** jamielennox|away is now known as jamielennox | 22:07 | |
*** jkilpatr has quit IRC | 22:11 | |
*** chlong has quit IRC | 22:26 | |
*** gouthamr has joined #openstack-sdks | 22:29 | |
*** dave-mccowan has quit IRC | 22:36 | |
*** jkilpatr has joined #openstack-sdks | 22:50 | |
*** gildub has joined #openstack-sdks | 22:58 | |
*** ssbarnea has quit IRC | 23:08 | |
*** bobh has joined #openstack-sdks | 23:13 | |
*** hongbin has quit IRC | 23:15 | |
*** gildub has quit IRC | 23:19 | |
*** erlon has quit IRC | 23:25 | |
openstackgerrit | Dean Troyer proposed openstack/python-openstackclient master: Non-Admin can't list own projects https://review.openstack.org/376056 | 23:26 |
*** gildub has joined #openstack-sdks | 23:28 | |
reedip | o/ | 23:39 |
openstackgerrit | Merged openstack/cliff master: Remove support for py34 https://review.openstack.org/430577 | 23:48 |
*** john-davidge has joined #openstack-sdks | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!