*** salv-orl_ has joined #openstack-sdks | 00:02 | |
*** salv-orlando has quit IRC | 00:05 | |
*** salv-orl_ has quit IRC | 00:11 | |
*** terrylhowe_ has joined #openstack-sdks | 00:17 | |
*** terrylhowe has quit IRC | 00:17 | |
*** terrylhowe_ is now known as terrylhowe | 00:17 | |
*** steveortiz is now known as zz_steveortiz | 00:19 | |
*** gildub has quit IRC | 00:25 | |
*** devth has joined #openstack-sdks | 00:41 | |
*** devth has quit IRC | 00:42 | |
*** Qiming has joined #openstack-sdks | 00:42 | |
*** devth_ has joined #openstack-sdks | 00:45 | |
*** markvoelker has joined #openstack-sdks | 00:56 | |
*** markvoelker has quit IRC | 01:01 | |
*** Qiming has quit IRC | 01:04 | |
*** openstack has joined #openstack-sdks | 01:09 | |
openstackgerrit | xiexs proposed openstack/python-openstackclient: Refactor TestImageCreate with FakeImage class https://review.openstack.org/254150 | 01:30 |
---|---|---|
*** markvoelker has joined #openstack-sdks | 01:37 | |
*** Yanyanhu has joined #openstack-sdks | 01:50 | |
xiexs | stevelle,terrylhowe: hi, could you give me some tips for this patch (https://review.openstack.org/#/c/251646/), | 01:55 |
xiexs | stevelle,terrylhowe: as it seems that there is a disagreement about the echo message. | 01:55 |
xiexs | stevelle,terrylhowe: thanks in advance | 01:58 |
*** salv-orlando has joined #openstack-sdks | 02:15 | |
*** devth has joined #openstack-sdks | 02:17 | |
*** Qiming has joined #openstack-sdks | 02:18 | |
*** devth_ has quit IRC | 02:20 | |
*** devth has quit IRC | 02:22 | |
*** salv-orlando has quit IRC | 02:22 | |
*** salv-orlando has joined #openstack-sdks | 02:31 | |
*** salv-orlando has quit IRC | 02:35 | |
*** devth has joined #openstack-sdks | 02:37 | |
*** devth has quit IRC | 02:40 | |
*** devth has joined #openstack-sdks | 02:42 | |
*** devth has joined #openstack-sdks | 02:43 | |
*** woodster_ has quit IRC | 02:56 | |
*** gildub has joined #openstack-sdks | 02:57 | |
tangchen | Hi Qiming, Yanyanhu, are you around ? | 02:58 |
Qiming | yes | 02:58 |
tangchen | Qiming, Yanyanhu: according to http://developer.openstack.org/api-ref-networking-v2-ext.html, creating a ha router is not supported, right ? | 02:59 |
Qiming | em... it is beyond my knowledge domain | 03:00 |
tangchen | Qiming, Yanyanhu: It seems that neutronclient supports creating a ha router, but when I try to do so in osc, I got a 400 | 03:00 |
Qiming | ha router? | 03:00 |
Qiming | which api are you talking about? | 03:01 |
tangchen | Qiming: Oh, sorry. But https://review.openstack.org/#/c/256549/ | 03:01 |
tangchen | Qiming: this patch adds three new properties to Router in SDK. | 03:01 |
Yanyanhu | hi, tangchen, I'm also not familiar with this part... | 03:01 |
tangchen | Yanyanhu: all right, thx. :) | 03:01 |
Qiming | tangchen, got it, reading | 03:01 |
Yanyanhu | let me check it | 03:02 |
tangchen | Qiming, Yanyanhu: thx. please help to look at it. :) | 03:02 |
tangchen | Qiming, Yanyanhu: IIUC, I think I can pass 'ha' to create_router() as a property of **attrs. But according to http://developer.openstack.org/api-ref-networking-v2-ext.html , It seems that the create request does not support ha. | 03:04 |
tangchen | Qiming, Yanyanhu: This is what I'm a little confused. | 03:05 |
Qiming | then it could be a documentation problem | 03:05 |
Qiming | api is lagging behind code implementation? | 03:05 |
Yanyanhu | tangchen, I guess it is not allowed to create a router with specifying attributes like 'ha' and 'distributed'? | 03:05 |
tangchen | Qiming, Yanyanhu: distributed is OK, but ha is not OK. | 03:06 |
tangchen | Qiming, Yanyanhu: Maybe it is my mistake. I'm not sure now. | 03:06 |
Yanyanhu | these properties shown by router show just illustrate whether the router is a 'ha'/'distributed' router | 03:07 |
Yanyanhu | oh | 03:07 |
Yanyanhu | if so, probably doc mistake | 03:07 |
tangchen | Qiming, Yanyanhu: OK. I think I can check neutronclient for some reference. :) | 03:07 |
tangchen | Qiming, Yanyanhu: Thanks :) | 03:08 |
Qiming | tangchen, neutronclient is the wrong place | 03:08 |
Qiming | sdk invokes the REST interface directly | 03:08 |
tangchen | Qiming, Yanyanhu: neutron help router-create shows " --ha {True,False} Create a highly available router." | 03:09 |
Qiming | well... neutronclient may give you some hints on whether ha is supported and how it is injected into the router create request | 03:10 |
tangchen | Qiming, Yanyanhu: I think I can refer to it and see how it does it. | 03:10 |
tangchen | yes | 03:10 |
tangchen | Qiming, Yanyanhu: BTW, the previous patch, is_ha is created by resource.prop(ha, ......). So, is_ha and ha are the same, right ? | 03:11 |
Yanyanhu | tangchen, I also referred to python-novaclient when I worked on related support in sdk :) But sometimes, it's inconsitent with the documentation... | 03:12 |
tangchen | Yanyanhu: yeah, I see. :) | 03:13 |
Yanyanhu | yes, I think so | 03:13 |
Yanyanhu | 'ha' should be the keyname shown in api response | 03:13 |
tangchen | Qiming, Yanyanhu: Thanks. :) | 03:13 |
Yanyanhu | tangchen, you're welcome :) | 03:14 |
Qiming | tangchen, when I do 'neutron router-create --debug test1 --ha True' | 03:23 |
Qiming | I'm getting this: | 03:24 |
Qiming | curl -g -i -X POST http://192.168.42.11:9696/v2.0/routers.json -H "User-Agent: python-neutronclient" -H "Content-Type: application/json" -H "Accept: application/json" -H "X-Auth-Token: {SHA1}eea77a205457c673348d54708c6b4c1f7aca2e6c" -d '{"router": {"ha": "True", "name": "test1", "admin_state_up": true}}' | 03:24 |
Qiming | this proves that the API documentation is out of date | 03:24 |
tangchen | Qiming: Thanks. And I tried that neutron client is also able to create a ha router. | 03:27 |
tangchen | Qiming: Let's fix the doc. :) | 03:27 |
tangchen | Qiming, Yanyanhu: I found the problem. It was my mistake that I have only one l3 agent on my server. To create a ha router, I need at least two....... | 03:32 |
tangchen | Qiming, Yanyanhu: It is not the sdk problem. | 03:32 |
tangchen | thx.:) | 03:32 |
*** pratikmallya has quit IRC | 03:36 | |
*** terrylhowe has quit IRC | 03:49 | |
*** david-lyle has quit IRC | 03:50 | |
*** markvoelker has quit IRC | 03:52 | |
*** devth has quit IRC | 03:54 | |
*** david-lyle has joined #openstack-sdks | 03:58 | |
*** krotscheck is now known as krotscheck_vaca | 04:00 | |
*** david-lyle has quit IRC | 04:01 | |
*** david-lyle has joined #openstack-sdks | 04:02 | |
*** boris-42_ has quit IRC | 04:13 | |
*** openstackstatus has quit IRC | 04:24 | |
*** openstack has joined #openstack-sdks | 04:27 | |
-wolfe.freenode.net- [freenode-info] channel flooding and no channel staff around to help? Please check with freenode support: http://freenode.net/faq.shtml#gettinghelp | 04:27 | |
*** pratikmallya has joined #openstack-sdks | 04:36 | |
*** salv-orl_ has joined #openstack-sdks | 04:37 | |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router delete" command using SDK https://review.openstack.org/257039 | 04:37 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router create" command using SDK https://review.openstack.org/257038 | 04:37 |
*** pratikmallya has quit IRC | 04:41 | |
*** salv-orl_ has quit IRC | 04:41 | |
*** markvoelker has joined #openstack-sdks | 04:53 | |
*** markvoelker has quit IRC | 04:57 | |
*** salv-orlando has joined #openstack-sdks | 05:37 | |
*** salv-orlando has quit IRC | 05:40 | |
*** dims has quit IRC | 05:41 | |
openstackgerrit | Merged openstack/python-openstacksdk: Fix exceptions to catch for ignore_missing https://review.openstack.org/257443 | 05:50 |
*** rm_work has quit IRC | 05:59 | |
openstackgerrit | Merged openstack/python-openstacksdk: Updated from global requirements https://review.openstack.org/256527 | 06:00 |
*** mfedosin has joined #openstack-sdks | 06:12 | |
openstackgerrit | Merged openstack/python-openstacksdk: Replace 'value' arguments in image proxies https://review.openstack.org/257587 | 06:13 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router show" command using SDK https://review.openstack.org/257355 | 06:17 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router set" command using SDK https://review.openstack.org/257354 | 06:17 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router delete" command using SDK https://review.openstack.org/257039 | 06:17 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router create" command using SDK https://review.openstack.org/257038 | 06:17 |
tangchen | Hi stevemar, I just updated the "router create" patch. I removed the '--ha' support since I found we need some better error handling logic to support that. | 06:20 |
tangchen | stevemar: Sorry you just gave a +2. I think you have to review it again. :) | 06:20 |
stevemar | tangchen: np at all | 06:20 |
*** rm_work has joined #openstack-sdks | 06:22 | |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Netwrok: Improve no option test for "network create". https://review.openstack.org/257689 | 06:35 |
openstackgerrit | Merged openstack/python-openstackclient: Refactor TestImageDelete with FakeImage https://review.openstack.org/254148 | 06:39 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Netwrok: Improve no option test for "network create". https://review.openstack.org/257689 | 06:40 |
stevemar | tangchen: let me know if you agree with the patch to make --image optional for rebuild :) | 06:50 |
tangchen | I'm OK with that. But Dean seems have some comments that I have no time to handle today. | 06:52 |
*** markvoelker has joined #openstack-sdks | 06:54 | |
tangchen | stevemar: I'm OK with that. But Dean seems have some comments that I have no time to handle today. | 06:54 |
stevemar | tangchen: that's fine :) i just wanted to know if you were +1 or -1 for it :P | 06:55 |
stevemar | tangchen: dtroyer ALWAYS has comments :) | 06:55 |
*** dims has joined #openstack-sdks | 06:56 | |
*** markvoelker has quit IRC | 06:58 | |
tangchen | stevemar: That patch is taken by me now. The latest version was posted by me. So I don't need to +1, I think. :) | 07:09 |
stevemar | tangchen: ah right | 07:10 |
stevemar | i forgot | 07:10 |
tangchen | stevemar: :) | 07:10 |
xiexs | stevemar: hi, there are some disagreement on the patch(https://review.openstack.org/#/c/251646/) between U and Dean, about the "echo message". | 07:16 |
xiexs | stevemar: so could you give me some advice on what i should do next.. | 07:17 |
xiexs | stevemar: thanks. | 07:17 |
*** fzdarsky_ has joined #openstack-sdks | 07:19 | |
*** dims has quit IRC | 07:26 | |
*** pratikmallya has joined #openstack-sdks | 07:27 | |
openstackgerrit | Merged openstack/python-openstackclient: Add multi deletion testcase for "openstack image delete" https://review.openstack.org/254149 | 07:37 |
stevemar | xiexs: i replied as best i could! | 07:41 |
*** dims_ has joined #openstack-sdks | 07:45 | |
xiexs | stevemar: thank you very much. And this is a good opportunity to make a consistence of behaviour about these commands i think. | 07:51 |
stevemar | xiexs: yep! i think we use 'command' more for 'show' for set commands | 07:52 |
xiexs | stevemar: so let`s wait for Dean`s reply.. | 07:52 |
stevemar | we might break people if we change it :( | 07:52 |
stevemar | it'll be backwards incompatible | 07:52 |
xiexs | stevemar: yes, i agree with U. | 07:52 |
stevemar | if someone has in a script... "os set compute service blah blah" and grep's the output looking for an ID | 07:53 |
stevemar | we will break them hard | 07:53 |
*** jaypipes has joined #openstack-sdks | 07:53 | |
xiexs | stevemar: em... the backward-compatible is really a dilemma. maybe with a new release? | 07:56 |
*** dims_ has quit IRC | 08:01 | |
stevemar | xiexs: not sure, that's dtroyer's problem, he's PTL :P | 08:08 |
stevemar | xiexs: we list previous backwards incompatible changes here: http://docs.openstack.org/developer/python-openstackclient/backwards-incompatible.html | 08:09 |
stevemar | xiexs: you can see #7 is similar: image set commands will no longer return the modified resource | 08:09 |
*** dims_ has joined #openstack-sdks | 08:09 | |
xiexs | stevemar: yes, i see, and it will be an evidence to prove that why using 'command' for this patch. i think Dean will agree with us :) | 08:17 |
*** dims_ has quit IRC | 08:41 | |
*** mfedosin has quit IRC | 08:44 | |
*** markvoelker has joined #openstack-sdks | 08:55 | |
*** bunting has quit IRC | 08:56 | |
*** bunting has joined #openstack-sdks | 08:56 | |
*** markvoelker has quit IRC | 08:59 | |
*** salv-orlando has joined #openstack-sdks | 09:19 | |
*** dims has joined #openstack-sdks | 09:21 | |
*** fzdarsky_ is now known as fzdarsky|afk | 09:26 | |
*** fzdarsky|afk has quit IRC | 09:30 | |
*** xiexs has quit IRC | 09:33 | |
*** lhcheng has joined #openstack-sdks | 09:41 | |
*** openstackgerrit has quit IRC | 09:47 | |
*** openstackgerrit has joined #openstack-sdks | 09:48 | |
*** e0ne has joined #openstack-sdks | 09:48 | |
*** cdent has joined #openstack-sdks | 09:49 | |
*** e0ne has quit IRC | 09:59 | |
*** e0ne has joined #openstack-sdks | 10:00 | |
*** Qiming has quit IRC | 10:10 | |
*** miguelgrinberg has quit IRC | 10:20 | |
*** openstackgerrit has quit IRC | 10:32 | |
*** openstackgerrit has joined #openstack-sdks | 10:33 | |
*** Yanyanhu has quit IRC | 10:43 | |
*** gildub has quit IRC | 10:46 | |
*** pratikmallya has quit IRC | 10:48 | |
*** markvoelker has joined #openstack-sdks | 10:55 | |
*** markvoelker has quit IRC | 11:00 | |
*** Qiming has joined #openstack-sdks | 11:05 | |
*** mfedosin has joined #openstack-sdks | 11:05 | |
*** lhcheng_ has joined #openstack-sdks | 11:11 | |
*** lhcheng has quit IRC | 11:13 | |
*** dims has quit IRC | 11:15 | |
*** lucas-dinner is now known as lucasagomes | 11:18 | |
*** ig0r_ has quit IRC | 11:20 | |
*** lhcheng_ has quit IRC | 11:20 | |
*** lhcheng_ has joined #openstack-sdks | 11:21 | |
*** salv-orlando has quit IRC | 11:22 | |
*** lhcheng has joined #openstack-sdks | 11:22 | |
*** salv-orlando has joined #openstack-sdks | 11:22 | |
*** lhcheng_ has quit IRC | 11:25 | |
*** fzdarsky|afk has joined #openstack-sdks | 11:33 | |
*** fzdarsky|afk is now known as fzdarsky | 11:33 | |
*** jaypipes has quit IRC | 11:35 | |
*** jaypipes has joined #openstack-sdks | 11:58 | |
*** salv-orl_ has joined #openstack-sdks | 12:03 | |
*** jaypipes has quit IRC | 12:03 | |
*** salv-orlando has quit IRC | 12:06 | |
*** rtheis has joined #openstack-sdks | 12:17 | |
*** dims has joined #openstack-sdks | 12:39 | |
*** markvoelker has joined #openstack-sdks | 12:41 | |
*** markvoelker has quit IRC | 12:46 | |
*** salv-orl_ has quit IRC | 12:46 | |
*** dims has quit IRC | 12:51 | |
*** thrash|g0ne is now known as thrash | 13:03 | |
*** markvoelker has joined #openstack-sdks | 13:04 | |
*** terrylhowe has joined #openstack-sdks | 13:08 | |
*** terrylhowe has quit IRC | 13:19 | |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Network: Improve no option test for "network create". https://review.openstack.org/257689 | 13:22 |
*** petertr7_away has quit IRC | 13:23 | |
*** petertr7_away has joined #openstack-sdks | 13:24 | |
*** petertr7_away is now known as petertr7 | 13:24 | |
*** e0ne has quit IRC | 13:34 | |
*** whydidyoustealmy has joined #openstack-sdks | 13:35 | |
*** shakamunyi has joined #openstack-sdks | 13:35 | |
*** terrylhowe has joined #openstack-sdks | 13:35 | |
*** e0ne has joined #openstack-sdks | 13:35 | |
*** whydidyoustealmy is now known as superflyy | 13:36 | |
*** petertr7 has quit IRC | 13:38 | |
*** petertr7_away has joined #openstack-sdks | 13:43 | |
*** petertr7_away is now known as petertr7 | 13:43 | |
*** cdent_ has joined #openstack-sdks | 14:00 | |
*** cdent has quit IRC | 14:02 | |
*** cdent_ is now known as cdent | 14:02 | |
*** e0ne has quit IRC | 14:12 | |
*** zz_steveortiz is now known as steveortiz | 14:19 | |
*** dims has joined #openstack-sdks | 14:34 | |
*** Qiming has quit IRC | 14:40 | |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Replace 'value' arguments in network proxy https://review.openstack.org/257933 | 14:53 |
*** lucasagomes is now known as lucas-hungry | 14:56 | |
*** alex_xu has quit IRC | 14:58 | |
*** dims has quit IRC | 15:00 | |
briancurtin | terrylhowe: Qiming got that ignore change through, released at https://pypi.python.org/pypi/openstacksdk/0.7.3 | 15:03 |
terrylhowe | thanks briancurtin | 15:03 |
*** alex_xu has joined #openstack-sdks | 15:04 | |
*** boris-42_ has joined #openstack-sdks | 15:12 | |
*** e0ne has joined #openstack-sdks | 15:12 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 15:14 | |
*** bnemec has quit IRC | 15:25 | |
*** pratikmallya has joined #openstack-sdks | 15:30 | |
*** bnemec has joined #openstack-sdks | 15:32 | |
*** pratikma_ has joined #openstack-sdks | 15:34 | |
*** pratikmallya has quit IRC | 15:36 | |
openstackgerrit | Merged openstack/python-openstackclient: Router: Add "router create" command using SDK https://review.openstack.org/257038 | 15:37 |
*** lucas-hungry is now known as lucasagomes | 15:40 | |
openstackgerrit | Merged openstack/python-openstackclient: Router: Add "router delete" command using SDK https://review.openstack.org/257039 | 15:42 |
*** annegentle has joined #openstack-sdks | 15:47 | |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Replace 'value' arguments in network proxy https://review.openstack.org/257933 | 15:48 |
*** jose4183 has joined #openstack-sdks | 15:49 | |
*** liangbo has joined #openstack-sdks | 15:56 | |
openstackgerrit | Terry Howe proposed openstack/python-openstackclient: Subnet CRUD https://review.openstack.org/84782 | 16:10 |
*** liangbo has quit IRC | 16:20 | |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Replace 'value' arguments in object_store proxy https://review.openstack.org/258000 | 16:39 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router show" command using SDK https://review.openstack.org/257355 | 16:41 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router set" command using SDK https://review.openstack.org/257354 | 16:41 |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Network: Abstract get_body() out to be a private helper. https://review.openstack.org/257129 | 16:42 |
*** devth has joined #openstack-sdks | 16:49 | |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Replace 'value' arguments in orchestration proxy https://review.openstack.org/258010 | 16:58 |
openstackgerrit | Terry Howe proposed openstack/python-openstackclient: Subnet CRUD https://review.openstack.org/84782 | 16:59 |
*** david-lyle has quit IRC | 17:02 | |
openstackgerrit | Richard Theis proposed openstack/python-openstacksdk: Add Port port_security_enabled property https://review.openstack.org/258014 | 17:04 |
openstackgerrit | Richard Theis proposed openstack/python-openstacksdk: Add Port port_security_enabled property https://review.openstack.org/258014 | 17:07 |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Replace 'value' arguments in telemetry proxy https://review.openstack.org/258016 | 17:11 |
*** david-lyle has joined #openstack-sdks | 17:12 | |
briancurtin | rtheis: for things you are going to immediately propose a review in gerrit for, you can leave out the launchpad issue. we mainly use those to track what we want to do but haven’t gotten around to, or the few cases where a review has been proposed but we need to hold off on it and do other things first | 17:14 |
*** thrash is now known as thrash|f00dz | 17:16 | |
rtheis | briancurtin: ok, thanks. I'll be sure to follow your recommendation in the future. Some projects usually want launchpad issues so I've gotten in the habit of doing that. | 17:18 |
openstackgerrit | Terry Howe proposed openstack/python-openstackclient: Subnet List https://review.openstack.org/84782 | 17:18 |
*** e0ne has quit IRC | 17:19 | |
briancurtin | rtheis: you can do whatever you please - it’ll all work in the end - but with some of the really quick issues i probably won’t even get around to looking at the LP issue when i see the gerrit email come right behind it, so in the end it just means that you spent a few extra minutes on launchpad | 17:27 |
*** lhcheng_ has joined #openstack-sdks | 17:28 | |
*** petertr7 is now known as petertr7_away | 17:30 | |
*** devth_ has joined #openstack-sdks | 17:30 | |
*** lhcheng has quit IRC | 17:31 | |
*** devth__ has joined #openstack-sdks | 17:31 | |
*** devth has quit IRC | 17:34 | |
*** devth_ has quit IRC | 17:35 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 17:38 | |
openstackgerrit | Tang Chen proposed openstack/python-openstackclient: Router: Add "router set" command using SDK https://review.openstack.org/257354 | 17:39 |
*** markvoelker_ has joined #openstack-sdks | 17:40 | |
*** markvoelker has quit IRC | 17:41 | |
*** markvoelker_ has quit IRC | 17:47 | |
*** markvoelker has joined #openstack-sdks | 17:49 | |
*** lhcheng_ is now known as lhcheng | 17:59 | |
*** e0ne has joined #openstack-sdks | 18:04 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/keystoneauth: Updated from global requirements https://review.openstack.org/258040 | 18:13 |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Rename key_management to key_manager https://review.openstack.org/258061 | 18:17 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-openstackclient: Updated from global requirements https://review.openstack.org/258065 | 18:17 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-openstacksdk: Updated from global requirements https://review.openstack.org/258066 | 18:17 |
*** mfedosin has quit IRC | 18:27 | |
*** salv-orlando has joined #openstack-sdks | 18:31 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 18:31 | |
*** jose4183 has quit IRC | 18:34 | |
openstackgerrit | Merged openstack/python-openstackclient: Removes MANIFEST.in as it is not needed explicitely by PBR https://review.openstack.org/257184 | 18:36 |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Remove requests from requirements https://review.openstack.org/258081 | 18:38 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-openstackclient: Updated from global requirements https://review.openstack.org/258065 | 18:44 |
*** dims has joined #openstack-sdks | 18:45 | |
*** hitalia has joined #openstack-sdks | 18:51 | |
briancurtin | sdk meeting in 5 minutes over in #openstack-meeting-3 | 18:55 |
*** devth__ has quit IRC | 19:00 | |
*** devth has joined #openstack-sdks | 19:02 | |
*** pratikma_ has quit IRC | 19:18 | |
*** pratikmallya has joined #openstack-sdks | 19:26 | |
*** openstackgerrit has quit IRC | 19:32 | |
*** openstackgerrit has joined #openstack-sdks | 19:33 | |
*** e0ne has quit IRC | 19:34 | |
*** e0ne_ has joined #openstack-sdks | 19:35 | |
*** salv-orlando has quit IRC | 19:37 | |
*** e0ne_ has quit IRC | 19:42 | |
*** hitalia has quit IRC | 19:52 | |
*** hitalia has joined #openstack-sdks | 19:59 | |
*** pratikma_ has joined #openstack-sdks | 20:07 | |
*** thrash|f00dz is now known as thrash|brb | 20:09 | |
*** pratikmallya has quit IRC | 20:09 | |
*** e0ne has joined #openstack-sdks | 20:13 | |
*** hitalia has quit IRC | 20:14 | |
*** e0ne_ has joined #openstack-sdks | 20:15 | |
*** e0ne has quit IRC | 20:16 | |
*** lucasagomes is now known as lucas-dinner | 20:17 | |
*** mfedosin has joined #openstack-sdks | 20:23 | |
*** hitalia has joined #openstack-sdks | 20:23 | |
*** devth_ has joined #openstack-sdks | 20:34 | |
*** devth has quit IRC | 20:34 | |
*** lhcheng has quit IRC | 20:39 | |
*** lhcheng has joined #openstack-sdks | 20:45 | |
*** lhcheng has quit IRC | 20:46 | |
*** e0ne_ has quit IRC | 20:59 | |
openstackgerrit | Merged openstack/python-openstacksdk: Add Port port_security_enabled property https://review.openstack.org/258014 | 21:01 |
*** thrash|brb is now known as thrash | 21:07 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 21:17 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 21:17 | |
openstackgerrit | Merged openstack/python-openstacksdk: Replace 'value' arguments in object_store proxy https://review.openstack.org/258000 | 21:17 |
openstackgerrit | Merged openstack/python-openstacksdk: Replace 'value' arguments in orchestration proxy https://review.openstack.org/258010 | 21:18 |
openstackgerrit | Merged openstack/python-openstacksdk: Replace 'value' arguments in telemetry proxy https://review.openstack.org/258016 | 21:18 |
openstackgerrit | Merged openstack/python-openstacksdk: Replace 'value' arguments in network proxy https://review.openstack.org/257933 | 21:18 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-openstacksdk: Updated from global requirements https://review.openstack.org/258066 | 21:29 |
*** e0ne has joined #openstack-sdks | 21:30 | |
openstackgerrit | Merged openstack/python-openstacksdk: Rename key_management to key_manager https://review.openstack.org/258061 | 21:36 |
*** devth_ has quit IRC | 21:38 | |
*** mfedosin has quit IRC | 21:49 | |
*** lhcheng has joined #openstack-sdks | 21:50 | |
*** devth has joined #openstack-sdks | 21:52 | |
*** petertr7_away is now known as petertr7 | 21:56 | |
*** david-lyle has quit IRC | 21:58 | |
*** david-lyle has joined #openstack-sdks | 22:00 | |
*** cdent has quit IRC | 22:05 | |
*** rtheis has quit IRC | 22:10 | |
*** annegentle has quit IRC | 22:13 | |
*** hitalia has quit IRC | 22:21 | |
*** hitalia has joined #openstack-sdks | 22:22 | |
*** salv-orlando has joined #openstack-sdks | 22:29 | |
*** devth has quit IRC | 22:30 | |
*** gildub has joined #openstack-sdks | 22:32 | |
*** e0ne has quit IRC | 22:32 | |
*** devth_ has joined #openstack-sdks | 22:33 | |
openstackgerrit | Brian Curtin proposed openstack/keystoneauth: Provide a RFC 7231 compliant user agent string https://review.openstack.org/256002 | 22:38 |
openstackgerrit | Brian Curtin proposed openstack/keystoneauth: Provide a RFC 7231 compliant user agent string https://review.openstack.org/256002 | 22:45 |
*** dstanek has quit IRC | 22:56 | |
*** dstanek has joined #openstack-sdks | 22:56 | |
*** petertr7 is now known as petertr7_away | 22:59 | |
*** david-lyle has quit IRC | 23:01 | |
*** david-lyle has joined #openstack-sdks | 23:01 | |
*** dstanek has quit IRC | 23:06 | |
*** dstanek has joined #openstack-sdks | 23:07 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 23:15 | |
*** e0ne has joined #openstack-sdks | 23:21 | |
*** salv-orlando has quit IRC | 23:23 | |
*** devth_ has quit IRC | 23:25 | |
briancurtin | terrylhowe: query params appear to work just fine as-is post-KSA change. we probably still need to do a better job of documenting them, but functionality-wise we’re ok | 23:25 |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Support block_store types where IDs are taken https://review.openstack.org/256093 | 23:32 |
*** devth_ has joined #openstack-sdks | 23:32 | |
*** david-lyle_ has joined #openstack-sdks | 23:33 | |
*** david-lyle has quit IRC | 23:36 | |
*** Qiming has joined #openstack-sdks | 23:39 | |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: cluster: Use typed props instead of *_id https://review.openstack.org/258192 | 23:40 |
openstackgerrit | Merged openstack/python-openstacksdk: Updated from global requirements https://review.openstack.org/258066 | 23:44 |
openstackgerrit | Merged openstack/keystoneauth: Updated from global requirements https://review.openstack.org/258040 | 23:44 |
openstackgerrit | Merged openstack/python-openstackclient: Updated from global requirements https://review.openstack.org/258065 | 23:47 |
openstackgerrit | Brian Curtin proposed openstack/python-openstacksdk: Remove requests from requirements https://review.openstack.org/258081 | 23:47 |
openstackgerrit | Merged openstack/python-openstackclient: when fetching object store properties use lower() https://review.openstack.org/257218 | 23:47 |
*** gildub has quit IRC | 23:49 | |
*** devth_ has quit IRC | 23:50 | |
*** devth_ has joined #openstack-sdks | 23:56 | |
*** chlong has quit IRC | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!