*** cdent has quit IRC | 00:02 | |
*** rpioso is now known as rpioso|afk | 00:13 | |
*** phuongnh has joined #openstack-oslo | 01:02 | |
*** njohnston has quit IRC | 01:03 | |
*** njohnston has joined #openstack-oslo | 02:02 | |
*** gcb_ has joined #openstack-oslo | 02:07 | |
*** larainema has joined #openstack-oslo | 03:21 | |
*** hoonetorg has quit IRC | 04:29 | |
*** hoonetorg has joined #openstack-oslo | 04:47 | |
*** hoonetorg has quit IRC | 04:54 | |
*** hoonetorg has joined #openstack-oslo | 05:11 | |
*** jaosorior has quit IRC | 05:45 | |
*** jaosorior has joined #openstack-oslo | 05:47 | |
*** rcernin has quit IRC | 06:38 | |
*** rcernin has joined #openstack-oslo | 06:40 | |
*** pcaruana has joined #openstack-oslo | 06:42 | |
*** rcernin has quit IRC | 06:51 | |
*** snapiri has quit IRC | 07:02 | |
*** snapiri has joined #openstack-oslo | 07:05 | |
*** mattgo has joined #openstack-oslo | 07:39 | |
*** shardy has joined #openstack-oslo | 08:00 | |
openstackgerrit | Yikun Jiang (Kero) proposed openstack/oslotest master: Add uuidsentinel test module https://review.openstack.org/594068 | 08:09 |
---|---|---|
*** e0ne has joined #openstack-oslo | 08:10 | |
*** cdent has joined #openstack-oslo | 08:33 | |
*** shardy has quit IRC | 08:43 | |
*** shardy has joined #openstack-oslo | 08:44 | |
openstackgerrit | Yikun Jiang (Kero) proposed openstack/oslotest master: Add uuidsentinel test module https://review.openstack.org/594068 | 08:52 |
openstackgerrit | Claudiu Belu proposed openstack/oslo.privsep master: Avoids calling ffi.dlopen(None) on Windows https://review.openstack.org/594089 | 09:36 |
openstackgerrit | Claudiu Belu proposed openstack/oslo.service master: Skips signal handling on Windows https://review.openstack.org/593897 | 09:51 |
*** rpioso|afk is now known as rpioso | 10:19 | |
*** rpioso is now known as rpioso|afk | 11:09 | |
*** snapiri has quit IRC | 11:16 | |
*** ansmith has quit IRC | 11:33 | |
*** e0ne has quit IRC | 11:36 | |
openstackgerrit | Merged openstack/oslo.rootwrap master: add lib-forward-testing-python3 test job https://review.openstack.org/591192 | 11:38 |
openstackgerrit | Yikun Jiang (Kero) proposed openstack/oslotest master: Add uuidsentinel test module https://review.openstack.org/594068 | 11:43 |
*** phuongnh has quit IRC | 11:50 | |
*** ujjain has quit IRC | 11:51 | |
*** larainema has quit IRC | 11:54 | |
*** ujjain has joined #openstack-oslo | 12:00 | |
*** raildo has joined #openstack-oslo | 12:17 | |
*** moguimar has quit IRC | 12:31 | |
*** ssbarnea is now known as ssbarnea|ruck | 12:35 | |
*** kgiusti has joined #openstack-oslo | 12:45 | |
*** efried is now known as efried_goatin | 13:03 | |
*** ansmith has joined #openstack-oslo | 13:09 | |
*** moguimar has joined #openstack-oslo | 13:09 | |
*** r-mibu has joined #openstack-oslo | 13:15 | |
*** efried_goatin is now known as efried | 13:37 | |
kgiusti | dhellmann: ping Q: oslo.messaging seems to be inconsistent when it comes to logging: some files import the standard library, others use oslo.log. | 13:37 |
kgiusti | dhellmann: in reference to https://bugs.launchpad.net/oslo.messaging/+bug/1788119 - should oslo.messaging be using oslo.log throughout the code? | 13:38 |
openstack | Launchpad bug 1788119 in oslo.messaging "Logger should be got by oslo.log getLogger instead of logging package" [Undecided,New] | 13:38 |
kgiusti | dhellmann: or should we use the python library and remove the dependency on oslo.log? | 13:39 |
*** e0ne has joined #openstack-oslo | 13:40 | |
openstackgerrit | Stephen Finucane proposed openstack/oslo.config master: sphinxext: Print output to logs, not to file https://review.openstack.org/583524 | 13:51 |
openstackgerrit | Stephen Finucane proposed openstack/oslo.config master: sphinxext: Handle multi-line group descriptions https://review.openstack.org/583525 | 13:51 |
stephenfin | Anyone fancy taking a look at those two patches? | 13:51 |
stephenfin | Some fixes for equivalent functionality in oslo.policy incoming shortly | 13:51 |
openstackgerrit | Eric Fried proposed openstack/oslo.utils master: UUID sentinel https://review.openstack.org/594179 | 13:53 |
efried | cdent, dhellmann, bnemec: ^ alternative to https://review.openstack.org/594068 | 13:54 |
openstackgerrit | Stephen Finucane proposed openstack/oslo.policy master: sphinxext: Start parsing 'DocumentedRuleDefault.description' as rST https://review.openstack.org/594222 | 14:05 |
dhellmann | kgiusti : we have to be careful about circular dependencies between the oslo libraries. I don't know if that applies here, but it's something to keep in mind. That said, oslo.logging does have some capabilities that the stdlib doesn't have, especially the keyword argument handling adapter. That's probably why oslo.log is used some places | 14:05 |
dhellmann | I'm not sure it matters about being 100% consistent | 14:06 |
*** pbourke has quit IRC | 14:06 | |
lbragstad | stephenfin: i can review the oslo.policy patch whenever you get that up for review | 14:06 |
dhellmann | though that bug sounds interesting | 14:06 |
lbragstad | nice catch | 14:06 |
stephenfin | lbragstad: https://review.openstack.org/594222 | 14:06 |
stephenfin | It's trivial enough | 14:06 |
dhellmann | kgiusti : that bug is most likely caused by calling getLogger with inconsistent names. If you use __name__ you get oslo_messaging.something but in some places we ask explicitly for 'oslo.messsaging.something' (note the _ vs . there) | 14:07 |
*** pbourke has joined #openstack-oslo | 14:07 | |
dhellmann | and I think the version of getLogger in oslo.log does that name translation | 14:08 |
dhellmann | so yeah, I guess we should at least be consistent about that | 14:08 |
*** jbadiapa has joined #openstack-oslo | 14:11 | |
kgiusti | dhellmann: thanks for the info. I'll dig a bit further. I really wanted to be sure there wasn't any plans to remove the oslo.log dependency from o.m. before I tried any fixes. | 14:23 |
*** lbragstad has quit IRC | 14:26 | |
dhellmann | kgiusti : I think there's a link between messaging and logging for notifications, but I can't remember which direction that goes | 14:30 |
dhellmann | like there's a notification handler that logs, maybe? | 14:30 |
kgiusti | dhellmann: yup - you can configure logging as an alternative to message generation. I'm not inclined to touch that code... ;) | 14:32 |
dhellmann | yeah | 14:37 |
*** spilla has joined #openstack-oslo | 14:46 | |
*** rpioso|afk is now known as rpioso | 14:48 | |
*** lbragstad has joined #openstack-oslo | 15:02 | |
*** pcaruana has quit IRC | 15:09 | |
*** sambetts|afk is now known as sambetts | 15:16 | |
openstackgerrit | melissaml proposed openstack/taskflow master: Remove the duplicated word https://review.openstack.org/594319 | 15:28 |
*** jbadiapa has quit IRC | 15:33 | |
*** e0ne has quit IRC | 15:44 | |
*** r-mibu has quit IRC | 16:04 | |
*** rpioso is now known as rpioso|afk | 16:12 | |
openstackgerrit | Claudiu Belu proposed openstack/oslo.service master: Skips signal handling on Windows https://review.openstack.org/593897 | 16:34 |
*** sambetts is now known as sambetts|afk | 16:52 | |
*** mattgo has quit IRC | 16:54 | |
*** shardy has quit IRC | 16:57 | |
*** nicolasbock has joined #openstack-oslo | 16:59 | |
*** sean-k-mooney has quit IRC | 17:00 | |
openstackgerrit | 98k proposed openstack/pycadf master: import zuul job settings from project-config https://review.openstack.org/594461 | 17:09 |
openstackgerrit | 98k proposed openstack/pycadf master: switch documentation job to new PTI https://review.openstack.org/594462 | 17:09 |
openstackgerrit | 98k proposed openstack/pycadf master: add python 3.6 unit test job https://review.openstack.org/594463 | 17:09 |
openstackgerrit | 98k proposed openstack/pycadf master: add lib-forward-testing-python3 test job https://review.openstack.org/594464 | 17:09 |
openstackgerrit | 98k proposed openstack/pycadf master: import zuul job settings from project-config https://review.openstack.org/594465 | 17:09 |
openstackgerrit | 98k proposed openstack/pycadf master: switch documentation job to new PTI https://review.openstack.org/594466 | 17:09 |
*** spilla has quit IRC | 17:35 | |
*** e0ne has joined #openstack-oslo | 17:42 | |
*** dave-mccowan has quit IRC | 17:44 | |
*** jbadiapa has joined #openstack-oslo | 18:09 | |
openstackgerrit | Sam Yaple proposed openstack/oslo.log master: [WIP] Fix fluentd outputter https://review.openstack.org/594503 | 18:13 |
*** dave-mccowan has joined #openstack-oslo | 18:30 | |
*** dave-mccowan has quit IRC | 18:35 | |
*** NobodyCam has quit IRC | 18:37 | |
*** jokke_ has quit IRC | 18:37 | |
*** ttx has quit IRC | 18:37 | |
*** fungi has quit IRC | 18:37 | |
*** dstanek has quit IRC | 18:42 | |
*** hrybacki has quit IRC | 18:42 | |
*** mnaser has quit IRC | 18:42 | |
*** dstanek has joined #openstack-oslo | 18:43 | |
*** fungi has joined #openstack-oslo | 18:48 | |
*** e0ne has quit IRC | 18:57 | |
*** cdent has quit IRC | 19:16 | |
*** rpioso|afk is now known as rpioso | 19:17 | |
*** bnemec has quit IRC | 19:20 | |
*** bnemec has joined #openstack-oslo | 19:20 | |
*** melwitt has quit IRC | 19:33 | |
*** melwitt has joined #openstack-oslo | 19:34 | |
*** sambetts|afk has quit IRC | 19:42 | |
*** sambetts_ has joined #openstack-oslo | 19:45 | |
*** samueldmq has quit IRC | 19:46 | |
*** samueldmq has joined #openstack-oslo | 19:49 | |
openstackgerrit | Merged openstack/taskflow master: Remove the duplicated word https://review.openstack.org/594319 | 19:58 |
*** gmann_ has joined #openstack-oslo | 20:13 | |
*** jaosorior_ has joined #openstack-oslo | 20:14 | |
*** jaosorior has quit IRC | 20:17 | |
*** edmondsw_ has joined #openstack-oslo | 20:18 | |
*** moguimar has quit IRC | 20:19 | |
*** edmondsw has quit IRC | 20:19 | |
*** gmann has quit IRC | 20:19 | |
*** edmondsw_ is now known as edmondsw | 20:19 | |
*** gmann_ is now known as gmann | 20:19 | |
*** kgiusti has left #openstack-oslo | 20:27 | |
openstackgerrit | Merged openstack/oslo.log master: Fix lower-constraints job https://review.openstack.org/583182 | 20:41 |
*** ansmith has quit IRC | 20:43 | |
*** raildo has quit IRC | 20:46 | |
*** harlowja has joined #openstack-oslo | 21:02 | |
openstackgerrit | Merged openstack/oslo.log master: Migrate to stestr https://review.openstack.org/571205 | 21:11 |
openstackgerrit | Merged openstack/oslo.log master: Follow the new PTI for document build https://review.openstack.org/549338 | 21:11 |
openstackgerrit | Merged openstack/oslo.log master: import zuul job settings from project-config https://review.openstack.org/588698 | 21:11 |
openstackgerrit | Merged openstack/oslo.log master: rewrite tests to not rely on implementation details of logging module https://review.openstack.org/591259 | 21:11 |
openstackgerrit | Merged openstack/oslo.log master: add python 3.6 unit test job https://review.openstack.org/589600 | 21:11 |
openstackgerrit | Merged openstack/oslo.log master: add lib-forward-testing-python3 test job https://review.openstack.org/591186 | 21:11 |
*** ansmith has joined #openstack-oslo | 21:38 | |
*** rha has quit IRC | 22:02 | |
*** rha has joined #openstack-oslo | 22:03 | |
*** rcernin has joined #openstack-oslo | 22:10 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!