| *** john-davidge has quit IRC | 00:02 | |
| *** salv-orlando has quit IRC | 00:09 | |
| openstackgerrit | Merged openstack/cliff master: Updated from global requirements https://review.openstack.org/440033 | 00:14 |
|---|---|---|
| *** reedip has quit IRC | 00:23 | |
| openstackgerrit | Colleen Murphy proposed openstack/python-openstackclient master: Narrow expected responses for CheckUserInGroup https://review.openstack.org/445257 | 00:41 |
| *** hoangcx has joined #openstack-sdks | 00:43 | |
| *** sdague has quit IRC | 00:57 | |
| *** jamielennox is now known as jamielennox|away | 00:58 | |
| stevemar | dtroyer: glance tests are borked | 01:08 |
| *** jamielennox|away is now known as jamielennox | 01:12 | |
| stevemar | dtroyer: looks like we're setting IMAGE_API to 1: https://github.com/openstack/python-openstackclient/blob/master/openstackclient/tests/functional/image/v1/test_image.py#L29 | 01:15 |
| stevemar | 21:10 stevemar: sample failure: http://logs.openstack.org/20/437320/2/gate/gate-osc-dsvm-functional-ubuntu-xenial/8c6e99b/testr_results.html.gz | 01:15 |
| stevemar | 21:11 stevemar: Command 'openstack image create 2c10175aea9041aaabd5b2de90285e76 -f value -c name' returned non-zero exit status 1. | 01:15 |
| stevemar | 21:11 stevemar: HTTPMultipleChoices (HTTP 300) Requested version of OpenStack Images API is not available. | 01:15 |
| stevemar | dtroyer: ah its all mriedem's fault | 01:16 |
| stevemar | https://github.com/openstack-dev/devstack/commit/80e82eac4cd127a68fceea37270d09f9cbd71c75 | 01:16 |
| ankur-gupta-f4 | stevemar: Why keep v1 around if deprecated since Newton? | 01:29 |
| *** annp has joined #openstack-sdks | 01:35 | |
| *** yanyanhu has joined #openstack-sdks | 01:36 | |
| *** namnh has joined #openstack-sdks | 01:37 | |
| *** huanxuan has joined #openstack-sdks | 01:37 | |
| stevemar | ankur-gupta-f4: you shouldn't be removing APIs, like ever | 01:39 |
| stevemar | ankur-gupta-f4: the change in devstack made it so image v1 isn't in the pipeline by default (because it is, as you said, deprecated) | 01:40 |
| stevemar | ankur-gupta-f4: our tests assume its there, we'll have to change that | 01:40 |
| openstackgerrit | Lv Jiawei proposed openstack/python-openstackclient master: Add extra filtering options to qos policy list https://review.openstack.org/401131 | 01:41 |
| ankur-gupta-f4 | stevemar: i meant the tests :| | 01:43 |
| ankur-gupta-f4 | Would you change the tests or would you enable glance v1 in the test env? | 01:46 |
| *** john-davidge has joined #openstack-sdks | 01:58 | |
| *** john-davidge has quit IRC | 02:03 | |
| *** bobh has quit IRC | 02:12 | |
| *** reedip has joined #openstack-sdks | 02:14 | |
| reedip | stevemar : hi , any comments on https://review.openstack.org/#/c/383025/ ? | 02:16 |
| reedip | ankur-gupta-f4 : https://review.openstack.org/#/c/376311/ ???? | 02:16 |
| *** bobh has joined #openstack-sdks | 02:20 | |
| openstackgerrit | jiahui.qiang proposed openstack/python-openstackclient master: Functional test for subnet_pool https://review.openstack.org/440150 | 02:20 |
| *** gouthamr has quit IRC | 02:33 | |
| *** bobh has quit IRC | 02:36 | |
| *** fzdarsky_ has joined #openstack-sdks | 02:39 | |
| *** bobh has joined #openstack-sdks | 02:41 | |
| *** fzdarsky has quit IRC | 02:43 | |
| stevemar | ankur-gupta-f4: probably just skip the tests IMO | 02:44 |
| stevemar | ankur-gupta-f4: it would be nice to check for that exception and skip the test | 02:45 |
| reedip | stevemar : hello :) | 02:47 |
| stevemar | reedip: mr reedip | 02:47 |
| reedip | ?? | 02:47 |
| openstackgerrit | luqitao proposed openstack/osc-lib master: Replace six.iteritems() with .items() https://review.openstack.org/445273 | 02:50 |
| reedip | ankur-gupta-f4, stevemar : How does OpenstackClient search for new Commands | 02:51 |
| reedip | ankur-gupta-f4, stevemar : even if they are registered in tox.ini | 02:51 |
| stevemar | reedip: you mean setup.cfg :) | 02:57 |
| reedip | sorry , yeah stevemar | 02:57 |
| reedip | except setup.cfg | 02:57 |
| stevemar | reedip: you have to add it to setup.cfg and 'install' it | 02:57 |
| stevemar | i normally create a new virtualenv by doing $ virtualenv testcmd | 02:58 |
| stevemar | source it, $ source testcmd/bin/activate | 02:58 |
| stevemar | go to my OSC directory | 02:58 |
| stevemar | edit setup.cfg for the new command | 02:58 |
| stevemar | and 'install' osc locally in my virtualenv | 02:58 |
| stevemar | $ pip install -e . | 02:59 |
| stevemar | ^ from OSC root directory | 02:59 |
| stevemar | when you run $ openstack --version you'll see a .dev version installed | 02:59 |
| stevemar | that should have the new command | 02:59 |
| *** namnh_ has joined #openstack-sdks | 02:59 | |
| stevemar | you can run $ which openstack and see where it points also | 02:59 |
| stevemar | when you're done with the virtualenv just run, $ deactivate | 03:00 |
| stevemar | you can then rm -rf the virtualenv directory | 03:00 |
| reedip | stevemar : the command is not in OSC , its in a separate repo , which extends OSC plugins | 03:01 |
| *** john-davidge has joined #openstack-sdks | 03:01 | |
| stevemar | reedip: same principals i believe, install OSC in the virtualenv then the other repo | 03:02 |
| *** namnh has quit IRC | 03:03 | |
| reedip | lemme try | 03:03 |
| reedip | stevemar : what if requirements are not met :) | 03:06 |
| *** john-davidge has quit IRC | 03:06 | |
| *** namnh_ has quit IRC | 03:07 | |
| reedip | stevemar : getting an error | 03:09 |
| reedip | in requirements | 03:09 |
| *** salv-orlando has joined #openstack-sdks | 03:10 | |
| *** salv-orlando has quit IRC | 03:15 | |
| *** bobh has quit IRC | 03:16 | |
| *** huanxuan has quit IRC | 03:27 | |
| *** namnh has joined #openstack-sdks | 03:40 | |
| *** rabel_b1 has joined #openstack-sdks | 03:49 | |
| *** huanxuan has joined #openstack-sdks | 03:52 | |
| *** gildub has quit IRC | 04:04 | |
| ankur-gupta-f4 | reedip: it should work in the same way | 04:13 |
| ankur-gupta-f4 | R u talking about the TaaS commands? | 04:13 |
| *** rabel__b1 has joined #openstack-sdks | 04:16 | |
| *** rabel_b1 has quit IRC | 04:19 | |
| *** gildub has joined #openstack-sdks | 04:22 | |
| rabel__b1 | can someone help me with https://review.openstack.org/#/c/444924/ ? two functional tests in the gate job are failing, but it seems to have nothing to do with the change. one of the test i also saw failing for other changes that seem to be unrelated. | 04:23 |
| ankur-gupta-f4 | rabel__b1: the image tests are temporarily broken. | 04:24 |
| ankur-gupta-f4 | Till its resolved avoid rechecking | 04:25 |
| rabel__b1 | ankur-gupta-f4: ok, thank you. | 04:36 |
| reedip | ankur-gupta-f4 : all working :) dont worry .. I worked around stevemar's solution :D | 04:52 |
| ankur-gupta-f4 | K | 04:52 |
| *** john-davidge has joined #openstack-sdks | 05:02 | |
| openstackgerrit | Lv Jiawei proposed openstack/python-openstackclient master: Add extra filtering options to qos policy list https://review.openstack.org/401131 | 05:04 |
| *** john-davidge has quit IRC | 05:06 | |
| *** salv-orlando has joined #openstack-sdks | 05:11 | |
| *** salv-orlando has quit IRC | 05:15 | |
| *** rabel__b1 has quit IRC | 05:27 | |
| *** reedip has quit IRC | 06:00 | |
| *** adriant has quit IRC | 06:11 | |
| *** salv-orlando has joined #openstack-sdks | 06:12 | |
| *** salv-orlando has quit IRC | 06:17 | |
| *** salv-orlando has joined #openstack-sdks | 06:26 | |
| *** e0ne has joined #openstack-sdks | 06:51 | |
| *** gildub has quit IRC | 07:01 | |
| *** john-davidge has joined #openstack-sdks | 07:03 | |
| *** gildub has joined #openstack-sdks | 07:05 | |
| *** john-davidge has quit IRC | 07:08 | |
| *** exploreshaifali has joined #openstack-sdks | 07:18 | |
| *** salv-orl_ has joined #openstack-sdks | 07:23 | |
| *** salv-orlando has quit IRC | 07:26 | |
| *** e0ne has quit IRC | 07:28 | |
| *** Serlex has joined #openstack-sdks | 08:10 | |
| *** salv-orl_ has quit IRC | 08:10 | |
| openstackgerrit | Colleen Murphy proposed openstack/python-openstackclient master: Narrow expected responses for CheckUserInGroup https://review.openstack.org/445257 | 08:23 |
| openstackgerrit | Lv Jiawei proposed openstack/python-openstackclient master: Add status filtering options to port list https://review.openstack.org/444810 | 08:29 |
| *** exploreshaifali has quit IRC | 08:32 | |
| *** aarefiev_afk is now known as aarefiev | 08:32 | |
| *** rabel__b1 has joined #openstack-sdks | 08:42 | |
| *** ssbarnea has joined #openstack-sdks | 08:45 | |
| *** ralonsoh has joined #openstack-sdks | 08:46 | |
| *** gildub has quit IRC | 08:47 | |
| *** e0ne has joined #openstack-sdks | 08:50 | |
| *** gildub has joined #openstack-sdks | 08:51 | |
| *** salv-orlando has joined #openstack-sdks | 08:54 | |
| *** shu-mutou-AWAY is now known as shu-mutou | 08:56 | |
| *** jpich has joined #openstack-sdks | 08:58 | |
| *** john-davidge has joined #openstack-sdks | 09:04 | |
| *** exploreshaifali has joined #openstack-sdks | 09:05 | |
| *** john-davidge has quit IRC | 09:08 | |
| *** exploreshaifali has quit IRC | 09:08 | |
| *** exploreshaifali has joined #openstack-sdks | 09:08 | |
| *** john-davidge has joined #openstack-sdks | 09:46 | |
| *** gildub has quit IRC | 10:01 | |
| *** namnh has quit IRC | 10:09 | |
| *** yanyanhu has quit IRC | 10:14 | |
| *** salv-orlando has quit IRC | 10:18 | |
| *** hoangcx has quit IRC | 10:24 | |
| *** exploreshaifali has quit IRC | 10:28 | |
| *** rabel__b1 has quit IRC | 10:31 | |
| *** rabel__b1 has joined #openstack-sdks | 10:32 | |
| *** rabel_b1 has joined #openstack-sdks | 10:36 | |
| *** rabel__b1 has quit IRC | 10:38 | |
| *** jkilpatr has quit IRC | 10:39 | |
| *** salv-orlando has joined #openstack-sdks | 10:45 | |
| *** salv-orl_ has joined #openstack-sdks | 10:46 | |
| *** sdague has joined #openstack-sdks | 10:47 | |
| *** shu-mutou is now known as shu-mutou-AWAY | 10:49 | |
| *** salv-orlando has quit IRC | 10:49 | |
| *** fzdarsky_ has quit IRC | 10:50 | |
| *** salv-orl_ has quit IRC | 10:51 | |
| *** fzdarsky has joined #openstack-sdks | 10:51 | |
| *** fzdarsky has quit IRC | 10:52 | |
| *** fzdarsky has joined #openstack-sdks | 10:52 | |
| *** fzdarsky has quit IRC | 10:53 | |
| *** fzdarsky has joined #openstack-sdks | 10:53 | |
| *** rabel_b1 has quit IRC | 11:03 | |
| *** rabel has joined #openstack-sdks | 11:05 | |
| *** cdent has joined #openstack-sdks | 11:09 | |
| openstackgerrit | Lv Jiawei proposed openstack/python-openstackclient master: Add status filtering options to port list https://review.openstack.org/444810 | 11:11 |
| *** exploreshaifali has joined #openstack-sdks | 11:11 | |
| *** jkilpatr has joined #openstack-sdks | 11:19 | |
| *** jkilpatr has quit IRC | 11:27 | |
| *** namnh has joined #openstack-sdks | 11:38 | |
| *** fzdarsky is now known as fzdarsky|lunch | 11:38 | |
| *** jkilpatr has joined #openstack-sdks | 11:40 | |
| *** namnh has quit IRC | 11:43 | |
| *** namnh has joined #openstack-sdks | 11:43 | |
| *** Matias_ has quit IRC | 11:44 | |
| *** Matias_ has joined #openstack-sdks | 11:45 | |
| *** namnh has quit IRC | 11:52 | |
| rabel | does anyone know about the status of the broken image functional tests for osc? | 11:53 |
| *** dave-mccowan has joined #openstack-sdks | 12:00 | |
| *** annp has quit IRC | 12:06 | |
| *** gouthamr has joined #openstack-sdks | 12:52 | |
| *** amotoki has joined #openstack-sdks | 12:54 | |
| *** fzdarsky|lunch is now known as fzdarsky | 12:57 | |
| *** hoangcx has joined #openstack-sdks | 13:03 | |
| *** chlong has joined #openstack-sdks | 13:04 | |
| elmiko | cdent: saw your ping way too late yesterday, isn't that email basically sending us back down the openapi rabbit hole? | 13:07 |
| cdent | elmiko: I think so, but wasn't sure, so wanted to check in. | 13:08 |
| cdent | Thanks for pinging me about it though, as I completely forgot to follow up like I promised I would | 13:08 |
| elmiko | hehe =) | 13:09 |
| *** markvoelker has quit IRC | 13:11 | |
| *** markvoelker has joined #openstack-sdks | 13:16 | |
| *** rabel has quit IRC | 13:29 | |
| -openstackstatus- NOTICE: Gerrit is going to be restarted due to performance problems | 13:41 | |
| *** ChanServ changes topic to "Gerrit is going to be restarted due to performance problems" | 13:41 | |
| *** exploreshaifali has quit IRC | 13:43 | |
| -openstackstatus- NOTICE: Gerrit has been successfully restarted | 13:47 | |
| *** ChanServ changes topic to "Gerrit has been successfully restarted" | 13:47 | |
| openstackgerrit | Bence Romsics proposed openstack/python-openstacksdk master: Add port property: trunk_details https://review.openstack.org/445501 | 13:49 |
| *** ChanServ changes topic to "Gerrit is going to be restarted due to performance problems" | 13:53 | |
| -openstackstatus- NOTICE: Gerrit has been successfully restarted | 13:53 | |
| *** huanxuan has quit IRC | 14:02 | |
| *** hongbin has joined #openstack-sdks | 14:26 | |
| *** reedip has joined #openstack-sdks | 14:26 | |
| *** bobh has joined #openstack-sdks | 14:34 | |
| *** dave-mccowan has quit IRC | 14:36 | |
| *** edmondsw has joined #openstack-sdks | 14:40 | |
| openstackgerrit | Pepijn Oomen proposed openstack/python-openstacksdk master: Expose ha_state property from HA enabled L3 Agents. https://review.openstack.org/445520 | 14:50 |
| *** dave-mccowan has joined #openstack-sdks | 14:51 | |
| reedip | o/ | 14:53 |
| *** edmondsw has quit IRC | 14:53 | |
| *** ynirk has joined #openstack-sdks | 15:00 | |
| *** john-dav_ has joined #openstack-sdks | 15:12 | |
| *** john-davidge has quit IRC | 15:12 | |
| *** john-dav_ is now known as john-davidge | 15:13 | |
| ynirk | Hi, I hope I am in the right place | 15:14 |
| ynirk | I am working on an openstack infrastructure where some usernames are only numeric (12345 for example) in a specific domain | 15:14 |
| ynirk | I faced a problem with the command `openstack user show 12345 --domain Default` returning the error "get() got an unexpected keyword argument 'domain_id'" | 15:14 |
| ynirk | I first thought of a keystoneclient problem (with the bug https://bugs.launchpad.net/python-keystoneclient/+bug/1671179) but after deeper analysis I think the problem is in find_resource from osc-lib/utils.py | 15:14 |
| ynirk | All get requests (in all openstack components) made with a numeric name and kwargs might return a TypeError if the method's prototype doesn't handle kwargs. | 15:14 |
| openstack | Launchpad bug 1671179 in python-keystoneclient "Unable to retrieve a numeric only username within a domain" [Undecided,In progress] - Assigned to Julien Lavesque (ynirk) | 15:14 |
| ynirk | Wouldn't it be more coherent with the other try/except to have a 'pass' at https://github.com/openstack/osc-lib/blob/master/osc_lib/utils.py#L124 instead of a 'raise' and let the function raise a NotFound at the end if no resource was found ? | 15:14 |
| ynirk | I am more of an ops so I prefer asking for your advice before submitting a bug and a patch. | 15:14 |
| ynirk | What do you think ? | 15:14 |
| breton | ynirk: > All get requests (in all openstack components) made with a numeric name and kwargs might return a TypeError if the method's prototype doesn't handle kwargs. | 15:16 |
| breton | ynirk: why is that? | 15:16 |
| *** hoangcx has quit IRC | 15:21 | |
| dtroyer | ynirk: I think you may be right there | 15:21 |
| dtroyer | I am trying to recall what exceptions I thought should be raised at that point | 15:22 |
| dtroyer | this function is a combination of 3 or 4 of these from individual libs, so working back to that may be fun. Changing it now may also change things in unexpected ways | 15:23 |
| dtroyer | the choices are to add a type(ex) check for TypeError or to remove them altogether | 15:24 |
| ynirk | dtroyer yes exactly but I was not sure of the impact | 15:25 |
| dtroyer | I'm going to have to think on that a bit. if you have time, you may want to try proposing temoving the if in lines 120-124 and just doing a pass there and see what tests/jobs fail. | 15:25 |
| dtroyer | it would be safer to add the TypeError check though | 15:26 |
| ynirk | Ok I also think it is safer and shouldn't break anything | 15:28 |
| ynirk | I was wondering of the reason for the raise (compared to the other try/except) | 15:28 |
| ynirk | I will try to add the TypeError check and see if some tests fail | 15:31 |
| ynirk | Thanks for the feedback | 15:32 |
| *** josecastroleon has joined #openstack-sdks | 15:51 | |
| josecastroleon | hi | 15:51 |
| josecastroleon | the gate in openstackclient is failing since devstack removed glance v1 | 15:51 |
| ankur-gupta-f4 | yes | 15:51 |
| josecastroleon | shall we remove the glance v1 test? | 15:53 |
| ankur-gupta-f4 | https://www.irccloud.com/pastebin/p3o3Cgo2/ | 15:53 |
| dtroyer | no, we need to continue to support v1 for some time, for now I'd prefer to re-enable Glance v1 in DevStack | 15:54 |
| dtroyer | at least for a time | 15:54 |
| ankur-gupta-f4 | stevemar suggested doing a check first. If exception raised then skip tests | 15:54 |
| josecastroleon | fine, but then we may need to enable glance v1 in the gate | 15:54 |
| josecastroleon | right? | 15:54 |
| dtroyer | yes, that's on my list, I'm fixing cliff's gate ATM | 15:55 |
| josecastroleon | ok thx | 15:55 |
| *** markvoelker has quit IRC | 15:56 | |
| *** markvoelker has joined #openstack-sdks | 15:58 | |
| *** salv-orlando has joined #openstack-sdks | 16:03 | |
| openstackgerrit | Dean Troyer proposed openstack/cliff master: Update cmd2 fix to still work with 0.6.7 https://review.openstack.org/445552 | 16:04 |
| *** salv-orlando has quit IRC | 16:05 | |
| *** salv-orlando has joined #openstack-sdks | 16:05 | |
| dtroyer | josecastroleon, ankur-gupta-f1: https://review.openstack.org/#/c/445553/ re-enables Image v1 for OSC functional jobs | 16:06 |
| *** Kuwagata has joined #openstack-sdks | 16:06 | |
| *** jkilpatr has quit IRC | 16:10 | |
| *** salv-orlando has quit IRC | 16:13 | |
| *** aarefiev is now known as aarefiev_afk | 16:14 | |
| openstackgerrit | Merged openstack/golang-client master: Update for CTI ps4 https://review.openstack.org/444499 | 16:18 |
| *** jkilpatr has joined #openstack-sdks | 16:23 | |
| *** annegentle has joined #openstack-sdks | 16:27 | |
| openstackgerrit | Bence Romsics proposed openstack/python-openstacksdk master: Add port property: trunk_details https://review.openstack.org/445501 | 16:27 |
| ynirk | dtroyer tests pass with the two modifications. To be sure I will add the TypeError check | 16:30 |
| *** e0ne has quit IRC | 16:31 | |
| *** annegentle has quit IRC | 16:32 | |
| *** Kuwagata has quit IRC | 16:41 | |
| reedip | sindhu : hi | 16:43 |
| sindhu | reedip: hey wass up | 16:44 |
| reedip | nothin much sindhu : just wanted to know about the floating ip patch | 16:45 |
| sindhu | reedip: it's all ready right? | 16:45 |
| reedip | no comments from anyone else, I guess | 16:45 |
| reedip | :| | 16:45 |
| *** Serlex has quit IRC | 16:46 | |
| sindhu | reedip: yeah! waiting for reviews/getting merged :) | 16:46 |
| reedip | stevemar , can you come to our rescue ???? :D | 16:47 |
| *** fzdarsky is now known as fzdarsky|afk | 16:48 | |
| *** bobh has quit IRC | 16:53 | |
| *** d0ugal has quit IRC | 16:55 | |
| *** fzdarsky|afk is now known as fzdarsky | 17:01 | |
| *** reedip has quit IRC | 17:06 | |
| *** fzdarsky has quit IRC | 17:14 | |
| *** fzdarsky has joined #openstack-sdks | 17:22 | |
| *** jpich has quit IRC | 17:45 | |
| *** bobh has joined #openstack-sdks | 17:54 | |
| *** bobh has quit IRC | 17:58 | |
| *** d0ugal has joined #openstack-sdks | 17:58 | |
| *** ralonsoh has quit IRC | 18:02 | |
| *** d0ugal has quit IRC | 18:04 | |
| *** bobh has joined #openstack-sdks | 18:05 | |
| *** jkilpatr has quit IRC | 18:12 | |
| *** jkilpatr has joined #openstack-sdks | 18:13 | |
| *** annegentle has joined #openstack-sdks | 18:17 | |
| *** annegentle has quit IRC | 18:20 | |
| *** annegentle has joined #openstack-sdks | 18:20 | |
| *** annegentle has quit IRC | 18:25 | |
| *** john-davidge has quit IRC | 18:40 | |
| *** john-davidge has joined #openstack-sdks | 18:40 | |
| *** john-davidge has quit IRC | 18:44 | |
| openstackgerrit | Merged openstack/python-openstacksdk master: Add port property: trunk_details https://review.openstack.org/445501 | 18:52 |
| openstackgerrit | Merged openstack/cliff master: Update cmd2 fix to still work with 0.6.7 https://review.openstack.org/445552 | 18:54 |
| *** amotoki has quit IRC | 18:56 | |
| *** prg3 has quit IRC | 19:06 | |
| *** dave-mccowan has quit IRC | 19:26 | |
| *** john-davidge has joined #openstack-sdks | 19:41 | |
| *** john-davidge has quit IRC | 19:46 | |
| *** prg3 has joined #openstack-sdks | 19:46 | |
| *** e0ne has joined #openstack-sdks | 20:21 | |
| *** gildub has joined #openstack-sdks | 20:25 | |
| *** Matias_ has quit IRC | 20:32 | |
| *** jkilpatr has quit IRC | 20:37 | |
| *** jkilpatr has joined #openstack-sdks | 20:58 | |
| *** e0ne has quit IRC | 21:15 | |
| *** e0ne has joined #openstack-sdks | 21:17 | |
| *** gouthamr has quit IRC | 21:25 | |
| *** e0ne has quit IRC | 21:28 | |
| *** exploreshaifali has joined #openstack-sdks | 21:29 | |
| *** e0ne has joined #openstack-sdks | 21:32 | |
| *** e0ne has quit IRC | 21:42 | |
| *** john-davidge has joined #openstack-sdks | 21:42 | |
| *** john-davidge has quit IRC | 21:47 | |
| *** ZZelle has joined #openstack-sdks | 21:53 | |
| ZZelle | dtroyer, hi | 21:53 |
| *** cdent has quit IRC | 21:57 | |
| *** ssbarnea has quit IRC | 22:04 | |
| *** ssbarnea has joined #openstack-sdks | 22:05 | |
| *** ssbarnea has quit IRC | 22:05 | |
| *** bobh has quit IRC | 22:12 | |
| *** gouthamr has joined #openstack-sdks | 22:18 | |
| *** ssbarnea has joined #openstack-sdks | 22:27 | |
| *** ChanServ changes topic to "#openstack-sdks" | 22:42 | |
| *** exploreshaifali has quit IRC | 22:55 | |
| *** bobh has joined #openstack-sdks | 23:13 | |
| openstackgerrit | Julien Lavesque proposed openstack/osc-lib master: Fix find_resource exception handling on numeric names with kwargs https://review.openstack.org/445679 | 23:26 |
| *** sdague has quit IRC | 23:29 | |
| *** hongbin has quit IRC | 23:45 | |
| *** adriant has joined #openstack-sdks | 23:58 | |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!