*** sputnik13 has joined #openstack-oslo | 00:00 | |
*** itisha has quit IRC | 00:01 | |
*** freyes has joined #openstack-oslo | 00:02 | |
*** mc_nair has joined #openstack-oslo | 00:07 | |
*** sputnik13 has quit IRC | 00:08 | |
*** sputnik13 has joined #openstack-oslo | 00:10 | |
*** pratikmallya has joined #openstack-oslo | 00:11 | |
*** yamamoto has joined #openstack-oslo | 00:16 | |
*** takedakn has joined #openstack-oslo | 00:19 | |
*** sputnik13 has quit IRC | 00:26 | |
*** sputnik13 has joined #openstack-oslo | 00:40 | |
*** jamielennox is now known as jamielennox|away | 00:46 | |
*** jamielennox|away is now known as jamielennox | 00:47 | |
*** sputnik13 has quit IRC | 00:48 | |
*** sputnik13 has joined #openstack-oslo | 00:48 | |
*** dims has joined #openstack-oslo | 00:52 | |
*** sputnik13 has quit IRC | 00:57 | |
*** mc_nair has quit IRC | 00:57 | |
*** jamielennox is now known as jamielennox|away | 00:58 | |
*** sputnik13 has joined #openstack-oslo | 01:04 | |
*** sputnik13 has quit IRC | 01:05 | |
*** jamielennox|away is now known as jamielennox | 01:06 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Track dirtiness of models and use during saving (WIP) https://review.openstack.org/241441 | 01:06 |
---|---|---|
dims | harlowja : need your opinion on https://review.openstack.org/#/c/240371/ when you get a chance please | 01:08 |
harlowja | lol | 01:08 |
harlowja | damn, thought we killed that one :-P | 01:08 |
harlowja | dims ok i think the warning could be slightly better, but i guess if this is needed its ok | 01:13 |
*** dims has quit IRC | 01:17 | |
*** pratikmallya has quit IRC | 01:30 | |
*** bana_k has joined #openstack-oslo | 01:35 | |
bana_k | oslo_messaging is throwing an warning after server.wait() | 01:37 |
bana_k | 2015-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 called | 01:37 |
bana_k | i see that some code beein modified around this warning in recent time. | 01:37 |
bana_k | any idea why this warning is showing up? | 01:38 |
bana_k | that too every 1 sec | 01:38 |
*** yamamoto has quit IRC | 01:38 | |
harlowja | bana_k yes i know why | 01:40 |
*** salv-orlando has joined #openstack-oslo | 01:41 | |
bana_k | ohoo,cool | 01:43 |
bana_k | is anything special we need to do now? | 01:44 |
harlowja | call stop before wait :) | 01:44 |
harlowja | basically wait() waits until the server is dead | 01:45 |
bana_k | If i do that it will just stops the process | 01:45 |
bana_k | it kills the server | 01:45 |
bana_k | but we want to wait | 01:45 |
harlowja | who calls stop? | 01:46 |
harlowja | nobody? | 01:46 |
bana_k | I only tried calling stop before wait | 01:46 |
bana_k | http://docs.openstack.org/developer/oslo.messaging/server.html | 01:46 |
harlowja | right so stop and wait are both for shutting down a server | 01:47 |
bana_k | oh ok! got it | 01:47 |
harlowja | stop() to stop it, wait() to wait until its really stopped | 01:47 |
harlowja | the new log messaging is to tell people they might be doing something wrong | 01:48 |
harlowja | if they just call wait, and have never called stop | 01:48 |
harlowja | *which is a misusage of the intended api | 01:48 |
bana_k | oh sweet. looks like it worked :D | 01:48 |
harlowja | ya, 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 |
harlowja | make sense? | 01:49 |
bana_k | yes sir! | 01:49 |
harlowja | the example @ http://docs.openstack.org/developer/oslo.messaging/server.html needs a fix | 01:49 |
harlowja | not exactly right, lol | 01:49 |
harlowja | want to do a review for that, or shall i? | 01:50 |
bana_k | he he he thought so | 01:50 |
harlowja | review/commit | 01:50 |
bana_k | I can try that out | 01:51 |
bana_k | do we need to raise a bug before tht ? | 01:51 |
*** pratikmallya has joined #openstack-oslo | 01:52 | |
harlowja | if u want, small fix, don't think bug needed, but your choice | 01:52 |
bana_k | ok | 01:52 |
*** tobe has joined #openstack-oslo | 01:55 | |
bana_k | harlowja : Can u please give me git link for the same. I tried looking for | 01:57 |
harlowja | sure | 01:58 |
harlowja | bana_k https://github.com/openstack/oslo.messaging/blob/master/oslo_messaging/rpc/server.py#L72 | 01:58 |
bana_k | thanks | 01:59 |
*** salv-orlando has quit IRC | 01:59 | |
*** takedakn has quit IRC | 02:01 | |
bana_k | harlowja: we don't have a stop there, is it because of the endpoint is doing that in its stop function ? | 02:05 |
harlowja | hmmmm, bana_k good point | 02:05 |
harlowja | thats confusing :-/ | 02:06 |
harlowja | i don't even think that example works | 02:06 |
bana_k | oh is it | 02:07 |
harlowja | bana_k want to perhaps tweak that example to be better? | 02:07 |
harlowja | well just look at | 02:07 |
harlowja | def stop(self, ctx): | 02:07 |
harlowja | if server: | 02:07 |
harlowja | self.server.stop() | 02:07 |
harlowja | if server refers to the rpc server from the module/global scope | 02:07 |
harlowja | self.server then seems to refer to whats sent in via __init__ | 02:07 |
harlowja | ServerControlEndpoint(None), | 02:07 |
harlowja | which is apparently None ? | 02:07 |
harlowja | calling .stop() on None isn't going to end well :-/ | 02:08 |
harlowja | unless i'm reading it wrong | 02:08 |
bana_k | oops | 02:08 |
bana_k | yes | 02:08 |
bana_k | what u said makes sense | 02:08 |
harlowja | ya, that code is weird, ha | 02:08 |
harlowja | example fail :-P | 02:08 |
bana_k | he he he | 02:08 |
bana_k | so I can remove that function n just add stop in the bottom | 02:09 |
harlowja | can u also make sure the example runs correctly :) | 02:09 |
harlowja | i'd be fine with that if it works, ha | 02:09 |
harlowja | vs not working, lol | 02:09 |
bana_k | yea I can try that | 02:09 |
harlowja | thx | 02:10 |
harlowja | bbl | 02:10 |
*** takedakn has joined #openstack-oslo | 02:13 | |
*** browne has quit IRC | 02:23 | |
*** ndipanov has joined #openstack-oslo | 02:23 | |
*** salv-orlando has joined #openstack-oslo | 02:27 | |
*** yamamoto has joined #openstack-oslo | 02:28 | |
*** mtanino has quit IRC | 02:34 | |
*** bana_k has quit IRC | 02:36 | |
*** salv-orlando has quit IRC | 02:49 | |
*** pratikmallya has quit IRC | 02:54 | |
*** SurajD has joined #openstack-oslo | 03:10 | |
*** ndipanov has quit IRC | 03:16 | |
*** salv-orlando has joined #openstack-oslo | 03:19 | |
*** browne has joined #openstack-oslo | 03:24 | |
*** boris-42 has joined #openstack-oslo | 03:24 | |
*** salv-orlando has quit IRC | 03:40 | |
*** xianghui has joined #openstack-oslo | 03:46 | |
xianghui | Hi 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 services | 03:53 |
xianghui | do I need to restart nova services and rabbitmq? | 03:53 |
xianghui | thanks :) | 03:53 |
xianghui | /s/patc/patch | 03:53 |
*** gcb has quit IRC | 03:57 | |
*** links has joined #openstack-oslo | 03:59 | |
*** itisha has joined #openstack-oslo | 04:07 | |
*** SurajD has quit IRC | 04:13 | |
*** SurajD has joined #openstack-oslo | 04:15 | |
*** salv-orlando has joined #openstack-oslo | 04:40 | |
*** salv-orlando has quit IRC | 04:49 | |
*** amotoki has joined #openstack-oslo | 04:51 | |
*** gcb has joined #openstack-oslo | 05:05 | |
*** jerrygb_ has quit IRC | 05:18 | |
*** SurajD has quit IRC | 05:19 | |
*** SurajD has joined #openstack-oslo | 05:22 | |
*** pratikmallya has joined #openstack-oslo | 05:26 | |
*** pratikmallya has quit IRC | 05:31 | |
*** zzzeek has quit IRC | 05:34 | |
*** zzzeek has joined #openstack-oslo | 05:42 | |
*** zzzeek has quit IRC | 05:47 | |
*** nikhil_k has joined #openstack-oslo | 05:48 | |
*** nikhil has quit IRC | 05:48 | |
*** zzzeek has joined #openstack-oslo | 05:50 | |
*** zzzeek has quit IRC | 05:58 | |
*** SurajD has quit IRC | 06:16 | |
*** SurajD has joined #openstack-oslo | 06:17 | |
*** itisha has quit IRC | 06:21 | |
*** harlowja_at_home has joined #openstack-oslo | 06:26 | |
*** salv-orlando has joined #openstack-oslo | 06:29 | |
*** openstackgerrit has quit IRC | 06:31 | |
*** openstackgerrit has joined #openstack-oslo | 06:31 | |
*** harlowja_at_home has quit IRC | 06:37 | |
*** david-lyle has joined #openstack-oslo | 06:40 | |
*** salv-orlando has quit IRC | 06:41 | |
*** david-lyle has quit IRC | 06:45 | |
*** RuiChen has joined #openstack-oslo | 06:50 | |
RuiChen | Hi, anybody can help to take a look this patch https://review.openstack.org/#/c/228797/ ? | 06:51 |
*** jamielennox is now known as jamielennox|away | 06:59 | |
*** e0ne has joined #openstack-oslo | 07:10 | |
*** droyal has quit IRC | 07:14 | |
*** salv-orlando has joined #openstack-oslo | 07:17 | |
*** SurajD has quit IRC | 07:18 | |
*** nkrinner has joined #openstack-oslo | 07:18 | |
*** salv-orlando has quit IRC | 07:19 | |
*** salv-orlando has joined #openstack-oslo | 07:20 | |
*** SurajD has joined #openstack-oslo | 07:21 | |
*** e0ne has quit IRC | 07:21 | |
openstackgerrit | Angus Lees proposed openstack/oslo.privsep: Initial basic privsep functionality https://review.openstack.org/238333 | 07:22 |
*** takedakn has quit IRC | 07:28 | |
*** takedakn has joined #openstack-oslo | 07:42 | |
*** shardy has joined #openstack-oslo | 07:49 | |
*** ihrachys has joined #openstack-oslo | 07:58 | |
*** pratikmallya has joined #openstack-oslo | 08:00 | |
*** SurajD has quit IRC | 08:37 | |
*** zigo has quit IRC | 08:37 | |
*** zigo has joined #openstack-oslo | 08:42 | |
*** SurajD has joined #openstack-oslo | 08:42 | |
*** openstackstatus has quit IRC | 08:42 | |
*** takedakn has quit IRC | 08:48 | |
*** browne has quit IRC | 08:55 | |
*** yassine has joined #openstack-oslo | 08:59 | |
*** SurajD has quit IRC | 09:02 | |
*** links has quit IRC | 09:11 | |
*** achanda has quit IRC | 09:21 | |
*** e0ne has joined #openstack-oslo | 09:27 | |
*** cdent has joined #openstack-oslo | 09:38 | |
*** droyal has joined #openstack-oslo | 09:40 | |
*** tobe has quit IRC | 09:55 | |
*** otherwiseguy has quit IRC | 10:28 | |
*** otherwiseguy has joined #openstack-oslo | 10:30 | |
*** ihrachys has quit IRC | 10:37 | |
*** ihrachys has joined #openstack-oslo | 10:38 | |
*** shardy has quit IRC | 10:46 | |
*** yamamoto has quit IRC | 10:48 | |
*** jamielennox|away is now known as jamielennox | 10:49 | |
*** jaosorior has joined #openstack-oslo | 11:10 | |
*** jamielennox is now known as jamielennox|away | 11:11 | |
*** achanda has joined #openstack-oslo | 11:22 | |
*** achanda has quit IRC | 11:26 | |
*** dims has joined #openstack-oslo | 11:27 | |
*** yamamoto has joined #openstack-oslo | 11:32 | |
*** yamamoto has quit IRC | 11:32 | |
*** yamamoto has joined #openstack-oslo | 11:32 | |
*** yamamoto_ has joined #openstack-oslo | 11:33 | |
*** pratikmallya has quit IRC | 11:34 | |
*** yamamoto has quit IRC | 11:36 | |
*** SurajD has joined #openstack-oslo | 11:38 | |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/oslo.reports: Fix Transition to SIGUSR2 in oslo.reports breaks upgrade https://review.openstack.org/240371 | 11:40 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/oslo.reports: Fix Transition to SIGUSR2 in oslo.reports breaks upgrade https://review.openstack.org/240371 | 11:43 |
*** jerrygb has joined #openstack-oslo | 11:54 | |
*** RuiChen has quit IRC | 12:03 | |
*** RuiChen has joined #openstack-oslo | 12:04 | |
*** SurajD has quit IRC | 12:18 | |
*** SurajD has joined #openstack-oslo | 12:19 | |
*** achanda has joined #openstack-oslo | 12:24 | |
*** achanda has quit IRC | 12:30 | |
*** zigo has quit IRC | 12:36 | |
*** zigo has joined #openstack-oslo | 12:37 | |
*** RuiChen has quit IRC | 12:40 | |
*** amrith is now known as _amrith_ | 12:42 | |
*** RuiChen has joined #openstack-oslo | 12:43 | |
*** SurajD has quit IRC | 12:50 | |
*** jeckersb is now known as jeckersb_gone | 12:52 | |
*** SurajD has joined #openstack-oslo | 12:53 | |
*** boris-42 has quit IRC | 12:58 | |
*** gordc has joined #openstack-oslo | 13:00 | |
dims | haypo jd__ flaper87 please bless https://review.openstack.org/#/c/240371/ (SIGUSR2) need to get it ready for release on monday | 13:02 |
*** kgiusti has joined #openstack-oslo | 13:06 | |
dims | thank you sirs! | 13:06 |
kgiusti | dims: ping - good news: amqp1-f21 is correctly running on f21. Bad news: it's hanging. | 13:07 |
*** SurajD has quit IRC | 13:07 | |
dims | kgiusti thanks for the update :) | 13:07 |
kgiusti | dims: devstack setup is hanging during setup. I'm on it, but couldn't repro it yesterday locally. | 13:07 |
*** ndipanov has joined #openstack-oslo | 13:07 | |
*** SurajD has joined #openstack-oslo | 13:07 | |
openstackgerrit | Markus Zoeller (markus_z) proposed openstack/oslo.config: Add help text generation for OptGroups https://review.openstack.org/242472 | 13:08 |
dims | sileht : ping about https://review.openstack.org/#/c/233258/ - would you have some time to pick that up? since you have lots of good ideas there | 13:09 |
sileht | dims, not soon | 13:09 |
dims | sileht ok, i'll find some time early next week thanks | 13:10 |
*** ndipanov has quit IRC | 13:15 | |
*** ndipanov has joined #openstack-oslo | 13:15 | |
*** edmondsw has joined #openstack-oslo | 13:32 | |
*** binarin has quit IRC | 13:32 | |
*** fnordahl has quit IRC | 13:37 | |
*** fnordahl has joined #openstack-oslo | 13:39 | |
*** ericksonsantos has quit IRC | 13:41 | |
*** SurajD has quit IRC | 13:47 | |
*** ericksonsantos has joined #openstack-oslo | 13:47 | |
*** regXboi has joined #openstack-oslo | 13:47 | |
*** pradk has joined #openstack-oslo | 13:50 | |
*** salv-orlando has quit IRC | 13:51 | |
*** salv-orlando has joined #openstack-oslo | 13:51 | |
kgiusti | dims: heh - need more caffeine next time I try to grep logs: http://pastebin.com/2Z6YgY8W | 13:51 |
*** e0ne has quit IRC | 13:55 | |
*** e0ne has joined #openstack-oslo | 13:56 | |
*** SurajD has joined #openstack-oslo | 13:57 | |
*** rohit_ has joined #openstack-oslo | 14:01 | |
*** edleafe is now known as figleaf | 14:02 | |
*** rlrossit has joined #openstack-oslo | 14:04 | |
openstackgerrit | Merged openstack/oslo.reports: Fix Transition to SIGUSR2 in oslo.reports breaks upgrade https://review.openstack.org/240371 | 14:10 |
*** nkrinner has quit IRC | 14:10 | |
*** SurajD has quit IRC | 14:11 | |
*** ndipanov has quit IRC | 14:14 | |
rohit_ | jd__: just curious if fix for https://bugs.launchpad.net/python-tooz/+bug/1512001 be backported to stable branches? | 14:15 |
openstack | Launchpad 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-oslo | 14:15 | |
*** mriedem has joined #openstack-oslo | 14:18 | |
*** jeckersb_gone is now known as jeckersb | 14:20 | |
jd__ | rohit_: well I guess so | 14:22 |
*** salv-orlando has quit IRC | 14:22 | |
rohit_ | jd__: Thanks, would be great if you could add that as affects stable/kilo | 14:24 |
*** salv-orlando has joined #openstack-oslo | 14:26 | |
jd__ | rohit_: done I think | 14:27 |
rohit_ | thanks jd__ | 14:28 |
openstackgerrit | Tom Cocozzello proposed openstack/oslo.middleware: Define entry points for filter factories for Paste Deployment https://review.openstack.org/230156 | 14: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-oslo | 14:36 | |
*** achanda has joined #openstack-oslo | 14:46 | |
*** achanda has quit IRC | 14:51 | |
*** mc_nair has joined #openstack-oslo | 14:52 | |
*** alaski is now known as lascii | 14:52 | |
haypo | what'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 IRC | 14:56 | |
*** pratikma_ has joined #openstack-oslo | 14:59 | |
*** pratikmallya has quit IRC | 15:01 | |
*** alejandrito has joined #openstack-oslo | 15:04 | |
*** amotoki has quit IRC | 15:19 | |
*** SurajD has quit IRC | 15:20 | |
*** mtanino has joined #openstack-oslo | 15:21 | |
*** SurajD has joined #openstack-oslo | 15:27 | |
*** sileht has quit IRC | 15:32 | |
*** dansmith is now known as superdan | 15:33 | |
*** e0ne has quit IRC | 15:46 | |
*** SurajD has quit IRC | 15:58 | |
*** freyes has quit IRC | 16:04 | |
*** freyes has joined #openstack-oslo | 16:05 | |
*** SurajD has joined #openstack-oslo | 16:07 | |
*** pratikma_ has quit IRC | 16:07 | |
*** zzzeek has joined #openstack-oslo | 16:08 | |
*** jaypipes is now known as leakypipes | 16:09 | |
*** zzzeek has quit IRC | 16:09 | |
*** zzzeek has joined #openstack-oslo | 16:10 | |
*** SurajD has quit IRC | 16:12 | |
*** yamamoto_ has quit IRC | 16:12 | |
*** SurajD has joined #openstack-oslo | 16:13 | |
*** achanda has joined #openstack-oslo | 16:20 | |
*** SurajD has quit IRC | 16:24 | |
*** SurajD has joined #openstack-oslo | 16:24 | |
*** freyes has quit IRC | 16:26 | |
*** mriedem is now known as mriedem_away | 16:27 | |
*** ihrachys has quit IRC | 16:29 | |
*** pratikmallya has joined #openstack-oslo | 16:31 | |
*** rjaiswal has joined #openstack-oslo | 16:33 | |
*** jaosorior has quit IRC | 16:35 | |
*** HenryG has quit IRC | 16:37 | |
*** HenryG has joined #openstack-oslo | 16:39 | |
*** e0ne has joined #openstack-oslo | 16:39 | |
*** pratikma_ has joined #openstack-oslo | 16:39 | |
*** pratikmallya has quit IRC | 16:39 | |
*** sileht has joined #openstack-oslo | 16:41 | |
*** pratikma_ is now known as pratikmallya | 16:43 | |
*** achanda has quit IRC | 16:45 | |
*** freyes has joined #openstack-oslo | 16:48 | |
*** SurajD has quit IRC | 16:51 | |
*** pratikma_ has joined #openstack-oslo | 16:52 | |
*** dukhlov_ has quit IRC | 16:52 | |
*** pratikmallya has quit IRC | 16:55 | |
*** achanda has joined #openstack-oslo | 16:56 | |
*** SurajD has joined #openstack-oslo | 16:56 | |
*** sputnik13 has joined #openstack-oslo | 16:59 | |
*** sputnik13 has quit IRC | 16:59 | |
openstackgerrit | Ken Giusti proposed openstack/devstack-plugin-amqp1: Set the qpidd output logfile permissions. https://review.openstack.org/242563 | 16:59 |
*** sputnik13 has joined #openstack-oslo | 17:04 | |
*** browne has joined #openstack-oslo | 17:15 | |
*** e0ne has quit IRC | 17:21 | |
*** rlrossit has left #openstack-oslo | 17:22 | |
*** rjaiswal has quit IRC | 17:22 | |
*** rjaiswal has joined #openstack-oslo | 17:23 | |
*** SurajD has quit IRC | 17:24 | |
*** pballand has joined #openstack-oslo | 17:26 | |
*** SurajD has joined #openstack-oslo | 17:27 | |
*** rjaiswal has quit IRC | 17:27 | |
*** rjaiswal has joined #openstack-oslo | 17:29 | |
*** subscope has joined #openstack-oslo | 17:30 | |
*** sputnik13 has quit IRC | 17:32 | |
*** sputnik13 has joined #openstack-oslo | 17:32 | |
*** mc_nair has quit IRC | 17:41 | |
rohit_ | harlowja: https://bugs.launchpad.net/python-tooz/+bug/1512001 now affects stable branches, would be great to have a backport, thanks | 17:45 |
openstack | Launchpad 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-oslo | 17:48 | |
*** pradk has quit IRC | 17:52 | |
*** sputnik13 has quit IRC | 17:53 | |
*** sputnik13 has joined #openstack-oslo | 17:56 | |
*** cdent has quit IRC | 17:56 | |
sputnik13 | SpamapS so the link you posted yesterday https://www.consul.io/intro/vs/zookeeper.html doesn't make any particular case for REST | 17:56 |
openstackgerrit | Tom Cocozzello proposed openstack/oslo.middleware: Define entry points for filter factories for Paste Deployment https://review.openstack.org/230156 | 17:57 |
SpamapS | sputnik13: 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 |
SpamapS | from a network/scalability standpoint, ZK's protocol is lighter. | 17:58 |
SpamapS | from a development standpoint, http is lighter | 17:59 |
sputnik13 | no I didn't say they're lighter clients, I said they're lighter protocols | 17:59 |
SpamapS | yeah ok so I misunderstood you | 17:59 |
sputnik13 | :) | 17:59 |
SpamapS | so they don't, in fact, talk about the protocol cost | 17:59 |
SpamapS | they talk about the development cost a lot | 17:59 |
SpamapS | which I agree with them, is actually the thing that is harder to get right. | 17:59 |
sputnik13 | I don't know, I feel like development cost is more centralized with fat clients | 18:00 |
SpamapS | as much fun as it is to optimize... if REST gets it done.. there's less cognitive load in using REST. | 18:00 |
sputnik13 | that assumes that everyone implements their own clients, but very few actually do that | 18:01 |
*** yassine has quit IRC | 18:03 | |
harlowja | sputnik13 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 |
harlowja | but then i'm ok with being opionated, java is bad mmmk | 18:06 |
harlowja | lol | 18:06 |
SpamapS | sputnik13: 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 |
SpamapS | but.. to that end.. a tooz driver for consul will actually help consul users. ;) | 18:07 |
harlowja | agreed, vilobh is figuring it out, seeing what the semantics are and how they work.. | 18:07 |
harlowja | although the locking stuff @ https://github.com/oysterbooks/python-consul-lock#faq scares me | 18:07 |
*** bana_k has joined #openstack-oslo | 18:08 | |
harlowja | i hope they (consul) fixed some of that | 18:08 |
*** mriedem_away is now known as mriedem | 18:09 | |
*** achanda has quit IRC | 18:12 | |
*** bana_k has quit IRC | 18:12 | |
*** browne has quit IRC | 18:17 | |
*** sputnik13 has quit IRC | 18:18 | |
*** e0ne has joined #openstack-oslo | 18:21 | |
*** cdent has joined #openstack-oslo | 18:21 | |
*** sputnik13 has joined #openstack-oslo | 18:22 | |
*** cdent has quit IRC | 18:24 | |
*** salv-orlando has quit IRC | 18:25 | |
*** bana_k has joined #openstack-oslo | 18:25 | |
*** salv-orlando has joined #openstack-oslo | 18:26 | |
*** pratikma_ has quit IRC | 18:32 | |
*** achanda has joined #openstack-oslo | 18:34 | |
*** achanda has quit IRC | 18:35 | |
*** yamamoto has joined #openstack-oslo | 18:38 | |
*** SurajD has quit IRC | 18:39 | |
*** SurajD has joined #openstack-oslo | 18:41 | |
*** yamamoto has quit IRC | 18:43 | |
*** achanda has joined #openstack-oslo | 18:48 | |
*** pradk has joined #openstack-oslo | 18:54 | |
*** sputnik13 has quit IRC | 18:55 | |
*** browne has joined #openstack-oslo | 18:59 | |
*** SurajD has quit IRC | 18:59 | |
*** sputnik13 has joined #openstack-oslo | 18: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 consumed | 19:01 |
openstack | Launchpad bug 1512001 in tooz liberty "ceilometer notification agent doesnt publish samples when workload_partitioning is enabled" [Medium,Triaged] | 19:01 |
harlowja | rohit_ unsure, i thought i saw that jd__ did the backport? | 19:01 |
harlowja | if he did, then a release maybe next week? | 19:02 |
harlowja | we don't like to release on fridays :-P | 19:02 |
rohit_ | harlowja: i think jd__ just added affects as in launchpad | 19:02 |
harlowja | ah | 19:02 |
harlowja | hmmm | 19:02 |
harlowja | lol | 19:03 |
harlowja | jd__ yt | 19:03 |
rohit_ | harlowja: i can volunteer for the backport if needed, just to help | 19:05 |
harlowja | sure, rohit_ want to do that, its probably real simple | 19:05 |
harlowja | then we can get a release out monday once we check with jd__ | 19:06 |
* harlowja just wants to verify with him | 19:06 | |
rohit_ | harlowja: cool | 19:06 |
harlowja | great | 19:06 |
*** sputnik13 has quit IRC | 19:07 | |
*** e0ne has quit IRC | 19:08 | |
dims | harlowja nice evangelization work! :) | 19:08 |
*** sputnik13 has joined #openstack-oslo | 19:10 | |
harlowja | :) | 19:11 |
harlowja | dims thx | 19:11 |
harlowja | busted! | 19:11 |
harlowja | lol | 19:11 |
* harlowja probably has watched mythbusters to much | 19:11 | |
harlowja | haha | 19:11 |
harlowja | *hopefully busted, haha | 19:11 |
*** e0ne has joined #openstack-oslo | 19:12 | |
harlowja | dims i think u are referring to http://lists.openstack.org/pipermail/openstack-dev/2015-November/078737.html | 19:15 |
harlowja | just making sure, hahaha | 19:15 |
dims | :) | 19:15 |
dims | yes | 19:15 |
harlowja | :) | 19:19 |
harlowja | dims if that doesn't do it, then idk what will, likely someone will still complain, but meh, to bad... | 19:20 |
harlowja | there's always crazies out there, ha | 19:20 |
* dims brings up horses and water | 19:20 | |
openstackgerrit | Merged openstack/devstack-plugin-amqp1: Set the qpidd output logfile permissions. https://review.openstack.org/242563 | 19:21 |
*** achanda has quit IRC | 19:24 | |
*** pratikmallya has joined #openstack-oslo | 19:27 | |
*** achanda has joined #openstack-oslo | 19:29 | |
*** pratikma_ has joined #openstack-oslo | 19:29 | |
*** pratikmallya has quit IRC | 19:32 | |
*** openstackstatus has joined #openstack-oslo | 19:35 | |
*** ChanServ sets mode: +v openstackstatus | 19:35 | |
-openstackstatus- NOTICE: Gerrit will be offline at 20:00-20:15 UTC today (starting 20 minutes from now) for scheduled project rename maintenance | 19:40 | |
*** salv-orl_ has joined #openstack-oslo | 19:48 | |
*** salv-orlando has quit IRC | 19:51 | |
*** pratikma_ has quit IRC | 19:53 | |
*** e0ne has quit IRC | 19:54 | |
*** pradk has quit IRC | 19:54 | |
openstackgerrit | Tom Cocozzello proposed openstack/oslo.middleware: Define entry points for filter factories for Paste Deployment https://review.openstack.org/230156 | 19:54 |
-openstackstatus- NOTICE: Gerrit is offline until 20:15 UTC today for scheduled project rename maintenance | 20:03 | |
*** ChanServ changes topic to "Gerrit is offline until 20:15 UTC today for scheduled project rename maintenance" | 20:03 | |
*** pratikmallya has joined #openstack-oslo | 20:03 | |
*** pratikma_ has joined #openstack-oslo | 20:05 | |
*** cprmrf has joined #openstack-oslo | 20:06 | |
*** sputnik13 has quit IRC | 20:06 | |
*** jroll is now known as tjroll | 20:07 | |
*** pratikmallya has quit IRC | 20:08 | |
*** sputnik13 has joined #openstack-oslo | 20:11 | |
*** salv-orl_ has quit IRC | 20:13 | |
*** achanda has quit IRC | 20:15 | |
*** sputnik13 has quit IRC | 20:25 | |
*** sputnik13 has joined #openstack-oslo | 20: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 |
harlowja | rohit_ k | 20:47 |
harlowja | seems ok, even though it adds the options stuff, but that should be fine | 20:48 |
rohit_ | yeah, lot of the backported stuff needed that | 20:48 |
harlowja | right | 20:50 |
*** salv-orlando has joined #openstack-oslo | 20:53 | |
*** gordc has quit IRC | 20:53 | |
*** harlowja_ has joined #openstack-oslo | 20:56 | |
*** harlowja has quit IRC | 20:56 | |
*** sputnik13 has quit IRC | 20:57 | |
*** sputnik13 has joined #openstack-oslo | 20:57 | |
*** openstackgerrit has quit IRC | 21:01 | |
*** openstackgerrit has joined #openstack-oslo | 21:02 | |
*** mriedem has left #openstack-oslo | 21:03 | |
*** mriedem has joined #openstack-oslo | 21:04 | |
*** jeckersb is now known as jeckersb_gone | 21:10 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Track dirtiness of models https://review.openstack.org/241441 | 21:18 |
*** subscope has quit IRC | 21:39 | |
*** jerrygb has quit IRC | 21:46 | |
*** itisha has joined #openstack-oslo | 21:47 | |
*** jerrygb has joined #openstack-oslo | 21:47 | |
*** jerrygb has quit IRC | 21:51 | |
*** alejandrito has quit IRC | 21:56 | |
*** achanda has joined #openstack-oslo | 22:08 | |
*** jerrygb has joined #openstack-oslo | 22:09 | |
openstackgerrit | Merged openstack/oslo.privsep: Updated from global requirements https://review.openstack.org/241094 | 22:10 |
*** jerrygb_ has joined #openstack-oslo | 22:10 | |
*** lascii is now known as alaski | 22:13 | |
*** jerrygb has quit IRC | 22:14 | |
*** figleaf is now known as edleafe | 22:15 | |
*** boris-42 has joined #openstack-oslo | 22:21 | |
*** pratikma_ has quit IRC | 22:22 | |
*** cprmrf__ has joined #openstack-oslo | 22:25 | |
*** achanda has quit IRC | 22:27 | |
*** rjaiswal has quit IRC | 22:27 | |
*** cprmrf has quit IRC | 22:28 | |
*** sputnik13 has quit IRC | 22:37 | |
*** mriedem has quit IRC | 22:37 | |
*** sputnik13 has joined #openstack-oslo | 22:38 | |
*** kgiusti has quit IRC | 22:39 | |
*** cprmrf__ has quit IRC | 22:39 | |
*** yamamoto has joined #openstack-oslo | 22:56 | |
*** pratikmallya has joined #openstack-oslo | 23:04 | |
*** regXboi has quit IRC | 23:07 | |
*** achanda has joined #openstack-oslo | 23:08 | |
adam_g | dimsum__, around by chance? | 23:08 |
*** achanda has quit IRC | 23:08 | |
*** yamamoto has quit IRC | 23:19 | |
*** achanda has joined #openstack-oslo | 23:29 | |
*** salv-orlando has quit IRC | 23:33 | |
*** pratikmallya has quit IRC | 23:34 | |
*** yamamoto has joined #openstack-oslo | 23:35 | |
*** mc_nair has quit IRC | 23:35 | |
*** achanda has quit IRC | 23:37 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Track dirtiness of models and use it during saving https://review.openstack.org/241441 | 23:45 |
*** dimsum__ has quit IRC | 23:52 | |
*** yamamoto has quit IRC | 23:54 | |
*** jerrygb_ has quit IRC | 23:56 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!