Wednesday, 2016-06-08

*** michaelgugino has quit IRC00:10
*** reedip has joined #openstack-sdks00:13
*** reedip has quit IRC00:15
*** amotoki has joined #openstack-sdks00:31
*** reedip has joined #openstack-sdks00:33
*** reedip has quit IRC00:35
*** reedip has joined #openstack-sdks00:35
*** reedip has quit IRC00:36
*** amotoki has quit IRC00:36
*** salv-orlando has quit IRC00:53
*** reedip has joined #openstack-sdks00:53
*** salv-orlando has joined #openstack-sdks00:53
*** reedip has quit IRC00:55
*** fzdarsky_ has joined #openstack-sdks01:05
*** zhurong has joined #openstack-sdks01:07
*** fzdarsky|afk has quit IRC01:08
*** reedip has joined #openstack-sdks01:13
*** markvoelker has joined #openstack-sdks01:13
*** reedip has quit IRC01:15
*** markvoelker has quit IRC01:18
*** reedip has joined #openstack-sdks01:31
*** amotoki has joined #openstack-sdks01:32
*** reedip has quit IRC01:35
*** amotoki has quit IRC01:36
*** gouthamr has quit IRC01:40
*** yanyanhu has joined #openstack-sdks01:44
*** reedip has joined #openstack-sdks01:52
*** reedip has quit IRC01:55
*** gildub has joined #openstack-sdks01:58
openstackgerritsunyajing proposed openstack/python-openstackclient: Fix compute service set cammand  https://review.openstack.org/32431502:00
*** reedip has joined #openstack-sdks02:11
*** aohuanxuan has joined #openstack-sdks02:13
openstackgerritsunyajing proposed openstack/python-openstackclient: fix image delete multiple argument error  https://review.openstack.org/32366702:15
*** reedip has quit IRC02:15
openstackgerritHuanxuan Ao proposed openstack/python-openstackclient: Error handling for KeyValueAction class.  https://review.openstack.org/32639702:16
*** amotoki has joined #openstack-sdks02:33
*** reedip has joined #openstack-sdks02:34
*** reedip has quit IRC02:35
*** amotoki has quit IRC02:37
*** gildub has quit IRC02:38
*** singhj has quit IRC02:41
*** coolsvap has joined #openstack-sdks02:44
*** openstackgerrit has quit IRC02:47
*** openstackgerrit has joined #openstack-sdks02:48
*** sheel has joined #openstack-sdks02:49
openstackgerritsunyajing proposed openstack/python-openstackclient: Modify unit tests of compute agent delete  https://review.openstack.org/32679503:06
openstackgerritsunyajing proposed openstack/python-openstackclient: Fix compute service set command  https://review.openstack.org/32431503:08
openstackgerritTang Chen proposed openstack/python-openstackclient: Make set/unset commands in network return normally when nothing specified  https://review.openstack.org/32506303:15
openstackgerritzhang.xiuhua proposed openstack/python-openstackclient: Standardization of logger usage in network and compute      Fix self.app.log in network and compute in this commit "Implements: blueprint log-usage"  https://review.openstack.org/32680003:17
*** gildub has joined #openstack-sdks03:25
*** gildub has quit IRC03:33
*** amotoki has joined #openstack-sdks03:34
*** gildub has joined #openstack-sdks03:34
tangchenstevemar: Hi Steve, I noticed that keystoneauth does not have i18n support. Do we need it ?03:36
stevemartangchen: there aren't that many user facing messages?03:36
tangchenstevemar: Well, there are logs in it.03:37
stevemartangchen: oh also, we don't want to depend too much on oslo for keystoneauth03:38
*** amotoki has quit IRC03:38
stevemartangchen: cause we want swift and other non-openstack applications to be able to use it, and not install all the oslo dependencies03:38
stevemartangchen: that's why the requirements file is very small: https://github.com/openstack/keystoneauth/blob/master/requirements.txt03:39
tangchenstevemar: OK, I see.03:40
openstackgerritHuanxuan Ao proposed openstack/osc-lib: Error handling for KeyValueAction class.  https://review.openstack.org/32680603:43
openstackgerritJamie Lennox proposed openstack-dev/os-http: Add gitreview for gerrit  https://review.openstack.org/32680703:47
tangchenstevemar: One more question. For example, heat is calling many other clients' APIs to deploy a cloud. I think sooner or later, heat will begin to use OSC instead. But OSC does not seem to provide APIs, but only commands, right ?03:47
tangchenstevemar: So should heat call SDK directly ?  Of course, SDK is not ready to use in heat, I think.03:48
stevemartangchen: right. why not continue to use the public APIs that the clients provide (or the SDK)?03:48
tangchenstevemar: So, although OSC will replace novaclient, neutronclient, and so on, these clients will still work as API libraries ?03:50
stevemartangchen: i believe so!03:50
stevemartangchen: OSC is just meant to replace the CLIs of those projects, not the APIs they provide03:50
openstackgerritJamie Lennox proposed openstack-dev/os-http: Update repo sources to openstack infra  https://review.openstack.org/32680903:51
tangchenstevemar: OK, thanks. :)03:53
openstackgerritMerged openstack/python-openstackclient: Update unit test test_extension with fake class  https://review.openstack.org/32527404:12
*** salv-orl_ has joined #openstack-sdks04:24
*** salv-orlando has quit IRC04:27
openstackgerritMerged openstack/python-openstackclient: Error handling for KeyValueAction class.  https://review.openstack.org/32639704:30
*** amotoki has joined #openstack-sdks04:34
*** singhj has joined #openstack-sdks04:34
*** amotoki has quit IRC04:39
*** lhcheng has joined #openstack-sdks04:42
*** fzdarsky_ has quit IRC04:49
*** jaosorior has joined #openstack-sdks04:50
*** salv-orl_ has quit IRC05:03
*** salv-orlando has joined #openstack-sdks05:03
openstackgerritMerged openstack/python-openstackclient: Fix compute service set command  https://review.openstack.org/32431505:03
openstackgerritMerged openstack/osc-lib: Error handling for KeyValueAction class.  https://review.openstack.org/32680605:05
*** singhj has quit IRC05:09
*** gmann has quit IRC05:10
tangchenstevemar: Hi Steve, what does osc-lib aim to do ?05:11
stevemartangchen: hey!05:11
stevemartangchen: provide a base layer for all osc plugins05:12
stevemarit'll provide parseractions, command, general utilities, things needed for plugins05:12
*** gmann has joined #openstack-sdks05:12
tangchenstevemar: OK, I see. Thx.05:12
stevemartangchen: so plugins don't have to add python-openstackclient to their requirements, just osc-lib! it'll save them a lot of imports05:13
tangchenstevemar: OH, I see the doc in the repo. :)05:14
stevemartangchen: we haven't released it yet :)05:15
tangchenyep05:16
stevemartangchen: eventually, i think we want to do something like this in osc: https://review.openstack.org/#/c/316594/05:16
stevemartangchen: deprecate the overlapping parts in osc, and re-wire things to call osc-lib05:17
tangchenstevemar: OK.05:18
stevemarheading out for the nigth :)05:19
tangchenhave a good night :)05:19
*** amotoki has joined #openstack-sdks05:35
*** amotoki has quit IRC05:39
openstackgerritHuanxuan Ao proposed openstack/python-openstackclient: Clean up fakes.py in volumev2  https://review.openstack.org/32683205:42
*** lifeless has quit IRC06:13
*** e0ne has joined #openstack-sdks06:21
openstackgerritTang Chen proposed openstack/python-openstackclient: Trivial: Fix coding style in examples in doc  https://review.openstack.org/32684906:29
openstackgerritTang Chen proposed openstack/python-openstackclient: Make set/unset commands in network return normally when nothing specified  https://review.openstack.org/32506306:34
*** lhcheng has quit IRC06:47
*** openstackgerrit has quit IRC06:48
*** openstackgerrit has joined #openstack-sdks06:49
*** gildub has quit IRC06:52
*** fzdarsky_ has joined #openstack-sdks06:59
*** gildub has joined #openstack-sdks07:01
*** gildub has quit IRC07:02
*** salv-orlando has quit IRC07:02
*** gildub has joined #openstack-sdks07:03
*** salv-orlando has joined #openstack-sdks07:03
*** coolsvap has quit IRC07:04
*** coolsvap has joined #openstack-sdks07:04
*** e0ne has quit IRC07:06
*** salv-orlando has quit IRC07:32
*** salv-orlando has joined #openstack-sdks07:32
*** amotoki has joined #openstack-sdks07:36
*** amotoki has quit IRC07:41
*** arxcruz has joined #openstack-sdks07:47
*** fzdarsky_ has quit IRC07:47
*** openstackgerrit has quit IRC07:48
*** openstackgerrit has joined #openstack-sdks07:49
*** cdent has joined #openstack-sdks08:05
*** salv-orlando has quit IRC08:10
*** lucas-dinner is now known as lucasagomes08:10
*** salv-orlando has joined #openstack-sdks08:11
*** gildub has quit IRC08:19
*** jaosorior has quit IRC08:25
*** jaosorior has joined #openstack-sdks08:25
*** kromanenko__ has joined #openstack-sdks08:28
*** kromanenko has joined #openstack-sdks08:28
openstackgerritRui Chen proposed openstack/python-openstackclient: Remove duplicate file logger formatter setting  https://review.openstack.org/32691608:31
*** amotoki has joined #openstack-sdks08:37
*** amotoki has quit IRC08:42
*** yanyanhu has quit IRC08:43
*** openstackgerrit has quit IRC08:48
*** openstackgerrit has joined #openstack-sdks08:49
*** e0ne has joined #openstack-sdks08:50
openstackgerritTang Chen proposed openstack/python-openstackclient: Transfer "ip floating add/remove" to "server add/remove  floating ip"  https://review.openstack.org/30250808:54
openstackgerritTang Chen proposed openstack/python-openstackclient: Transfer "ip floating pool list" to "floating ip pool list"  https://review.openstack.org/30038808:54
openstackgerritTang Chen proposed openstack/python-openstackclient: Transfer "ip fixed add/remove" to "server add/remove fixed ip"  https://review.openstack.org/30259008:54
openstackgerritTang Chen proposed openstack/python-openstackclient: Transfer "ip floating CRUD" to "floating ip CRUD"  https://review.openstack.org/30268708:54
openstackgerritsunyajing proposed openstack/python-openstackclient: fix image delete multiple argument error  https://review.openstack.org/32366708:55
openstackgerritJamie Lennox proposed openstack-dev/os-http: Update repo sources to openstack infra  https://review.openstack.org/32680908:55
*** arxcruz has quit IRC09:05
*** fzdarsky_ has joined #openstack-sdks09:07
*** fzdarsky_ is now known as fzdarsky09:07
openstackgerritsunyajing proposed openstack/python-openstackclient: Fix network  https://review.openstack.org/32693909:10
openstackgerritMerged openstack-dev/os-http: Update repo sources to openstack infra  https://review.openstack.org/32680909:25
openstackgerritMerged openstack-dev/os-http: Add gitreview for gerrit  https://review.openstack.org/32680709:30
*** amotoki has joined #openstack-sdks09:38
*** amotoki has quit IRC09:42
*** markvoelker has joined #openstack-sdks09:53
openstackgerritMerged openstack/python-openstackclient: Clean up fakes.py in volumev2  https://review.openstack.org/32683209:54
*** amotoki has joined #openstack-sdks09:56
*** zhurong has quit IRC10:08
*** jamie_h has joined #openstack-sdks10:12
*** aohuanxuan has quit IRC10:16
*** salv-orl_ has joined #openstack-sdks10:25
*** salv-orlando has quit IRC10:28
openstackgerritRui Chen proposed openstack/python-openstackclient: Fix console url show command broken  https://review.openstack.org/32698110:31
*** salv-orl_ has quit IRC10:34
*** salv-orlando has joined #openstack-sdks10:34
*** lifeless has joined #openstack-sdks10:35
*** sdague has joined #openstack-sdks10:42
*** RuiChen has quit IRC10:46
*** lifeless has quit IRC10:47
*** lifeless_ has joined #openstack-sdks10:47
*** rtheis has joined #openstack-sdks10:50
*** d0ugal has quit IRC10:59
*** d0ugal has joined #openstack-sdks11:00
*** d0ugal has quit IRC11:09
*** e0ne_ has joined #openstack-sdks11:11
*** e0ne has quit IRC11:13
*** d0ugal has joined #openstack-sdks11:32
*** lucasagomes is now known as lucas-afk11:35
*** gildub has joined #openstack-sdks11:51
*** markvoelker has quit IRC11:56
*** salv-orlando has quit IRC11:59
*** salv-orlando has joined #openstack-sdks12:00
*** zhurong has joined #openstack-sdks12:10
*** markvoelker has joined #openstack-sdks12:12
*** salv-orl_ has joined #openstack-sdks12:15
*** zhurong has quit IRC12:19
*** salv-orlando has quit IRC12:19
*** zhurong has joined #openstack-sdks12:22
*** cdent has quit IRC12:41
*** gildub has quit IRC12:41
*** singhj has joined #openstack-sdks12:42
*** lucas-afk is now known as lucasagomes12:44
openstackgerritBrian Curtin proposed openstack/python-openstacksdk: Allow resources to check their equality  https://review.openstack.org/32671412:46
*** thrash has quit IRC12:48
*** thrash has joined #openstack-sdks12:50
*** thrash has quit IRC12:50
*** thrash has joined #openstack-sdks12:50
*** singhj has quit IRC12:55
*** edmondsw has joined #openstack-sdks13:00
*** gouthamr has joined #openstack-sdks13:02
*** cdent has joined #openstack-sdks13:10
*** sheel has quit IRC13:25
*** singhj has joined #openstack-sdks14:06
*** cdent has quit IRC14:08
*** singhj has quit IRC14:11
*** erlon has joined #openstack-sdks14:21
*** singhj has joined #openstack-sdks14:24
*** jaosorior has quit IRC14:26
*** rtheis_ has joined #openstack-sdks14:39
*** rtheis has quit IRC14:40
*** cleong has joined #openstack-sdks14:41
*** michaelgugino has joined #openstack-sdks14:45
*** rtheis has joined #openstack-sdks14:49
*** rtheis_ has quit IRC14:51
*** salv-orl_ has quit IRC14:56
*** salv-orlando has joined #openstack-sdks14:57
*** zhurong has quit IRC15:02
*** cdent has joined #openstack-sdks15:05
*** sheel has joined #openstack-sdks15:07
*** e0ne_ is now known as e0ne15:11
*** chlong has quit IRC15:58
*** michaelgugino has quit IRC16:04
*** coolsvap has quit IRC16:16
*** salv-orlando has quit IRC16:18
*** salv-orlando has joined #openstack-sdks16:18
*** salv-orl_ has joined #openstack-sdks16:24
*** salv-orlando has quit IRC16:27
*** e0ne has quit IRC16:30
*** fzdarsky is now known as fzdarsky|afk16:31
*** d0ugal has quit IRC16:33
openstackgerritDean Troyer proposed openstack/osc-lib: Backport --os-beta-command  https://review.openstack.org/32723216:33
openstackgerritDean Troyer proposed openstack/osc-lib: Backport log fix  https://review.openstack.org/32723316:33
openstackgerritDean Troyer proposed openstack/osc-lib: Backport i18n fixes  https://review.openstack.org/32723416:33
*** michaelgugino has joined #openstack-sdks16:34
dtroyerstevemar: ^^^  These are the changes I see to the osc-lib files in osc since the split.16:34
dtroyerrtheis: ^^^ too16:34
dtroyersince 2.6.0 is out, I'd like to release osc-lib 0.1.0 to match so we can get ready to do actual testing with it16:35
*** kromanenko__ has quit IRC16:37
*** kromanenko has quit IRC16:38
rtheisdtroyer: thanks16:39
*** lhcheng has joined #openstack-sdks16:45
*** lucasagomes is now known as lucas-dinner16:48
*** d0ugal has joined #openstack-sdks16:49
*** singhj has quit IRC17:31
*** e0ne has joined #openstack-sdks17:32
stevemardtroyer: dhellmann: hehe, your "lpbug" links failed hard in the release note to the mailing list :)17:32
*** coolsvap has joined #openstack-sdks17:33
stevemar <SYSTEM MESSAGE: <string>:14: (ERROR/3) Unknown interpreted text role "lpbug".>17:33
stevemardtroyer: dhellmann http://lists.openstack.org/pipermail/openstack-announce/2016-June/001183.html17:33
*** singhj has joined #openstack-sdks17:34
*** singhj has quit IRC17:38
*** coolsvap has quit IRC17:39
*** e0ne has quit IRC17:43
*** e0ne has joined #openstack-sdks17:50
*** salv-orl_ has quit IRC17:53
*** salv-orlando has joined #openstack-sdks17:53
*** e0ne has quit IRC17:53
*** singhj has joined #openstack-sdks18:00
*** jamie_h has quit IRC18:07
-openstackstatus- NOTICE: Zuul has been restarted to correct an error condition. Events since 17:30 may have been missed; please 'recheck' your changes if they were uploaded since then, or have "NOT_REGISTERED" errors.18:11
*** gouthamr has quit IRC18:45
openstackgerritMerged openstack/osc-lib: Backport --os-beta-command  https://review.openstack.org/32723218:47
openstackgerritMerged openstack/osc-lib: Backport log fix  https://review.openstack.org/32723318:47
openstackgerritMerged openstack/osc-lib: Backport i18n fixes  https://review.openstack.org/32723418:48
*** gouthamr has joined #openstack-sdks19:01
*** alex_xu has quit IRC19:02
*** alex_xu has joined #openstack-sdks19:06
*** e0ne has joined #openstack-sdks19:13
*** salv-orlando has quit IRC19:14
*** salv-orlando has joined #openstack-sdks19:14
*** fzdarsky|afk has quit IRC19:18
*** shu-mutou-AFK has quit IRC19:37
*** salv-orlando has quit IRC19:39
*** salv-orlando has joined #openstack-sdks19:40
*** singhj has quit IRC19:40
*** singhj has joined #openstack-sdks20:03
*** e0ne has quit IRC20:04
*** cleong has quit IRC20:08
*** singhj has quit IRC20:17
openstackgerritBrian Curtin proposed openstack/python-openstacksdk: Remove type=timestamp usages  https://review.openstack.org/32731520:18
*** singhj has joined #openstack-sdks20:20
dhellmannstevemar , dtroyer : d'oh20:30
*** sheel has quit IRC20:35
*** gouthamr has quit IRC20:43
dtroyerdhellmann: I hope that can be completed as d'oh-nut20:45
*** openstackgerrit has quit IRC20:48
*** openstackgerrit has joined #openstack-sdks20:49
*** erlon has quit IRC20:56
dhellmanndtroyer : sometimes I feel like a nut, sometimes I don't20:59
*** lhcheng has quit IRC21:00
*** lhcheng has joined #openstack-sdks21:05
*** michaelgugino has quit IRC21:05
*** chlong has joined #openstack-sdks21:05
*** lifeless_ is now known as lifeless21:30
*** cdent has quit IRC21:54
openstackgerritOpenStack Proposal Bot proposed openstack/python-openstackclient: Updated from global requirements  https://review.openstack.org/32738722:04
*** gouthamr has joined #openstack-sdks22:06
*** singhj has quit IRC22:07
*** salv-orl_ has joined #openstack-sdks22:25
*** salv-orlando has quit IRC22:28
*** edmondsw has quit IRC22:37
*** singhj has joined #openstack-sdks22:38
*** singhj has quit IRC22:42
*** salv-orl_ has quit IRC22:45
*** salv-orlando has joined #openstack-sdks22:46
*** lhcheng has quit IRC22:48
*** lhcheng has joined #openstack-sdks22:55
*** amotoki has quit IRC22:56
*** sdague has quit IRC22:59
*** amotoki has joined #openstack-sdks23:02
*** bnemec has quit IRC23:11
*** markvoelker has quit IRC23:13
*** jgriffith is now known as jgriffith_away23:14
*** lhcheng has quit IRC23:14
*** lhcheng has joined #openstack-sdks23:15
*** gouthamr_ has joined #openstack-sdks23:15
*** gouthamr has quit IRC23:18
*** bnemec has joined #openstack-sdks23:19
*** lhcheng has quit IRC23:31
*** lhcheng has joined #openstack-sdks23:31
*** lhcheng has quit IRC23:40
*** markvoelker has joined #openstack-sdks23:44
*** gildub has joined #openstack-sdks23:48
*** markvoelker has quit IRC23:49

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