Monday, 2014-05-05

*** yamahata has quit IRC00:03
*** yamahata has joined #openstack-oslo00:08
*** shakamunyi has joined #openstack-oslo00:23
*** zhiyan_ is now known as zhiyan00:26
*** shakamunyi has quit IRC00:48
*** yamahata has quit IRC01:05
*** yamahata has joined #openstack-oslo01:05
*** shakamunyi has joined #openstack-oslo01:13
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Allow the WBE to use a preexisting executor  https://review.openstack.org/9084901:14
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Pass executor via kwargs instead of config  https://review.openstack.org/9193501:21
*** yamahata has quit IRC01:37
*** yamahata has joined #openstack-oslo01:50
*** shakamunyi has quit IRC02:57
*** praneshp has quit IRC03:11
openstackgerritMarc Abramowitz proposed a change to openstack-dev/pbr: pbr/testr_command.py: Add logging  https://review.openstack.org/8920303:13
*** dims has joined #openstack-oslo03:21
*** dims has quit IRC03:33
*** praneshp has joined #openstack-oslo03:57
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Engine _cls postfix is not correct  https://review.openstack.org/9204904:38
*** Qiming has joined #openstack-oslo05:43
Qiminghi05:43
Qiminggot a question enabling notifications05:44
Qimingcan someone help look into this?05:44
QimingI was following the ceilometer manual here: http://docs.openstack.org/developer/ceilometer/install/manual.html05:44
Qimingto do a manual configuration of notification:05:45
Qimingin heat.conf:  notification_driver=oslo.messaging.notifier.Notifier05:45
Qimingthen I got this error from heat.openstack.common.notifier.api [^[[00;36m-] ^[[01;35mFailed to load notifier oslo.messaging.notifier.Notifier. These notifications will not be sent05:46
*** praneshp has quit IRC05:47
*** bogdando has quit IRC05:59
*** bogdando has joined #openstack-oslo06:00
wingwjHi all, I have one question.06:32
wingwjhttps://review.openstack.org/#/c/74917/, https://review.openstack.org/#/c/75802/06:33
wingwjHere's two oslo-patches I abandoned them yesterday06:33
wingwjBut why the jenkins-jobs are always running?06:33
wingwjEven if the job is successful or failed..06:34
wingwjShould I need to ask this issue in #openstack-qa?06:35
*** mkoderer has joined #openstack-oslo07:09
*** dshulyak has joined #openstack-oslo07:13
*** gcb has joined #openstack-oslo07:15
GheRiveromorning all07:19
*** ihrachyshka has joined #openstack-oslo07:25
*** flaper87|afk is now known as flaper8707:29
*** yamahata has quit IRC07:36
*** openstackgerrit has quit IRC07:53
*** nacim has joined #openstack-oslo08:00
*** nacim has quit IRC09:03
*** yamahata has joined #openstack-oslo09:16
*** nacim has joined #openstack-oslo09:17
*** Qiming has quit IRC09:23
*** yamahata has quit IRC09:52
*** yamahata has joined #openstack-oslo09:52
therveDo we talk about wsme here?09:55
thervedhellmann, wsme 0.6.1 is breaking ceilometer test suite09:55
thervejd__, ^^09:56
thervehttps://github.com/stackforge/wsme/commit/c6f2b4b831435a1a347c1e10ec8179f7482b18d2 apparently09:59
silehttherve, does it fix your issue: https://review.openstack.org/#/c/92020/10:12
*** Qiming has joined #openstack-oslo10:19
*** bogdando has quit IRC10:38
*** bogdando has joined #openstack-oslo10:51
thervesileht, Except that it breaks with 0.6 if you do that.10:55
therveYou should bump requirements10:56
Qiminghi, therve11:13
therveHi11:14
silehttherve, https://review.openstack.org/#/c/92088/11:14
Qimingtherve: I am struggling with the notification_driver configuration in heat.conf11:14
therveQiming, Wrong channel11:14
thervesileht, But backward compatibility and stuff11:15
silehttherve, arf your right I have just check the wsme version in icehouse and this is wsme>=0.6 :(11:15
Qimingtherve: I do believe the configuration is about openstack.common and oslo.messaging, but which is the right channel then?11:22
silehttherve, I have updated https://review.openstack.org/#/c/92020/2 to work with 0.6 and 0.6.111:23
Qimingtherve: it is not a ceilometer problem either11:24
thervesileht, That works I guess11:24
therveQiming, That sounds like a heat problem, but go on11:24
Qimingtherve: I traced all the way where Heat sent out a notification down to openstack.common.notifier.api, where it tried to lazy load the notification_driver I specified11:27
Qimingthe message was not lost up till then11:27
Qiminghowever, I did noticed an exception that the notifier API was not able to load the driver specified11:28
therveWell what did you put in the driver11:28
QimingI set the notification_driver = oslo.messaging.notifier.Notifier11:29
therveThat's not what you supposed to put11:29
Qimingoslo.messaging has a __init__.py that imports the notify subdirectory, which includes the notifier module11:29
therveheat doesn't use oslo.messaging11:30
Qimingtherve, I understand that Heat hasn't made use of oslo.messaging yet11:31
therveQiming, Why do you try to pass it to notification_driver then?11:31
Qimingbut what I was trying to do was simply enable the notification driver from the openstack.common.notifier11:31
Qimingtherve: I want to collect some notifications from ceilometer11:32
therveTry heat.openstack.common.notifier.rpc_notifier11:32
Qimingtherve: I have tried the RPC notifier way, it didn't work well either11:33
therveWell that's what you need to use. Try to fix that instead11:33
Qimingthe problem I got there is for 'orchestration.stack.create.start/end' notifications, I can only get the 'xxxxx.end' message, never the 'xxxx.start' message11:34
Qimingit was always lost somewhere after heat called the notifier.api11:34
therveAgain we should really have this conversation in #heat11:35
Qimingtherve: that was what I guessed. I was just trying my luck here, in case I have done something wrong11:35
Qimingtherve: from the call path trace, I don't think Heat has done anything wrong, although I filed a bug yesterday11:36
Qimingit's openstack.common and/or oslo.messaging that didn't complete the job11:36
Qimingtherve: I was suspecting that the openstack.common subdirectory in Heat was lagging behind the upstream code, so I did a manual comparison (not a thorough one certainly ...).11:38
QimingI didn't find much difference there either11:38
*** dims has joined #openstack-oslo11:39
ihrachyshkadhellmann: hi! around?11:51
ihrachyshkadhellmann: ping re https://review.openstack.org/#/c/91344/5/requirements-py3.txt comments from David11:52
*** erecio has joined #openstack-oslo12:51
*** flaper87 has quit IRC12:52
*** flaper87|afk has joined #openstack-oslo12:56
*** flaper87|afk is now known as flaper8712:56
*** flaper87 has quit IRC12:56
*** flaper87 has joined #openstack-oslo12:56
*** jecarey has quit IRC13:02
*** gcb has quit IRC13:12
*** Qiming has quit IRC13:12
*** mriedem has joined #openstack-oslo13:28
*** openstackgerrit has joined #openstack-oslo13:36
openstackgerritMarc Abramowitz proposed a change to openstack-dev/pbr: pbr/testr_command.py: Add logging  https://review.openstack.org/8920313:42
*** gcb has joined #openstack-oslo13:44
*** openstackgerrit has quit IRC13:51
*** nacim has quit IRC14:01
*** nacim has joined #openstack-oslo14:19
*** Qiming has joined #openstack-oslo14:23
*** jecarey has joined #openstack-oslo14:41
*** nacim has quit IRC14:50
*** erecio has quit IRC14:53
*** erecio has joined #openstack-oslo14:54
*** nacim has joined #openstack-oslo14:58
*** jecarey_ has joined #openstack-oslo15:00
*** jecarey has quit IRC15:01
*** gcb has quit IRC15:02
*** markmcclain has joined #openstack-oslo15:25
*** zhiyan is now known as zhiyan_15:25
*** jecarey has joined #openstack-oslo15:31
*** ihrachyshka has quit IRC15:32
*** jecarey_ has quit IRC15:33
*** markmcclain has quit IRC15:34
*** markmcclain has joined #openstack-oslo15:36
*** adrian_otto has joined #openstack-oslo15:41
*** openstackgerrit has joined #openstack-oslo15:43
*** adrian_otto has quit IRC15:46
*** adrian_otto has joined #openstack-oslo15:50
*** jecarey_ has joined #openstack-oslo15:55
*** jecarey has quit IRC15:58
*** praneshp has joined #openstack-oslo16:15
*** adrian_otto has quit IRC16:17
*** yamahata has quit IRC16:21
*** yamahata has joined #openstack-oslo16:22
*** Qiming has left #openstack-oslo16:41
openstackgerritPranesh Pandurangan proposed a change to openstack/oslo-incubator: Enable configuring tcp keepalive  https://review.openstack.org/9087016:50
*** dims has quit IRC16:54
openstackgerritGeorge Peristerakis proposed a change to openstack/oslo-incubator: wrapping the mock module with six  https://review.openstack.org/8737516:58
*** nacim has quit IRC16:59
openstackgerritPranesh Pandurangan proposed a change to openstack/oslo-incubator: Enable configuring tcp keepalive  https://review.openstack.org/9087017:01
*** dims has joined #openstack-oslo17:04
*** morganfainberg_Z is now known as morganfainberg17:05
*** beekneemech is now known as bnemec17:15
*** harlowja_away is now known as harlowja17:16
*** erecio has quit IRC17:19
*** erecio has joined #openstack-oslo17:20
*** openstackgerrit has quit IRC17:20
*** openstackgerrit has joined #openstack-oslo17:24
openstackgerritGeorge Peristerakis proposed a change to openstack/oslo-incubator: wrapping the mock module with six  https://review.openstack.org/8737517:26
*** wingwj has quit IRC17:44
*** wingwj has joined #openstack-oslo17:44
*** markmcclain has quit IRC17:45
*** dims has quit IRC18:29
*** arnaud has joined #openstack-oslo18:31
*** markmcclain has joined #openstack-oslo18:40
*** bogdando has quit IRC18:41
openstackgerritPranesh Pandurangan proposed a change to openstack/oslo-incubator: Enable configuring tcp keepalive  https://review.openstack.org/9087018:51
praneshpbnemec: pin18:54
praneshp*ping18:54
bnemecpraneshp: hey18:54
praneshpbnemec:  do you know how i can run just my unittests locally before submitting to gerrit?18:55
bnemecpraneshp: You will want to install "tox" and then run "tox -e py27" in the project root.18:57
bnemecI generally install it with pip: "pip install tox<1.7"18:58
bnemecLast I checked tox 1.7 is broken with OpenStack.18:58
bnemecOh, also you will need quotes around tox<1.7 or the shell will be unhappy.18:58
harlowjapraneshp let me know if u get stuck, can help u in person18:58
praneshpharlowja: ha, yeah. bnemec yeah, my question was more like, can i run just my test18:59
harlowjayes u can18:59
praneshpnot all the py27 tests18:59
harlowjayup18:59
harlowjai can show u how, although it might involve using nosetests (instead of testr)19:00
praneshpharlowja: great, will walk over to your cube in a wwhile19:00
harlowjak19:00
praneshpthanks bnemec19:00
bnemectox -e all -- name_of_your_test19:00
bnemecpraneshp: ^19:00
harlowjaah, or that :)19:00
harlowjai sometimes just install nose to do similar, guess that works also19:00
bnemecIn most projects you can use the -- name syntax with py27 too, but oslo-incubator is a little weird so it won't work right.19:01
praneshpharlowja: bnemec that works, thanks. Except I have to use sudo. Is that expected?19:14
harlowjanot likely expected, virtualenvs shouldn't require sudo19:14
harlowjaunless u created one with sudo19:15
praneshpbnemec: I updated that change, btw.https://review.openstack.org/#/c/90870/19:26
praneshpwaiting for your +1/ feedback before I go back to the original +1s19:26
bnemecpraneshp: Already voted. :-)19:27
praneshpha, awesome, thanks :)19:27
*** yamahata has quit IRC19:33
*** dims has joined #openstack-oslo19:42
dimsdhellmann, is there an equivalent in python jdiff (for java http://www2.sys-con.com/itsg/virtualcd/java/archives/0704/doar/index.html)? Trying to see if API diffs for oslo.vmware19:56
*** jasond` has joined #openstack-oslo19:59
jasond`would someone mind reviewing this? https://review.openstack.org/#/c/91653/19:59
dimsjasond`, do you mind adding a quick test since we are exposing it?20:03
jasond`dims: sure20:05
openstackgerritCyril Roelandt proposed a change to openstack/taskflow: Add an example for the job board feature  https://review.openstack.org/9119020:15
dhellmanndims: I'm not aware of anything like that. I wonder if doxygen does it?20:21
dhellmanndims: it looks like it would be a nice thing to have; pyclbr might be a good start for building it https://docs.python.org/2/library/pyclbr.html#module-pyclbr20:23
*** dims has quit IRC20:35
*** dims has joined #openstack-oslo20:37
dimsdhellmann, thanks20:46
*** yamahata has joined #openstack-oslo20:54
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Add a cachedproperty descriptor  https://review.openstack.org/9220820:56
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Add a cachedproperty descriptor  https://review.openstack.org/9220820:56
jasond`how do you run the oslo unit tests outside of tox?  "python -m testtools.run tests.unit.test_threadgroup" gives me: AttributeError: 'module' object has no attribute 'test_threadgroup'21:01
jasond`yet "python -m testtools.run discover -l" lists tests.unit.test_threadgroup as a test suite21:02
jasond`ah, missed the "failed to import" message21:05
openstackgerritJason Dunsmore proposed a change to openstack/oslo-incubator: Make stop_timers() method public  https://review.openstack.org/9165321:07
jasond`dims: ^ i added a unit test21:08
*** boris-42 has quit IRC21:15
*** boris-42 has joined #openstack-oslo21:16
*** dims has quit IRC21:25
*** jasond` has quit IRC21:45
*** mriedem has quit IRC21:45
*** peristeri has joined #openstack-oslo21:47
peristeriHi, I'm having problems running tox -epy33 on oslo-incubator. Routes module fails to install. Any suggestions?21:48
dhellmannperisteri: can you be more specific about the error?21:51
peristerisure, the error I get is: Routes is in an unsupported or invalid wheel22:17
*** dims has joined #openstack-oslo22:17
praneshpdhellmann: ping22:33
*** dims has quit IRC22:34
*** jecarey_ has quit IRC22:35
bnemecdhellmann: Apparently we shouldn't be sorting requirements: https://review.openstack.org/#/c/92221/22:38
*** peristeri has quit IRC22:41
dhellmannbnemec: sigh22:41
bnemecdhellmann: Yay Python packaging? :-)22:42
openstackgerritDoug Hellmann proposed a change to openstack/oslo-incubator: Remove requirements_style_check.sh  https://review.openstack.org/9222922:43
dhellmannbnemec: heh22:44
*** jecarey_ has joined #openstack-oslo22:44
openstackgerritDoug Hellmann proposed a change to openstack/oslo-incubator: Remove requirements_style_check.sh  https://review.openstack.org/9222922:53
*** markmcclain has quit IRC23:13
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Allow command and connection retry configuration  https://review.openstack.org/9224623:16
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Allow command and connection retry configuration  https://review.openstack.org/9224623:27
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Allow command and connection retry configuration  https://review.openstack.org/9224623:36
*** flaper87 is now known as flaper87|afk23:43

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