Wednesday, 2017-01-25

*** sdague has joined #openstack-sdks00:02
openstackgerritMerged openstack/python-openstackclient: Use image client for images instead of compute  https://review.openstack.org/42468800:12
*** shu-mutou-AWAY is now known as shu-mutou00:17
*** hongbin has quit IRC00:22
*** prg3 has quit IRC00:26
*** prg3 has joined #openstack-sdks00:31
*** hoangcx has joined #openstack-sdks00:39
*** amotoki has joined #openstack-sdks00:49
*** bobh has joined #openstack-sdks00:51
*** bobh has joined #openstack-sdks00:51
*** bobh has quit IRC00:51
openstackgerritOpenStack Proposal Bot proposed openstack/python-openstackclient: Updated from global requirements  https://review.openstack.org/42327700:55
*** sdague has quit IRC01:01
*** namnh has joined #openstack-sdks01:06
*** abhiraut has quit IRC01:24
*** bobh has joined #openstack-sdks01:37
*** john-davidge has joined #openstack-sdks01:48
*** kevo has quit IRC01:48
*** john-davidge has quit IRC01:52
*** bobh has quit IRC01:57
*** bobh has joined #openstack-sdks02:14
openstackgerritSteve Martinelli proposed openstack/python-openstackclient: Add server test for image and flavor lookups  https://review.openstack.org/42490102:34
*** fzdarsky_ has joined #openstack-sdks02:39
*** gildub has quit IRC02:42
*** fzdarsky has quit IRC02:42
*** ramishra has left #openstack-sdks02:47
*** john-davidge has joined #openstack-sdks03:48
*** john-davidge has quit IRC03:53
openstackgerritMerged openstack/python-openstacksdk: Remove discover from test-requirements  https://review.openstack.org/41611803:57
reedipamotoki : ping04:01
amotokireedip: pong04:03
reedipstevemar : everything fine , or is there a fire with the release of 0.9.1304:03
reedipamotoki: I had a question regarding your comment in https://review.openstack.org/#/c/356263/04:03
stevemarreedip: getting it fixed :)04:04
reedip>>  The possible way is to change --dhcp-options to take two parameters (nargs=2): --dhcp-option <opt-name> <opt-value>.04:04
reedipstevemar : lemme know if I can help04:04
amotokireedip: ?04:05
reedipamotoki : I am not sure about how you wanted the dhcp options to be handled04:05
reedipamotoki : you stated --dhcp options can take 2 parameters (nargs = 2 )04:06
amotokireedip: in the case of dhcp option, a value can vary and it can contain even a comma.04:06
reedipamotoki : ok04:07
reedipamotoki : so the value needs to be handled specially04:07
amotokireedip: parsing strdict now depends on a comma, and the current value format forces a special parsing.04:08
reedipi mean the value parameter of dhcp-options04:08
amotokireedip: if the option takes two parameters (name and value), such parsing is no longer needed.04:08
amotokireedip: yes. the format of the value of dhcp-option is NOW opt_name=XXX,opt_value=YYY04:09
amotokireedip: this format needs parsing.04:09
amotokireedip: if we have two option, parsing is no longer needed. does it make sense?04:09
reedipamotoki : oh , so that means --dhcp-options can have [name] , [opt-name,opt-value], [ip-version]04:10
reedipamotoki : is that correct?04:10
amotokireedip: ah... I totally forget ip-version....04:11
amotokireedip: if we always have two parameters, it can be simple, but ip-version is optional, so it would be complicated.04:12
reedipamotoki : then is it opt_name,opt_value,ip_version  ?04:12
amotokireedip: my idea does not seem to work04:12
amotokireedip: yeah. that looks better04:12
amotokithat means 'opt_name,opt_value,ip_version'04:12
reedipamotoki : yes, but the classless route would have a comma separated value in the opt_value04:13
reedipamotoki : so we cannot use the default strdict option, and need to create one for ourselves04:13
amotokireedip: yes. so we need more handling for a value with comma(s)04:14
reedipamotoki : okay, got it04:14
reediplet me work on it, thanks a lot for your time :)04:14
amotokireedip: np.04:14
amotokireedip: did you see neutronclient patch which tackles this problem?04:14
reedipamotoki : not completely. But I need to relook at it because I think the changes would be applicable for the Library level of NeutronClient04:15
amotokireedip: the proposed code in neutronclient is not beautiful but works.04:17
reedipamotoki  : :) I guess you stated it correctly04:17
amotokireedip: one more thing.04:17
reedipamotoki : yes04:18
amotokireedip: in https://review.openstack.org/#/c/356263/, you changes the original author in the commit message.04:18
amotokireedip: if there is no special reason like you wrote it from scratch, the original author should be kept.04:18
amotokiand you can add youself as Co-Authored-By.04:19
reedipamotoki : understood, will do that . I wanted to release the patch so did not see the commit message changed04:19
amotokireedip: you can check more details of commit messages by 'git show --format=fuller'04:20
reedipamotoki : ok, will try with this command :)04:20
*** bobh has quit IRC04:25
openstackgerritSteve Martinelli proposed openstack/python-openstackclient: change assert_show_fields to not fail on new fields  https://review.openstack.org/42443304:26
reedipamotoki : ping, one query04:55
amotokireedip: hey04:55
reedipamotoki : just asking , is it necessary to have the separator for classless route as ',' or can we use ';'? Example : value="169.254.169.254/32;40.40.40.5"04:56
reedipamotoki : just a query04:56
amotokireedip: not sure05:02
reedipamotoki : hmm, maybe I would ask it once  ,but anyways, let me fix the current issue.  Actually , we can use ";" as a separator, but needs to be confirmed with openstackclient members05:03
reedipRuiChen, dtroyer, stevemar, ankur-gupta-f1 : suggestions requested to use ";" as a separator in https://review.openstack.org/#/c/356263/05:04
reedipin the value of dhcp-options05:04
amotokireedip: The specified value is passed down to neutron underlying dhcp server (like dnsmasq) and I think a string with comma like 169.254.169.254/32,20.20.20.1 is what we actually set.05:05
amotokireedip: so the bug author of https://bugs.launchpad.net/python-neutronclient/+bug/1605421 just wants to pass it as opt-value.05:05
openstackLaunchpad bug 1605421 in python-neutronclient "Unable to add classless-static-route in extra_dhcp_opt extension" [Medium,In progress] - Assigned to Shih-Hao Li (shihli)05:05
amotokireedip: it depends on a situation.05:06
reedipamotoki : we can change it later after parsing05:06
*** jamielennox is now known as jamielennox|away05:06
amotokireedip: but it depends on a situation and IMHO OSC should not assume such backend behavior05:06
amotokireedip: some other use cases may want to use a semi-colon.05:06
reedipamotoki : hmm05:06
reedipamotoki: okay, makes sense . The RFC which handles classless static routes doesnt state any descriptor to separate the routes, that depends on the implementation. Neutron has implemeneted it in a specific way. OSC can handle it, but yes there may be a use case for ;05:08
amotokireedip: what we need to address is to allow users to pass (opt_name = classless-static-route, opt_value = 169.254.169.254/32,20.20.20.1)05:08
amotokireedip: what kind of formatting is used is up to OSC side.05:08
amotokidouble-quote escaping is okay. special parsing for comma is okay. it is up to OSC.05:09
reedipamotoki : ok, lets see what others have to say. I will however go forward the fix for MultiKeyValue pair for now.05:11
reedipamotoki: thanks for your help :)05:11
openstackgerritMerged openstack/python-openstackclient: Updated from global requirements  https://review.openstack.org/42327705:28
*** john-davidge has joined #openstack-sdks05:49
*** john-davidge has quit IRC05:54
*** kevo has joined #openstack-sdks05:58
openstackgerritReedip proposed openstack/python-openstackclient: Add extra dhcp option to 'port create/set/unset'  https://review.openstack.org/35626306:24
openstackgerritReedip proposed openstack/python-openstackclient: Add extra dhcp option to 'port create/set/unset'  https://review.openstack.org/35626306:25
*** noama has joined #openstack-sdks06:37
*** hoangcx_ has joined #openstack-sdks06:57
openstackgerritReedip proposed openstack/python-openstackclient: Add extra dhcp option to 'port create/set/unset'  https://review.openstack.org/35626306:57
openstackgerritRui Chen proposed openstack/python-openstackclient: Rework port functional tests on json output format  https://review.openstack.org/42397006:58
openstackgerritReedip proposed openstack/python-openstackclient: Add extra dhcp option to 'port create/set/unset'  https://review.openstack.org/35626307:00
*** hoangcx has quit IRC07:00
*** namnh has quit IRC07:06
*** adriant has quit IRC07:19
openstackgerritharishchandra proposed openstack/python-openstackclient: Correctly format the empty fields of "openstack network show" o/p.  https://review.openstack.org/42473307:22
*** john-davidge has joined #openstack-sdks07:35
*** john-davidge has quit IRC07:40
*** hoangcx has joined #openstack-sdks07:46
*** e0ne has joined #openstack-sdks07:48
*** hoangcx_ has quit IRC07:48
openstackgerritharishchandra proposed openstack/python-openstackclient: Correctly format the empty fields of "openstack network show" o/p.  https://review.openstack.org/42473307:53
*** e0ne has quit IRC07:57
*** e0ne has joined #openstack-sdks08:01
*** shu-mutou is now known as shu-mutou-AFK08:22
*** ralonsoh has joined #openstack-sdks08:24
*** e0ne has quit IRC08:30
*** Matias has quit IRC08:33
*** Matias has joined #openstack-sdks08:36
*** john-davidge has joined #openstack-sdks08:36
*** Matias has quit IRC08:41
*** amotoki has quit IRC08:47
* RuiChen jump into one week vacation of Spring Festival, happy OSC new year \o/08:53
*** Matias has joined #openstack-sdks08:55
reedipRuiChen : have a great vacation :)08:59
*** hoangcx has quit IRC09:00
*** kevo has quit IRC09:09
*** Serlex has joined #openstack-sdks09:10
openstackgerritReedip proposed openstack/python-openstackclient: Add extra dhcp option to 'port create/set/unset'  https://review.openstack.org/35626309:11
*** lucas-afk is now known as lucasagomes09:27
*** annp has joined #openstack-sdks09:45
*** fzdarsky_ is now known as fzdarsky|afk09:50
*** e0ne has joined #openstack-sdks09:52
*** fzdarsky|afk has quit IRC09:55
openstackgerritharishchandra proposed openstack/python-openstackclient: Correctly format the empty fields of "openstack network show" o/p.  https://review.openstack.org/42473310:01
*** annp has quit IRC10:03
openstackgerritharishchandra proposed openstack/python-openstackclient: Correctly format the empty fields of "openstack network show" o/p.  https://review.openstack.org/42473310:12
*** openstackgerrit has quit IRC10:17
*** openstackgerrit has joined #openstack-sdks10:18
openstackgerritharishchandra proposed openstack/python-openstackclient: Correctly format the empty fields of "openstack network show" o/p.  https://review.openstack.org/42473310:18
*** amotoki has joined #openstack-sdks10:19
*** cdent has joined #openstack-sdks10:31
*** aarefiev_afk is now known as aarefiev10:32
*** dfflanders has quit IRC10:59
*** RuiChen has quit IRC11:17
*** lucasagomes is now known as lucas-hungry12:01
*** fzdarsky has joined #openstack-sdks12:10
*** d0ugal has quit IRC12:10
*** reedip_ has joined #openstack-sdks12:11
stevemardtroyer: looks like we're short rui and huanxuan -- chinese new year :)12:13
*** d0ugal has joined #openstack-sdks12:19
dtroyerstevemar: timing!12:37
stevemar:)12:38
reedip_:)12:45
reedip_Yeah, RuiChen seemed pretty happy in the afternoon12:45
-openstackstatus- NOTICE: Gerrit is going to be restarted due to slow performance12:47
-openstackstatus- NOTICE: Gerrit has been successfully restarted12:50
stevemarreedip_: its been a busy week, i don't blame him :P12:53
stevemarreedip_: i'll be very happy in about 48 hours12:53
reedip_heheheh :)12:53
openstackgerritSteve Martinelli proposed openstack/python-openstackclient: change assert_show_fields to not fail on new fields  https://review.openstack.org/42443312:56
*** lucas-hungry is now known as lucasagomes13:00
*** bobh has joined #openstack-sdks13:01
*** bobh has quit IRC13:01
*** bobh has joined #openstack-sdks13:01
*** bobh has quit IRC13:36
Cagelinping13:55
CagelinCan anyone shine some light on the availability of OpenAPI spec files for (at least) keystone and maybe nova, glance and neutron? I'm wondering if there's an ETA available for when we could use this to generate client API's to use in our company.13:56
Cagelin(I just stumbled across this: https://www.openstack.org/videos/video/openapi-as-a-standard-a-new-way-forward-for-api-documentation-design-and-tool)13:56
openstackgerritMerged openstack/js-openstack-lib: Add flavorList to Openstack wrapper  https://review.openstack.org/40661213:58
*** bobh has joined #openstack-sdks14:11
*** cleong has joined #openstack-sdks14:15
*** sdague has joined #openstack-sdks14:15
*** gouthamr has joined #openstack-sdks14:31
*** bobh has quit IRC14:31
*** fguillot has joined #openstack-sdks14:33
*** hongbin has joined #openstack-sdks14:55
*** sdague has quit IRC15:12
*** markvoelker has quit IRC15:31
*** markvoelker has joined #openstack-sdks15:32
*** bobh has joined #openstack-sdks15:32
*** markvoelker has quit IRC15:36
*** bobh has quit IRC15:37
dtroyerstevemar: https://review.openstack.org/#/c/424847/ should be ready to go now, andrey has removed his -1 and novalcient seems to be good15:39
dtroyerstevemar: also, do you want https://review.openstack.org/#/c/424433/ for stable?15:56
*** sdague has joined #openstack-sdks16:03
openstackgerritJustin A Wilson proposed openstack/python-openstackclient: Add support for Cinder API 3.3 into OSC  https://review.openstack.org/42158516:10
openstackgerritJustin A Wilson proposed openstack/python-openstackclient: Add support for Cinder API 3.3 into OSC  https://review.openstack.org/42158516:14
*** markvoelker has joined #openstack-sdks16:17
*** markvoelker_ has joined #openstack-sdks16:18
*** markvoelker has quit IRC16:22
*** annegentle has joined #openstack-sdks16:29
*** ankur-gupta-f2 has joined #openstack-sdks16:32
*** bobh has joined #openstack-sdks16:33
*** bobh has quit IRC16:38
openstackgerritJustin A Wilson proposed openstack/python-openstackclient: Add support for Cinder API 3.3 into OSC  https://review.openstack.org/42158516:43
openstackgerritSamuel Pilla proposed openstack/python-openstackclient: Adds domain specification for SetUser  https://review.openstack.org/42527616:44
openstackgerritJustin A Wilson proposed openstack/python-openstackclient: Add support for Cinder API 3.3/3.5 into OSC  https://review.openstack.org/42158516:47
openstackgerritSamuel Pilla proposed openstack/python-openstackclient: Adds domain specification for SetUser  https://review.openstack.org/42527616:55
*** markvoelker_ has quit IRC16:59
*** markvoelker has joined #openstack-sdks16:59
*** Serlex has left #openstack-sdks17:02
*** markvoelker has quit IRC17:03
openstackgerritColleen Murphy proposed openstack/python-openstackclient: Fix 'mapping set' return value  https://review.openstack.org/42529317:12
stevemardtroyer: umm17:20
stevemardtroyer: i'm having trouble with https://review.openstack.org/#/c/424433/17:21
*** reedip_ has quit IRC17:23
stevemardtroyer: the "user show" command will have new fields from keystone server17:24
stevemari was trying to fix our tests to not choke when the server adds new fields17:24
stevemarbut i'm so scatterbrained right now17:25
*** fzdarsky is now known as fzdarsky|afk17:27
stevemardtroyer: easy +2/+A https://review.openstack.org/#/c/425293/ -- we had output for a 'set' command17:30
*** bobh has joined #openstack-sdks17:34
openstackgerritDean Troyer proposed openstack/python-openstackclient: Add server_boot_from_volume() test  https://review.openstack.org/42531217:35
*** kevo has joined #openstack-sdks17:36
dtroyerstevemar: ^^^ is a preamble to https://review.openstack.org/#/c/407111/ and was the only way I could convince myself that we weren't breaking things17:36
dtroyerwhich I am still not quite certain of17:37
*** aarefiev is now known as aarefiev_afk17:37
*** bobh has quit IRC17:38
dtroyerstevemar: do you want https://review.openstack.org/#/c/424433/ for stable/ocata?17:39
openstackgerritSindhu Devale proposed openstack/python-openstackclient: OSC Quota List  https://review.openstack.org/37981317:47
*** lucasagomes is now known as lucas-afk17:54
*** ralonsoh has quit IRC17:58
*** cdent has quit IRC17:59
stevemardtroyer: i do, cause we're going to merge stuff into keystone in the next 24 hours that'll break the osc gate without it :)18:00
dtroyerah, ok.  I'll have a closer look when I finish up the block-device-mapping bits and some lunch18:03
*** sdague has quit IRC18:03
openstackgerritDean Troyer proposed openstack/python-openstackclient: Switch server create to block_device_mapping_v2  https://review.openstack.org/40711118:04
*** e0ne has quit IRC18:18
*** cdent has joined #openstack-sdks18:21
*** abhiraut has joined #openstack-sdks18:30
*** bobh has joined #openstack-sdks18:34
*** bobh has quit IRC18:39
*** Shrews has quit IRC18:46
*** Shrews has joined #openstack-sdks18:47
openstackgerritDean Troyer proposed openstack/python-openstackclient: Support "--no-property" option in volume snapshot set  https://review.openstack.org/41618218:57
*** sdague has joined #openstack-sdks19:00
*** sshank_ has quit IRC19:00
*** sshank has joined #openstack-sdks19:02
*** cdent has quit IRC19:03
*** abhiraut has quit IRC19:08
*** abhiraut has joined #openstack-sdks19:09
*** abhiraut has quit IRC19:18
*** abhiraut has joined #openstack-sdks19:26
*** sdague has quit IRC19:26
*** sdague has joined #openstack-sdks19:27
*** abhiraut has quit IRC19:27
*** abhiraut has joined #openstack-sdks19:35
*** e0ne has joined #openstack-sdks19:39
*** e0ne has quit IRC19:55
openstackgerritDean Troyer proposed openstack/python-openstackclient: Add server_boot_from_volume() test  https://review.openstack.org/42531219:56
openstackgerritDean Troyer proposed openstack/python-openstackclient: Switch server create to block_device_mapping_v2  https://review.openstack.org/40711119:57
stevemardtroyer: please send me a list of patches you want me to push/look at :)19:57
dtroyerstevemar: I've finished my look through the queue, the two at the top are my only blockers: https://review.openstack.org/425312 and https://review.openstack.org/40711119:58
dtroyerhttps://review.openstack.org/#/c/408654/ and https://review.openstack.org/#/c/378058/ are probably OK but not blocking19:59
dtroyerI would love your opinion on my last comment in https://review.openstack.org/356219, I'm may want to change my suggestion19:59
dtroyerthat's it.  I'm running to the courthouse for car tags, back in an hour or so20:00
stevemarsee ya20:03
*** sdague has quit IRC20:06
*** abhiraut has quit IRC20:11
*** john-davidge has quit IRC20:12
*** abhiraut has joined #openstack-sdks20:14
*** e0ne has joined #openstack-sdks20:17
*** sdague has joined #openstack-sdks20:18
*** abhiraut has quit IRC20:24
*** e0ne has quit IRC20:28
*** e0ne has joined #openstack-sdks20:32
*** e0ne has quit IRC20:40
*** jamielennox|away has quit IRC20:46
*** adriant has joined #openstack-sdks20:51
*** sdague has quit IRC20:53
*** sdague has joined #openstack-sdks20:54
*** jamielennox|away has joined #openstack-sdks20:56
*** jamielennox|away is now known as jamielennox20:56
*** abhiraut has joined #openstack-sdks21:08
openstackgerritSteve Martinelli proposed openstack/python-openstackclient: change assert_show_fields to not fail on new fields  https://review.openstack.org/42443321:09
*** john-davidge has joined #openstack-sdks21:13
stevemardtroyer: this should work now, finally, https://review.openstack.org/#/c/424433/621:16
stevemardtroyer: i will refactor those to -f json format ASAP21:16
*** john-davidge has quit IRC21:18
*** erlon has quit IRC21:20
dtroyerHeh, I can't run any identity functional tests against my shiny new Newton DevStack 'cause it doesn't have V2.0 or v3 in the auth URL21:20
dtroyerwait, that's not it...21:21
dtroyerah, it assumes its getting it from OS_AUTH_URL21:21
*** erlon has joined #openstack-sdks21:23
openstackgerritDean Troyer proposed openstack/python-openstackclient: Fix Identity functional tests to not require OS_AUTH_URL  https://review.openstack.org/42542121:27
dtroyerThere, ^^^'s the ticket21:27
dtroyerstevemar: wow, that got ripe on the vine: https://review.openstack.org/#/c/405122/21:31
openstackgerritDean Troyer proposed openstack/python-openstackclient: Add options to "server list" command  https://review.openstack.org/40512221:31
openstackgerritGage Hugo proposed openstack/keystoneauth: Fix ClientException message property not set properly  https://review.openstack.org/28575721:37
*** abhiraut has quit IRC21:47
*** abhiraut has joined #openstack-sdks21:50
stevemardtroyer: ah the server list one21:53
stevemarthat slipped through somehow21:53
*** cleong has quit IRC21:57
stevemardtroyer: gonna punt it through?21:58
dtroyerI think so21:59
dtroyerI'm looking for simple-ish things that would just pile up during the freeze21:59
dtroyerwhatever gets merged by the time we need to release will make it :)22:00
*** sdague has quit IRC22:02
*** fguillot has quit IRC22:04
*** abhiraut has quit IRC22:08
stevemardtroyer: your call on the block-device-mapper thing22:14
stevemari don't know nova like you do :P22:14
dtroyerI think we should do it, it's been half-done since I wrote it originally.  My concern was in breaking things and I think I've convinced myself that this doesn't do that22:14
dtroyermy worry was mostly around how the —block-device-mapping arguemtns are formatted, and that isn't part of the change22:15
dtroyerjust fixing our assumption of 'vda' as the boot device name.  boot_index is absolutely the right thing22:15
openstackgerritSteve Martinelli proposed openstack/python-openstackclient: Adds domain specification for SetUser  https://review.openstack.org/42527622:16
stevemardtroyer: ^ should be ready now22:16
stevemardtroyer: ++22:16
stevemardtroyer: right, that was my concern (the --block-device-mapping syntax) but that's not really our realm22:17
stevemarso does https://review.openstack.org/#/c/408654/322:17
stevemardtroyer: punted allowed_address through22:19
dtroyerkk22:19
dtroyerI wasn't stuck on it hard enough to block22:19
*** gouthamr has quit IRC22:24
openstackgerritMerged openstack/python-openstackclient: Remove the fixed set of choices for network_type  https://review.openstack.org/42159822:26
openstackgerritMerged openstack/python-openstackclient: Fix 'mapping set' return value  https://review.openstack.org/42529322:27
openstackgerritMerged openstack/python-openstackclient: Add --project and --project-domain option to "volume snapshot list"  https://review.openstack.org/41741022:27
dtroyerstevemar: another for the good-to-have list when you get a chance: https://review.openstack.org/39133122:32
dtroyergimmie a network!22:32
*** annegentle has quit IRC22:34
*** abhiraut has joined #openstack-sdks22:44
stevemarohhh22:45
stevemari had been avoiding tht one22:45
openstackgerritSindhu Devale proposed openstack/python-openstackclient: OSC Quota List  https://review.openstack.org/37981322:51
dtroyerstevemar:  if you dont have time thats fine…  it needs some understanding, and I wouldnt mind huanxuan's blessing too22:53
stevemardtroyer: switching gears to network meter: https://review.openstack.org/#/c/378058/15/doc/source/command-objects/network-meter-rule.rst22:54
stevemaris --remote-ip-prefix required? why is it not in [] ?22:54
dtroyerya, its required22:55
stevemardtroyer: no set command?22:56
*** abhiraut has quit IRC22:57
dtroyerI guess not…honestly I had not noticed22:57
stevemardtroyer: no biggie22:58
stevemarprobably no set command22:58
stevemardtroyer: i really hope the SDK requirements patch doesn't get -2'ed from zuul23:00
dtroyerthe failures I've seen today laready feel 'odd', but that may still be residue from whatever it was overnight that gummed up the works23:02
sindhudtroyer: ping?23:02
dtroyersindhu: hey23:02
stevemardtroyer: well the integrated queue is 70 deep... http://status.openstack.org/zuul/23:02
sindhudtroyer: any conclusion on this one:  https://review.openstack.org/#/c/383025/   ??23:03
dtroyerstevemar: but things like this puzzle me: http://logs.openstack.org/19/356219/20/gate/gate-osc-dsvm-functional-ubuntu-xenial/6d01f4f/23:03
stevemardtroyer: i'll look at https://review.openstack.org/#/c/391331/ after #dadops is done23:04
*** abhiraut has joined #openstack-sdks23:05
*** abhiraut has quit IRC23:06
dtroyersindhu: we are not just "moving over neutronclient commands" without evaluating their structure and making them fit OSC.  I will not have time to dig into this particular issue until next week sometime to answer those questions myself.  That is my suggestion for structuring the commands being implemented.23:07
sindhudtroyer: Ok cool ... thanks for taking a look. Will ping you again next week.23:10
dtroyerit would be helpful (speed things up) to have answers to those questions23:10
openstackgerritMerged openstack/python-openstackclient: change assert_show_fields to not fail on new fields  https://review.openstack.org/42443323:13
*** john-davidge has joined #openstack-sdks23:14
*** abhiraut has joined #openstack-sdks23:16
*** john-davidge has quit IRC23:18
*** abhiraut has quit IRC23:26
*** abhiraut has joined #openstack-sdks23:28
*** thingee has quit IRC23:31
openstackgerritDean Troyer proposed openstack/python-openstackclient: Support "--no-property" option in volume snapshot set  https://review.openstack.org/41618223:33
*** abhiraut has quit IRC23:34

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!