Friday, 2015-11-06

*** sputnik13 has joined #openstack-oslo00:00
*** itisha has quit IRC00:01
*** freyes has joined #openstack-oslo00:02
*** mc_nair has joined #openstack-oslo00:07
*** sputnik13 has quit IRC00:08
*** sputnik13 has joined #openstack-oslo00:10
*** pratikmallya has joined #openstack-oslo00:11
*** yamamoto has joined #openstack-oslo00:16
*** takedakn has joined #openstack-oslo00:19
*** sputnik13 has quit IRC00:26
*** sputnik13 has joined #openstack-oslo00:40
*** jamielennox is now known as jamielennox|away00:46
*** jamielennox|away is now known as jamielennox00:47
*** sputnik13 has quit IRC00:48
*** sputnik13 has joined #openstack-oslo00:48
*** dims has joined #openstack-oslo00:52
*** sputnik13 has quit IRC00:57
*** mc_nair has quit IRC00:57
*** jamielennox is now known as jamielennox|away00:58
*** sputnik13 has joined #openstack-oslo01:04
*** sputnik13 has quit IRC01:05
*** jamielennox|away is now known as jamielennox01:06
openstackgerritJoshua Harlow proposed openstack/taskflow: Track dirtiness of models and use during saving (WIP)  https://review.openstack.org/24144101:06
dimsharlowja : need your opinion on https://review.openstack.org/#/c/240371/ when you get a chance please01:08
harlowjalol01:08
harlowjadamn, thought we killed that one :-P01:08
harlowjadims ok i think the warning could be slightly better, but i guess if this is needed its ok01:13
*** dims has quit IRC01:17
*** pratikmallya has quit IRC01:30
*** bana_k has joined #openstack-oslo01:35
bana_koslo_messaging is throwing an warning after server.wait()01:37
bana_k2015-11-06 00:00:52.747 1271 WARNING oslo_messaging.server [-] wait() should have been called after stop() as wait() waits for existing messages to finish processing, it has been 4.00 seconds and stop() still has not been called01:37
bana_ki see that some code beein modified around this warning in recent time.01:37
bana_kany idea why this warning is showing up?01:38
bana_kthat too every 1 sec01:38
*** yamamoto has quit IRC01:38
harlowjabana_k yes i know why01:40
*** salv-orlando has joined #openstack-oslo01:41
bana_kohoo,cool01:43
bana_kis anything special we need to do now?01:44
harlowjacall stop before wait :)01:44
harlowjabasically wait() waits until the server is dead01:45
bana_kIf i do that it will just stops the process01:45
bana_kit kills the server01:45
bana_kbut we want to wait01:45
harlowjawho calls stop?01:46
harlowjanobody?01:46
bana_kI only tried calling stop before wait01:46
bana_khttp://docs.openstack.org/developer/oslo.messaging/server.html01:46
harlowjaright so stop and wait are both for shutting down a server01:47
bana_koh ok! got it01:47
harlowjastop() to stop it, wait() to wait until its really stopped01:47
harlowjathe new log messaging is to tell people they might be doing something wrong01:48
harlowjaif they just call wait, and have never called stop01:48
harlowja*which is a misusage of the intended api01:48
bana_koh sweet. looks like it worked :D01:48
harlowjaya, typically u do start(), <run until ctrl-c or something> , stop(), wait()01:49
harlowja<run until ctrl-c or something> is your 'program run loop'01:49
harlowjamake sense?01:49
bana_kyes sir!01:49
harlowjathe example @ http://docs.openstack.org/developer/oslo.messaging/server.html needs a fix01:49
harlowjanot exactly right, lol01:49
harlowjawant to do a review for that, or shall i?01:50
bana_khe he he thought so01:50
harlowjareview/commit01:50
bana_kI can try that out01:51
bana_kdo we need to raise a bug before tht ?01:51
*** pratikmallya has joined #openstack-oslo01:52
harlowjaif u want, small fix, don't think bug needed, but your choice01:52
bana_kok01:52
*** tobe has joined #openstack-oslo01:55
bana_kharlowja : Can u please give me git link for the same. I tried looking for01:57
harlowjasure01:58
harlowjabana_k https://github.com/openstack/oslo.messaging/blob/master/oslo_messaging/rpc/server.py#L7201:58
bana_kthanks01:59
*** salv-orlando has quit IRC01:59
*** takedakn has quit IRC02:01
bana_kharlowja: we don't have a stop there, is it because of the endpoint is doing that in its stop function ?02:05
harlowjahmmmm, bana_k good point02:05
harlowjathats confusing :-/02:06
harlowjai don't even think that example works02:06
bana_koh is it02:07
harlowjabana_k want to perhaps tweak that example to be better?02:07
harlowjawell just look at02:07
harlowja        def stop(self, ctx):02:07
harlowja            if server:02:07
harlowja                self.server.stop()02:07
harlowjaif server refers to the rpc server from the module/global scope02:07
harlowjaself.server then seems to refer to whats sent in via __init__02:07
harlowjaServerControlEndpoint(None),02:07
harlowjawhich is apparently None ?02:07
harlowjacalling .stop() on None isn't going to end well :-/02:08
harlowjaunless i'm reading it wrong02:08
bana_koops02:08
bana_kyes02:08
bana_kwhat u said makes sense02:08
harlowjaya, that code is weird, ha02:08
harlowjaexample fail :-P02:08
bana_khe he he02:08
bana_kso I can remove that function n just add stop in the bottom02:09
harlowjacan u also make sure the example runs correctly :)02:09
harlowjai'd be fine with that if it works, ha02:09
harlowjavs not working, lol02:09
bana_kyea I can try that02:09
harlowjathx02:10
harlowjabbl02:10
*** takedakn has joined #openstack-oslo02:13
*** browne has quit IRC02:23
*** ndipanov has joined #openstack-oslo02:23
*** salv-orlando has joined #openstack-oslo02:27
*** yamamoto has joined #openstack-oslo02:28
*** mtanino has quit IRC02:34
*** bana_k has quit IRC02:36
*** salv-orlando has quit IRC02:49
*** pratikmallya has quit IRC02:54
*** SurajD has joined #openstack-oslo03:10
*** ndipanov has quit IRC03:16
*** salv-orlando has joined #openstack-oslo03:19
*** browne has joined #openstack-oslo03:24
*** boris-42 has joined #openstack-oslo03:24
*** salv-orlando has quit IRC03:40
*** xianghui has joined #openstack-oslo03:46
xianghuiHi guys, anyone can kindly point me out what would be the best way to upgrade oslo.messaging? is it possible without downtime.03:52
xianghui'upgrade' here I mean do a little patc without version changed, and I want to aplly it to all nova services03:53
xianghuido I need to restart nova services and rabbitmq?03:53
xianghuithanks :)03:53
xianghui/s/patc/patch03:53
*** gcb has quit IRC03:57
*** links has joined #openstack-oslo03:59
*** itisha has joined #openstack-oslo04:07
*** SurajD has quit IRC04:13
*** SurajD has joined #openstack-oslo04:15
*** salv-orlando has joined #openstack-oslo04:40
*** salv-orlando has quit IRC04:49
*** amotoki has joined #openstack-oslo04:51
*** gcb has joined #openstack-oslo05:05
*** jerrygb_ has quit IRC05:18
*** SurajD has quit IRC05:19
*** SurajD has joined #openstack-oslo05:22
*** pratikmallya has joined #openstack-oslo05:26
*** pratikmallya has quit IRC05:31
*** zzzeek has quit IRC05:34
*** zzzeek has joined #openstack-oslo05:42
*** zzzeek has quit IRC05:47
*** nikhil_k has joined #openstack-oslo05:48
*** nikhil has quit IRC05:48
*** zzzeek has joined #openstack-oslo05:50
*** zzzeek has quit IRC05:58
*** SurajD has quit IRC06:16
*** SurajD has joined #openstack-oslo06:17
*** itisha has quit IRC06:21
*** harlowja_at_home has joined #openstack-oslo06:26
*** salv-orlando has joined #openstack-oslo06:29
*** openstackgerrit has quit IRC06:31
*** openstackgerrit has joined #openstack-oslo06:31
*** harlowja_at_home has quit IRC06:37
*** david-lyle has joined #openstack-oslo06:40
*** salv-orlando has quit IRC06:41
*** david-lyle has quit IRC06:45
*** RuiChen has joined #openstack-oslo06:50
RuiChenHi, anybody can help to take a look this patch https://review.openstack.org/#/c/228797/ ?06:51
*** jamielennox is now known as jamielennox|away06:59
*** e0ne has joined #openstack-oslo07:10
*** droyal has quit IRC07:14
*** salv-orlando has joined #openstack-oslo07:17
*** SurajD has quit IRC07:18
*** nkrinner has joined #openstack-oslo07:18
*** salv-orlando has quit IRC07:19
*** salv-orlando has joined #openstack-oslo07:20
*** SurajD has joined #openstack-oslo07:21
*** e0ne has quit IRC07:21
openstackgerritAngus Lees proposed openstack/oslo.privsep: Initial basic privsep functionality  https://review.openstack.org/23833307:22
*** takedakn has quit IRC07:28
*** takedakn has joined #openstack-oslo07:42
*** shardy has joined #openstack-oslo07:49
*** ihrachys has joined #openstack-oslo07:58
*** pratikmallya has joined #openstack-oslo08:00
*** SurajD has quit IRC08:37
*** zigo has quit IRC08:37
*** zigo has joined #openstack-oslo08:42
*** SurajD has joined #openstack-oslo08:42
*** openstackstatus has quit IRC08:42
*** takedakn has quit IRC08:48
*** browne has quit IRC08:55
*** yassine has joined #openstack-oslo08:59
*** SurajD has quit IRC09:02
*** links has quit IRC09:11
*** achanda has quit IRC09:21
*** e0ne has joined #openstack-oslo09:27
*** cdent has joined #openstack-oslo09:38
*** droyal has joined #openstack-oslo09:40
*** tobe has quit IRC09:55
*** otherwiseguy has quit IRC10:28
*** otherwiseguy has joined #openstack-oslo10:30
*** ihrachys has quit IRC10:37
*** ihrachys has joined #openstack-oslo10:38
*** shardy has quit IRC10:46
*** yamamoto has quit IRC10:48
*** jamielennox|away is now known as jamielennox10:49
*** jaosorior has joined #openstack-oslo11:10
*** jamielennox is now known as jamielennox|away11:11
*** achanda has joined #openstack-oslo11:22
*** achanda has quit IRC11:26
*** dims has joined #openstack-oslo11:27
*** yamamoto has joined #openstack-oslo11:32
*** yamamoto has quit IRC11:32
*** yamamoto has joined #openstack-oslo11:32
*** yamamoto_ has joined #openstack-oslo11:33
*** pratikmallya has quit IRC11:34
*** yamamoto has quit IRC11:36
*** SurajD has joined #openstack-oslo11:38
openstackgerritDavanum Srinivas (dims) proposed openstack/oslo.reports: Fix Transition to SIGUSR2 in oslo.reports breaks upgrade  https://review.openstack.org/24037111:40
openstackgerritDavanum Srinivas (dims) proposed openstack/oslo.reports: Fix Transition to SIGUSR2 in oslo.reports breaks upgrade  https://review.openstack.org/24037111:43
*** jerrygb has joined #openstack-oslo11:54
*** RuiChen has quit IRC12:03
*** RuiChen has joined #openstack-oslo12:04
*** SurajD has quit IRC12:18
*** SurajD has joined #openstack-oslo12:19
*** achanda has joined #openstack-oslo12:24
*** achanda has quit IRC12:30
*** zigo has quit IRC12:36
*** zigo has joined #openstack-oslo12:37
*** RuiChen has quit IRC12:40
*** amrith is now known as _amrith_12:42
*** RuiChen has joined #openstack-oslo12:43
*** SurajD has quit IRC12:50
*** jeckersb is now known as jeckersb_gone12:52
*** SurajD has joined #openstack-oslo12:53
*** boris-42 has quit IRC12:58
*** gordc has joined #openstack-oslo13:00
dimshaypo jd__ flaper87 please bless https://review.openstack.org/#/c/240371/ (SIGUSR2) need to get it ready for release on monday13:02
*** kgiusti has joined #openstack-oslo13:06
dimsthank you sirs!13:06
kgiustidims: ping - good news: amqp1-f21 is correctly running on f21.  Bad news: it's hanging.13:07
*** SurajD has quit IRC13:07
dimskgiusti thanks for the update :)13:07
kgiustidims: devstack setup is hanging during setup.  I'm on it, but couldn't repro it yesterday locally.13:07
*** ndipanov has joined #openstack-oslo13:07
*** SurajD has joined #openstack-oslo13:07
openstackgerritMarkus Zoeller (markus_z) proposed openstack/oslo.config: Add help text generation for OptGroups  https://review.openstack.org/24247213:08
dimssileht : ping about https://review.openstack.org/#/c/233258/ - would you have some time to pick that up? since you have lots of good ideas there13:09
silehtdims, not soon13:09
dimssileht ok, i'll find some time early next week thanks13:10
*** ndipanov has quit IRC13:15
*** ndipanov has joined #openstack-oslo13:15
*** edmondsw has joined #openstack-oslo13:32
*** binarin has quit IRC13:32
*** fnordahl has quit IRC13:37
*** fnordahl has joined #openstack-oslo13:39
*** ericksonsantos has quit IRC13:41
*** SurajD has quit IRC13:47
*** ericksonsantos has joined #openstack-oslo13:47
*** regXboi has joined #openstack-oslo13:47
*** pradk has joined #openstack-oslo13:50
*** salv-orlando has quit IRC13:51
*** salv-orlando has joined #openstack-oslo13:51
kgiustidims: heh - need more caffeine next time I try to grep logs: http://pastebin.com/2Z6YgY8W13:51
*** e0ne has quit IRC13:55
*** e0ne has joined #openstack-oslo13:56
*** SurajD has joined #openstack-oslo13:57
*** rohit_ has joined #openstack-oslo14:01
*** edleafe is now known as figleaf14:02
*** rlrossit has joined #openstack-oslo14:04
openstackgerritMerged openstack/oslo.reports: Fix Transition to SIGUSR2 in oslo.reports breaks upgrade  https://review.openstack.org/24037114:10
*** nkrinner has quit IRC14:10
*** SurajD has quit IRC14:11
*** ndipanov has quit IRC14:14
rohit_jd__: just curious if fix for https://bugs.launchpad.net/python-tooz/+bug/1512001 be backported to stable branches?14:15
openstackLaunchpad bug 1512001 in Ceilometer "ceilometer notification agent doesnt publish samples when workload_partitioning is enabled" [Undecided,New] - Assigned to Rohit Jaiswal (rohit-jaiswal-3)14:15
*** SurajD has joined #openstack-oslo14:15
*** mriedem has joined #openstack-oslo14:18
*** jeckersb_gone is now known as jeckersb14:20
jd__rohit_: well I guess so14:22
*** salv-orlando has quit IRC14:22
rohit_jd__: Thanks, would be great if you could add that as affects stable/kilo14:24
*** salv-orlando has joined #openstack-oslo14:26
jd__rohit_: done I think14:27
rohit_thanks jd__14:28
openstackgerritTom Cocozzello proposed openstack/oslo.middleware: Define entry points for filter factories for Paste Deployment  https://review.openstack.org/23015614:29
rohit_jd__: requesting some stable reviews: https://review.openstack.org/#/c/239007/, https://review.openstack.org/#/c/242297/ and https://review.openstack.org/#/c/238706/14:30
rohit_jd__: thanks for your time and patience :)14:32
jd__thanks for doing the grunt work :)14:32
*** pratikmallya has joined #openstack-oslo14:36
*** achanda has joined #openstack-oslo14:46
*** achanda has quit IRC14:51
*** mc_nair has joined #openstack-oslo14:52
*** alaski is now known as lascii14:52
haypowhat's the status of openstack/common/cliutils.py? is it going to be graduated to a new library or an existing library?14:56
*** zqfan_afk has quit IRC14:56
*** pratikma_ has joined #openstack-oslo14:59
*** pratikmallya has quit IRC15:01
*** alejandrito has joined #openstack-oslo15:04
*** amotoki has quit IRC15:19
*** SurajD has quit IRC15:20
*** mtanino has joined #openstack-oslo15:21
*** SurajD has joined #openstack-oslo15:27
*** sileht has quit IRC15:32
*** dansmith is now known as superdan15:33
*** e0ne has quit IRC15:46
*** SurajD has quit IRC15:58
*** freyes has quit IRC16:04
*** freyes has joined #openstack-oslo16:05
*** SurajD has joined #openstack-oslo16:07
*** pratikma_ has quit IRC16:07
*** zzzeek has joined #openstack-oslo16:08
*** jaypipes is now known as leakypipes16:09
*** zzzeek has quit IRC16:09
*** zzzeek has joined #openstack-oslo16:10
*** SurajD has quit IRC16:12
*** yamamoto_ has quit IRC16:12
*** SurajD has joined #openstack-oslo16:13
*** achanda has joined #openstack-oslo16:20
*** SurajD has quit IRC16:24
*** SurajD has joined #openstack-oslo16:24
*** freyes has quit IRC16:26
*** mriedem is now known as mriedem_away16:27
*** ihrachys has quit IRC16:29
*** pratikmallya has joined #openstack-oslo16:31
*** rjaiswal has joined #openstack-oslo16:33
*** jaosorior has quit IRC16:35
*** HenryG has quit IRC16:37
*** HenryG has joined #openstack-oslo16:39
*** e0ne has joined #openstack-oslo16:39
*** pratikma_ has joined #openstack-oslo16:39
*** pratikmallya has quit IRC16:39
*** sileht has joined #openstack-oslo16:41
*** pratikma_ is now known as pratikmallya16:43
*** achanda has quit IRC16:45
*** freyes has joined #openstack-oslo16:48
*** SurajD has quit IRC16:51
*** pratikma_ has joined #openstack-oslo16:52
*** dukhlov_ has quit IRC16:52
*** pratikmallya has quit IRC16:55
*** achanda has joined #openstack-oslo16:56
*** SurajD has joined #openstack-oslo16:56
*** sputnik13 has joined #openstack-oslo16:59
*** sputnik13 has quit IRC16:59
openstackgerritKen Giusti proposed openstack/devstack-plugin-amqp1: Set the qpidd output logfile permissions.  https://review.openstack.org/24256316:59
*** sputnik13 has joined #openstack-oslo17:04
*** browne has joined #openstack-oslo17:15
*** e0ne has quit IRC17:21
*** rlrossit has left #openstack-oslo17:22
*** rjaiswal has quit IRC17:22
*** rjaiswal has joined #openstack-oslo17:23
*** SurajD has quit IRC17:24
*** pballand has joined #openstack-oslo17:26
*** SurajD has joined #openstack-oslo17:27
*** rjaiswal has quit IRC17:27
*** rjaiswal has joined #openstack-oslo17:29
*** subscope has joined #openstack-oslo17:30
*** sputnik13 has quit IRC17:32
*** sputnik13 has joined #openstack-oslo17:32
*** mc_nair has quit IRC17:41
rohit_harlowja: https://bugs.launchpad.net/python-tooz/+bug/1512001 now affects stable branches, would be great to have a backport, thanks17:45
openstackLaunchpad bug 1512001 in tooz liberty "ceilometer notification agent doesnt publish samples when workload_partitioning is enabled" [Medium,Triaged]17:45
*** mc_nair has joined #openstack-oslo17:48
*** pradk has quit IRC17:52
*** sputnik13 has quit IRC17:53
*** sputnik13 has joined #openstack-oslo17:56
*** cdent has quit IRC17:56
sputnik13SpamapS so the link you posted yesterday https://www.consul.io/intro/vs/zookeeper.html doesn't make any particular case for REST17:56
openstackgerritTom Cocozzello proposed openstack/oslo.middleware: Define entry points for filter factories for Paste Deployment  https://review.openstack.org/23015617:57
SpamapSsputnik13: it makes a case against "heavy" clients (which you actually argue are lighter.. and I think again it is a matter of perspective)17:58
SpamapSfrom a network/scalability standpoint, ZK's protocol is lighter.17:58
SpamapSfrom a development standpoint, http is lighter17:59
sputnik13no I didn't say they're lighter clients, I said they're lighter protocols17:59
SpamapSyeah ok so I misunderstood you17:59
sputnik13:)17:59
SpamapSso they don't, in fact, talk about the protocol cost17:59
SpamapSthey talk about the development cost a lot17:59
SpamapSwhich I agree with them, is actually the thing that is harder to get right.17:59
sputnik13I don't know, I feel like development cost is more centralized with fat clients18:00
SpamapSas much fun as it is to optimize... if REST gets it done.. there's less cognitive load in using REST.18:00
sputnik13that assumes that everyone implements their own clients, but very few actually do that18:01
*** yassine has quit IRC18:03
harlowjasputnik13 i agree, i'd prefer one great client per language imho, don't really care what that client uses internally (as long as its not pigeons)18:05
harlowjabut then i'm ok with being opionated, java is bad mmmk18:06
harlowjalol18:06
SpamapSsputnik13: Indeed, and also, the real cognitive load comes from grokking how to make your program responsive to watching and waiting on things, which REST doesn't do anything to help you with, but zk client libs do.18:06
SpamapSbut.. to that end.. a tooz driver for consul will actually help consul users. ;)18:07
harlowjaagreed, vilobh is figuring it out, seeing what the semantics are and how they work..18:07
harlowjaalthough the locking stuff @ https://github.com/oysterbooks/python-consul-lock#faq scares me18:07
*** bana_k has joined #openstack-oslo18:08
harlowjai hope they (consul) fixed some of that18:08
*** mriedem_away is now known as mriedem18:09
*** achanda has quit IRC18:12
*** bana_k has quit IRC18:12
*** browne has quit IRC18:17
*** sputnik13 has quit IRC18:18
*** e0ne has joined #openstack-oslo18:21
*** cdent has joined #openstack-oslo18:21
*** sputnik13 has joined #openstack-oslo18:22
*** cdent has quit IRC18:24
*** salv-orlando has quit IRC18:25
*** bana_k has joined #openstack-oslo18:25
*** salv-orlando has joined #openstack-oslo18:26
*** pratikma_ has quit IRC18:32
*** achanda has joined #openstack-oslo18:34
*** achanda has quit IRC18:35
*** yamamoto has joined #openstack-oslo18:38
*** SurajD has quit IRC18:39
*** SurajD has joined #openstack-oslo18:41
*** yamamoto has quit IRC18:43
*** achanda has joined #openstack-oslo18:48
*** pradk has joined #openstack-oslo18:54
*** sputnik13 has quit IRC18:55
*** browne has joined #openstack-oslo18:59
*** SurajD has quit IRC18:59
*** sputnik13 has joined #openstack-oslo18:59
rohit_harlowja: just curious as to how soon a backport to stable/kilo of https://bugs.launchpad.net/python-tooz/+bug/1512001 be available to be consumed19:01
openstackLaunchpad bug 1512001 in tooz liberty "ceilometer notification agent doesnt publish samples when workload_partitioning is enabled" [Medium,Triaged]19:01
harlowjarohit_ unsure, i thought i saw that jd__  did the backport?19:01
harlowjaif he did, then a release maybe next week?19:02
harlowjawe don't like to release on fridays :-P19:02
rohit_harlowja: i think jd__ just added affects as in launchpad19:02
harlowjaah19:02
harlowjahmmm19:02
harlowjalol19:03
harlowjajd__ yt19:03
rohit_harlowja: i can volunteer for the backport if needed, just to help19:05
harlowjasure, rohit_ want to do that, its probably real simple19:05
harlowjathen we can get a release out monday once we check with jd__19:06
* harlowja just wants to verify with him19:06
rohit_harlowja: cool19:06
harlowjagreat19:06
*** sputnik13 has quit IRC19:07
*** e0ne has quit IRC19:08
dimsharlowja nice evangelization work! :)19:08
*** sputnik13 has joined #openstack-oslo19:10
harlowja:)19:11
harlowjadims thx19:11
harlowjabusted!19:11
harlowjalol19:11
* harlowja probably has watched mythbusters to much19:11
harlowjahaha19:11
harlowja*hopefully busted, haha19:11
*** e0ne has joined #openstack-oslo19:12
harlowjadims i think u are referring to http://lists.openstack.org/pipermail/openstack-dev/2015-November/078737.html19:15
harlowjajust making sure, hahaha19:15
dims:)19:15
dimsyes19:15
harlowja:)19:19
harlowjadims if that doesn't do it, then idk what will, likely someone will still complain, but meh, to bad...19:20
harlowjathere's always crazies out there, ha19:20
* dims brings up horses and water19:20
openstackgerritMerged openstack/devstack-plugin-amqp1: Set the qpidd output logfile permissions.  https://review.openstack.org/24256319:21
*** achanda has quit IRC19:24
*** pratikmallya has joined #openstack-oslo19:27
*** achanda has joined #openstack-oslo19:29
*** pratikma_ has joined #openstack-oslo19:29
*** pratikmallya has quit IRC19:32
*** openstackstatus has joined #openstack-oslo19:35
*** ChanServ sets mode: +v openstackstatus19:35
-openstackstatus- NOTICE: Gerrit will be offline at 20:00-20:15 UTC today (starting 20 minutes from now) for scheduled project rename maintenance19:40
*** salv-orl_ has joined #openstack-oslo19:48
*** salv-orlando has quit IRC19:51
*** pratikma_ has quit IRC19:53
*** e0ne has quit IRC19:54
*** pradk has quit IRC19:54
openstackgerritTom Cocozzello proposed openstack/oslo.middleware: Define entry points for filter factories for Paste Deployment  https://review.openstack.org/23015619:54
-openstackstatus- NOTICE: Gerrit is offline until 20:15 UTC today for scheduled project rename maintenance20:03
*** ChanServ changes topic to "Gerrit is offline until 20:15 UTC today for scheduled project rename maintenance"20:03
*** pratikmallya has joined #openstack-oslo20:03
*** pratikma_ has joined #openstack-oslo20:05
*** cprmrf has joined #openstack-oslo20:06
*** sputnik13 has quit IRC20:06
*** jroll is now known as tjroll20:07
*** pratikmallya has quit IRC20:08
*** sputnik13 has joined #openstack-oslo20:11
*** salv-orl_ has quit IRC20:13
*** achanda has quit IRC20:15
*** sputnik13 has quit IRC20:25
*** sputnik13 has joined #openstack-oslo20:27
*** ChanServ changes topic to "#openstack-oslo"20:36
*** dims is now known as dimsum__20:37
rohit_harlowja, jd__: https://review.openstack.org/#/c/242619/20:47
harlowjarohit_ k20:47
harlowjaseems ok, even though it adds the options stuff, but that should be fine20:48
rohit_yeah, lot of the backported stuff needed that20:48
harlowjaright20:50
*** salv-orlando has joined #openstack-oslo20:53
*** gordc has quit IRC20:53
*** harlowja_ has joined #openstack-oslo20:56
*** harlowja has quit IRC20:56
*** sputnik13 has quit IRC20:57
*** sputnik13 has joined #openstack-oslo20:57
*** openstackgerrit has quit IRC21:01
*** openstackgerrit has joined #openstack-oslo21:02
*** mriedem has left #openstack-oslo21:03
*** mriedem has joined #openstack-oslo21:04
*** jeckersb is now known as jeckersb_gone21:10
openstackgerritJoshua Harlow proposed openstack/taskflow: Track dirtiness of models  https://review.openstack.org/24144121:18
*** subscope has quit IRC21:39
*** jerrygb has quit IRC21:46
*** itisha has joined #openstack-oslo21:47
*** jerrygb has joined #openstack-oslo21:47
*** jerrygb has quit IRC21:51
*** alejandrito has quit IRC21:56
*** achanda has joined #openstack-oslo22:08
*** jerrygb has joined #openstack-oslo22:09
openstackgerritMerged openstack/oslo.privsep: Updated from global requirements  https://review.openstack.org/24109422:10
*** jerrygb_ has joined #openstack-oslo22:10
*** lascii is now known as alaski22:13
*** jerrygb has quit IRC22:14
*** figleaf is now known as edleafe22:15
*** boris-42 has joined #openstack-oslo22:21
*** pratikma_ has quit IRC22:22
*** cprmrf__ has joined #openstack-oslo22:25
*** achanda has quit IRC22:27
*** rjaiswal has quit IRC22:27
*** cprmrf has quit IRC22:28
*** sputnik13 has quit IRC22:37
*** mriedem has quit IRC22:37
*** sputnik13 has joined #openstack-oslo22:38
*** kgiusti has quit IRC22:39
*** cprmrf__ has quit IRC22:39
*** yamamoto has joined #openstack-oslo22:56
*** pratikmallya has joined #openstack-oslo23:04
*** regXboi has quit IRC23:07
*** achanda has joined #openstack-oslo23:08
adam_gdimsum__, around by chance?23:08
*** achanda has quit IRC23:08
*** yamamoto has quit IRC23:19
*** achanda has joined #openstack-oslo23:29
*** salv-orlando has quit IRC23:33
*** pratikmallya has quit IRC23:34
*** yamamoto has joined #openstack-oslo23:35
*** mc_nair has quit IRC23:35
*** achanda has quit IRC23:37
openstackgerritJoshua Harlow proposed openstack/taskflow: Track dirtiness of models and use it during saving  https://review.openstack.org/24144123:45
*** dimsum__ has quit IRC23:52
*** yamamoto has quit IRC23:54
*** jerrygb_ has quit IRC23:56

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