*** vigneshvar has quit IRC | 00:00 | |
*** sabari is now known as zz_sabari | 00:10 | |
*** salv-orlando has quit IRC | 00:10 | |
*** dims__ has joined #openstack-oslo | 00:11 | |
*** ozialien has quit IRC | 00:11 | |
*** salv-orlando has joined #openstack-oslo | 00:13 | |
*** salv-orlando has quit IRC | 00:14 | |
*** salv-orlando has joined #openstack-oslo | 00:14 | |
*** dims__ has quit IRC | 00:16 | |
*** ajo has quit IRC | 00:21 | |
*** oomichi has joined #openstack-oslo | 00:22 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Show the failure discarded (and the future intention) https://review.openstack.org/149425 | 00:25 |
---|---|---|
*** sputnik13 has joined #openstack-oslo | 00:28 | |
sputnik13 | is this the right place to ask questions about incubator libs? | 00:28 |
sputnik13 | trying to use the service lib, can't seem to get services to exit gracefully | 00:29 |
harlowja | sputnik13 should be the right place, although not sure who is the resident expert on that lib | 00:29 |
sputnik13 | harlowja: that's what I was afraid of | 00:30 |
sputnik13 | http://paste.openstack.org/show/160524/ | 00:30 |
harlowja | :) | 00:30 |
sputnik13 | this is the code I'm trying to run, it seems like it should work... but "shutdown complete" never hits | 00:30 |
harlowja | :-/ | 00:31 |
*** achanda has quit IRC | 00:31 | |
harlowja | did u ensure that eventlet has monkeypatched the world | 00:32 |
harlowja | i'm wondering if thats part of the reason | 00:32 |
sputnik13 | uh, what? | 00:32 |
harlowja | afaik service stuff is highly dependency on eventlet | 00:32 |
harlowja | place the following at the top of that paste | 00:32 |
harlowja | import eventlet | 00:32 |
harlowja | eventlet.monkey_patch(all=True) | 00:32 |
sputnik13 | yeah, it uses eventlet | 00:32 |
harlowja | make sure u do that monkey patch as early as possible | 00:33 |
sputnik13 | harlowja: that did it | 00:33 |
harlowja | cool | 00:33 |
sputnik13 | harlowja: python hurts my head | 00:33 |
harlowja | :) | 00:33 |
sputnik13 | @_@ | 00:33 |
harlowja | if u mix code that uses eventlet stuff + threads (that aren't patched) it usually locks up | 00:34 |
harlowja | or eventlet stuff + thread (locks, threads, events....) | 00:34 |
*** achanda has joined #openstack-oslo | 00:34 | |
harlowja | so have to pretty much accept eventlet into your heart, lol | 00:34 |
harlowja | *or not use stuff that is using eventlet | 00:34 |
sputnik13 | harlowja: i c, I'll switch to using eventlet.event.Event | 00:35 |
harlowja | well u can do that or just make sure u monkey_patch | 00:35 |
*** zzzeek has joined #openstack-oslo | 00:35 | |
harlowja | monkey_patch(all=True) will turn code that thinks its using threading.Event into something that really uses eventlet.event.Event | 00:36 |
lifeless | eventlet must die | 00:36 |
harlowja | *under the covers (which is why u need to do that as early in the program as possible) | 00:36 |
harlowja | lol | 00:36 |
lifeless | just saying | 00:36 |
sputnik13 | well, I didn't bother to even search for an eventlet event... I'm assuming it would work better than threading.Event when using eventlet | 00:36 |
harlowja | sputnik13 probably; thought it should be to much diff | 00:36 |
sputnik13 | lifeless: why is that? I'm still new to python, I have no basis for an opinion, just curious | 00:36 |
harlowja | *though it shouldn't be to much of a diff (if eventlet folks monkey patched the right stuff...) | 00:37 |
*** zzzeek has quit IRC | 00:37 | |
lifeless | sputnik13: its very fragile | 00:37 |
harlowja | hehe, enter the pits of hell u may | 00:37 |
harlowja | lol | 00:37 |
harlowja | sputnik13 it also is all-consuming | 00:38 |
lifeless | sputnik13: its extremely hard to reason about (e.g. there's something like 30 different permutations in how it may be used with the monkey patching of some or none or all modules | 00:38 |
lifeless | sputnik13: its not well integrated into DB access, which we do a lot of from the DB using APIs | 00:38 |
sputnik13 | harlowja: how funny, without monkey patch, using eventlet.event.Event in lieu of threading.Event still locks up | 00:38 |
harlowja | *as u are seeing, if u don't monkey patch all the things at the right time in your program, then some random library u import might just lock all the things up (even though that library works fine normally...) | 00:38 |
harlowja | sputnik13 ya, so then it gets into the question of what else service.py is using | 00:38 |
harlowja | if its using time.time; that can lock up still | 00:38 |
harlowja | just accept it into your heart :-P | 00:39 |
sputnik13 | yeah I'm going to monkeypatch | 00:39 |
sputnik13 | so then why is oslo.service written using eventlet I wonder... | 00:39 |
harlowja | historical reason likely | 00:40 |
harlowja | if it was refactored to not, then it would probably work better in your situation that u are seeing right now | 00:40 |
harlowja | i don't think there is anything that really requires eventlet in it, i just think thats how it has been... | 00:40 |
harlowja | and once u start with eventlet, u never go back, ha | 00:41 |
harlowja | :-/ | 00:41 |
sputnik13 | huh | 00:41 |
harlowja | *later statement was a joke | 00:41 |
sputnik13 | :) | 00:41 |
harlowja | its fragile and u get addicted to it (in a way) | 00:41 |
* sputnik13 needs to read up on eventlet | 00:41 | |
harlowja | things like https://github.com/openstack/oslo-incubator/blob/master/openstack/common/service.py#L452 and such could probably be refactored to use native threads (and then let eventlet monkey patch the threading module when eventlet is used) | 00:42 |
harlowja | there are a few other places that would need adjustment and refactoring to do similar things | 00:42 |
harlowja | so that way, it would work with native threads and then when someone wants eventlet they just have to do the same monkey_patch that u are doing and then rely on the fact that that service module is now really using greenthreads | 00:43 |
harlowja | anyways | 00:43 |
sputnik13 | harlowja: that's the module I'm using btw | 00:45 |
harlowja | ya | 00:45 |
harlowja | its coupled to eventlet, so that means if u use it u have to be to :-/ | 00:45 |
harlowja | *the aforementioned addiction problem, lol | 00:46 |
sputnik13 | but if it requires eventlet and it's known that eventlet requires monkey patching, why don't they call monkey_patch in that module | 00:46 |
harlowja | to late at that point | 00:46 |
sputnik13 | ah ok | 00:46 |
harlowja | and its the incubator stuff, so mostly that gets copied into other apps; so the creators of that don't really know the appropriate place to call that | 00:46 |
harlowja | although it should have a big warning on the top of the file or something | 00:47 |
harlowja | MAKE SURE EVENTLET PATCHEDDDDD | 00:47 |
harlowja | lol | 00:47 |
sputnik13 | yeah, agreed with warning | 00:47 |
*** salv-orlando has quit IRC | 00:47 | |
sputnik13 | would be nice if there was a flag being set by monkey_patch that the lib could check for and throw an exception or something if monkey_patch hasn't been run | 00:47 |
harlowja | agreed | 00:47 |
*** salv-orlando has joined #openstack-oslo | 00:47 | |
sputnik13 | anyway, that should allow me to push ahead, thanks :) | 00:48 |
harlowja | that would probably be helpful, at the expense of a lot of checks in places | 00:48 |
sputnik13 | I'd rather have a few additional checks than have mysterious lockups | 00:48 |
sputnik13 | personally | 00:48 |
harlowja | aka in taskflow i have the following stuffs to avoid this | 00:49 |
harlowja | https://github.com/openstack/taskflow/blob/master/taskflow/types/futures.py#L283 | 00:49 |
harlowja | eu.check_for_eventlet and such... | 00:49 |
harlowja | agreed | 00:49 |
harlowja | ^ above will blowup if it can't be used | 00:49 |
harlowja | although it doesn't right now check that u have monkey patched certain modules, maybe should do that | 00:50 |
harlowja | i think that api exists | 00:50 |
sputnik13 | yeah, that would be good | 00:50 |
sputnik13 | btw, I think you'd be glad to know we're "officially" going forward with taskflow on cue | 00:51 |
harlowja | cools | 00:51 |
harlowja | let the fun begin, ha | 00:51 |
*** salv-orlando has quit IRC | 00:52 | |
harlowja | poppy (another project) also decided that i think earlier today | 00:52 |
harlowja | i think thats dns-service or something, can't remember these codenames | 00:52 |
harlowja | cdn aas or something, lol | 00:52 |
harlowja | to many projects :-P | 00:52 |
sputnik13 | hah, good problem to have :) | 00:55 |
sputnik13 | for a general purpose lib | 00:55 |
harlowja | def, hopefully it helps people (thats all my goal is) | 00:55 |
harlowja | if not, well, don't blame me, haha | 00:55 |
*** yamahata has joined #openstack-oslo | 00:56 | |
sputnik13 | well, it's open source right, if it doesn't do what's needed, the user should contribute to make it do what's needed, isn't that the whole point? | 00:57 |
sputnik13 | :) | 00:57 |
harlowja | :) | 00:57 |
harlowja | +2 | 00:57 |
sputnik13 | time to head home, thanks for your help | 00:58 |
harlowja | np :) | 00:59 |
*** dims__ has joined #openstack-oslo | 00:59 | |
harlowja | i'll add u on a review for taskflow, to at least try to warn people about eventlet usage there | 00:59 |
harlowja | elsewhere imho something similar shoudl be done | 01:00 |
*** zz_sabari is now known as sabari | 01:04 | |
*** noelbk has quit IRC | 01:06 | |
*** sputnik13 has quit IRC | 01:07 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 01:10 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Warn when eventlet is being used and certain modules are not patched https://review.openstack.org/149452 | 01:29 |
*** tsekiyam_ has joined #openstack-oslo | 01:33 | |
*** tsekiyama has quit IRC | 01:37 | |
*** mtanino has quit IRC | 01:38 | |
*** tsekiyam_ has quit IRC | 01:38 | |
*** alexpilotti has joined #openstack-oslo | 01:39 | |
harlowja | probably should get that into oslo.utils or something after it bakes for a little... | 01:39 |
harlowja | seems useful | 01:39 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Warn when eventlet is being used and certain modules are not patched https://review.openstack.org/149452 | 01:39 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Warn when eventlet is being used and certain modules are not patched https://review.openstack.org/149452 | 01:48 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Warn when eventlet is being used and certain modules are not patched https://review.openstack.org/149452 | 01:49 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Fix leftover/remaining 'oslo.utils' usage https://review.openstack.org/149455 | 01:53 |
dims__ | hey harlowja: is MV nearby for you? (nova mid-cyle) | 01:53 |
harlowja | dims__ ya, like 10 minutes driving | 01:53 |
harlowja | *traffic dependent, ha | 01:53 |
dims__ | so i'll see you there then? | 01:53 |
harlowja | ya | 01:53 |
dims__ | cool! | 01:53 |
harlowja | i'll be there (until i get bored, which then i might run-away) | 01:53 |
harlowja | :-P | 01:53 |
dims__ | i hear ya! | 01:54 |
harlowja | dims__ if u get ambitous https://review.openstack.org/#/c/148721/ :) | 01:55 |
harlowja | and https://review.openstack.org/#/c/148759/ | 01:55 |
harlowja | might as well get that library moving along | 01:55 |
dims__ | harlowja: ack. will do | 01:56 |
harlowja | sweets | 01:56 |
harlowja | thx | 01:56 |
harlowja | bbl | 01:58 |
*** dhellman_ has quit IRC | 02:02 | |
*** alexpilotti has quit IRC | 02:03 | |
*** alexpilotti has joined #openstack-oslo | 02:05 | |
*** alexpilotti has quit IRC | 02:06 | |
*** alexpilotti has joined #openstack-oslo | 02:07 | |
*** alexpilotti has quit IRC | 02:08 | |
*** alexpilotti has joined #openstack-oslo | 02:11 | |
openstackgerrit | Angus Lees proposed openstack/oslo.db: Test that concurrent sqlalchemy transactions don't block https://review.openstack.org/104436 | 02:13 |
*** sabari is now known as zz_sabari | 02:22 | |
*** _amrith_ is now known as amrith | 02:33 | |
*** alexpilotti has quit IRC | 02:38 | |
*** stevemar has quit IRC | 02:39 | |
*** stevemar2 has joined #openstack-oslo | 02:39 | |
openstackgerrit | ZhiQiang Fan proposed openstack/oslo-incubator: Use oslo_utils instead of deprecated oslo.utils https://review.openstack.org/147427 | 02:39 |
*** zz_sabari is now known as sabari | 02:46 | |
*** yamahata has quit IRC | 02:50 | |
*** stevemar2 is now known as stevemar | 02:50 | |
*** rushiagr_away is now known as rushiagr | 02:56 | |
*** harlowja is now known as harlowja_away | 02:59 | |
*** ozialien has joined #openstack-oslo | 03:16 | |
*** sabari is now known as zz_sabari | 03:28 | |
*** rushiagr is now known as rushiagr_away | 03:30 | |
*** dims__ has quit IRC | 03:34 | |
*** zz_sabari is now known as sabari | 03:40 | |
*** achanda has quit IRC | 03:40 | |
*** zzzeek has joined #openstack-oslo | 03:45 | |
*** amrith is now known as _amrith_ | 03:45 | |
*** zzzeek has quit IRC | 03:58 | |
*** sabari is now known as zz_sabari | 04:00 | |
*** achanda has joined #openstack-oslo | 04:00 | |
openstackgerrit | xhzhf proposed openstack/oslo.vmware: oslo.vmware: getattr throw exception insteading returning none https://review.openstack.org/147044 | 04:04 |
*** yamahata has joined #openstack-oslo | 04:16 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 04:21 | |
*** salv-orlando has joined #openstack-oslo | 04:23 | |
*** achanda has quit IRC | 04:29 | |
*** salv-orlando has quit IRC | 04:29 | |
*** crc32 has joined #openstack-oslo | 04:31 | |
*** achanda has joined #openstack-oslo | 04:32 | |
*** zzzeek has joined #openstack-oslo | 04:33 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo-incubator: Updated from global requirements https://review.openstack.org/149474 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.concurrency: Updated from global requirements https://review.openstack.org/149475 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.db: Updated from global requirements https://review.openstack.org/149476 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.log: Updated from global requirements https://review.openstack.org/146703 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.messaging: Updated from global requirements https://review.openstack.org/149477 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.middleware: Updated from global requirements https://review.openstack.org/149478 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.serialization: Updated from global requirements https://review.openstack.org/149479 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.utils: Updated from global requirements https://review.openstack.org/135242 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.vmware: Updated from global requirements https://review.openstack.org/149480 | 04:37 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/tooz: Updated from global requirements https://review.openstack.org/144786 | 04:39 |
*** zzzeek has quit IRC | 04:41 | |
*** rushiagr_away is now known as rushiagr | 04:49 | |
*** achanda has quit IRC | 04:51 | |
*** zz_sabari is now known as sabari | 04:52 | |
*** achanda has joined #openstack-oslo | 04:56 | |
*** yamahata has quit IRC | 05:10 | |
*** yamahata has joined #openstack-oslo | 05:17 | |
*** salv-orlando has joined #openstack-oslo | 05:25 | |
*** stevemar has quit IRC | 05:30 | |
*** stevemar has joined #openstack-oslo | 05:31 | |
*** salv-orlando has quit IRC | 05:31 | |
*** crc32 has quit IRC | 05:45 | |
openstackgerrit | Angus Lees proposed openstack/oslo.db: Test that concurrent sqlalchemy transactions don't block https://review.openstack.org/104436 | 05:50 |
*** fnordahl has quit IRC | 05:59 | |
*** fnordahl has joined #openstack-oslo | 06:02 | |
*** inc0 has joined #openstack-oslo | 06:03 | |
*** fnordahl has quit IRC | 06:09 | |
*** fnordahl has joined #openstack-oslo | 06:09 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.messaging: Imported Translations from Transifex https://review.openstack.org/143256 | 06:10 |
*** yalie has joined #openstack-oslo | 06:21 | |
yalie | hi all, a question about oslo_concurrency | 06:21 |
yalie | oslo_concurrency regiester lock_path, could I use var in this opt? | 06:22 |
yalie | like lock_path=$st_path/xxxx | 06:22 |
yalie | could I use it like this? | 06:22 |
*** liusheng has joined #openstack-oslo | 06:26 | |
*** dims__ has joined #openstack-oslo | 06:35 | |
*** dims__ has quit IRC | 06:39 | |
openstackgerrit | Merged openstack/taskflow: Fix leftover/remaining 'oslo.utils' usage https://review.openstack.org/149455 | 06:56 |
openstackgerrit | Merged openstack/taskflow: Use a class provided logger before falling back to module https://review.openstack.org/149106 | 06:56 |
openstackgerrit | Merged openstack/taskflow: Use explicit WBE object arguments (instead of kwargs) https://review.openstack.org/148411 | 06:56 |
*** vigneshvar has joined #openstack-oslo | 07:02 | |
*** sputnik13 has joined #openstack-oslo | 07:08 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Tidy up the WBE cache (now WBE types) module https://review.openstack.org/103245 | 07:08 |
openstackgerrit | ZhiQiang Fan proposed openstack/oslo-incubator: switch to oslo_i18n https://review.openstack.org/149519 | 07:09 |
*** sputnik13 has quit IRC | 07:19 | |
*** sputnik13 has joined #openstack-oslo | 07:23 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Add a WBE request state diagram + explanation https://review.openstack.org/149050 | 07:26 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: WBE documentation tweaks/adjustments https://review.openstack.org/149081 | 07:26 |
*** sabari is now known as zz_sabari | 07:28 | |
*** zz_sabari is now known as sabari | 07:31 | |
openstackgerrit | xhzhf proposed openstack/oslo.vmware: oslo.vmware: getattr throw exception insteading returning none https://review.openstack.org/147044 | 07:34 |
*** liusheng has quit IRC | 07:34 | |
*** liusheng has joined #openstack-oslo | 07:35 | |
*** sabari is now known as zz_sabari | 07:35 | |
*** zz_sabari is now known as sabari | 07:36 | |
*** sabari is now known as zz_sabari | 07:41 | |
*** stevemar has quit IRC | 07:44 | |
*** zz_sabari is now known as sabari | 07:46 | |
*** stevemar has joined #openstack-oslo | 07:46 | |
openstackgerrit | ZhiQiang Fan proposed openstack/oslo-incubator: Use oslo_middleware instead of deprecated oslo.middleware https://review.openstack.org/147431 | 07:50 |
*** e0ne has joined #openstack-oslo | 07:53 | |
*** e0ne is now known as e0ne_ | 07:54 | |
*** e0ne_ is now known as e0ne | 07:54 | |
*** ozialien has quit IRC | 07:54 | |
*** stevemar has quit IRC | 07:57 | |
*** sabari is now known as zz_sabari | 07:59 | |
*** sputnik13 has quit IRC | 08:00 | |
*** zz_sabari is now known as sabari | 08:00 | |
yalie | hi dhellmann ? | 08:02 |
*** pblaho has joined #openstack-oslo | 08:03 | |
*** salv-orlando has joined #openstack-oslo | 08:09 | |
*** liusheng has quit IRC | 08:11 | |
*** liusheng has joined #openstack-oslo | 08:13 | |
*** e0ne has quit IRC | 08:15 | |
*** salv-orlando has quit IRC | 08:16 | |
openstackgerrit | Merged openstack/taskflow: Tidy up the WBE cache (now WBE types) module https://review.openstack.org/103245 | 08:26 |
*** ihrachyshka has joined #openstack-oslo | 08:33 | |
*** dtantsur is now known as dtantsur|brb | 08:33 | |
*** liusheng has quit IRC | 08:35 | |
*** liusheng has joined #openstack-oslo | 08:35 | |
*** achanda has quit IRC | 08:36 | |
*** sabari is now known as zz_sabari | 08:40 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Use explicit WBE worker object arguments (instead of kwargs) https://review.openstack.org/149536 | 08:43 |
*** zz_sabari is now known as sabari | 08:45 | |
*** sabari is now known as zz_sabari | 08:49 | |
*** i159 has joined #openstack-oslo | 08:50 | |
*** liusheng has quit IRC | 08:50 | |
*** liusheng has joined #openstack-oslo | 08:51 | |
openstackgerrit | Merged openstack/taskflow: Add a WBE request state diagram + explanation https://review.openstack.org/149050 | 08:59 |
ozamiatin | sileht, ok I have no objections | 09:01 |
*** yamahata has quit IRC | 09:02 | |
*** liusheng has quit IRC | 09:06 | |
*** liusheng has joined #openstack-oslo | 09:06 | |
*** yalie has quit IRC | 09:08 | |
*** salv-orl_ has joined #openstack-oslo | 09:14 | |
*** salv-orl_ has quit IRC | 09:14 | |
*** salv-orlando has joined #openstack-oslo | 09:15 | |
*** isviridov_away is now known as isviridov | 09:16 | |
openstackgerrit | Merged openstack/taskflow: WBE documentation tweaks/adjustments https://review.openstack.org/149081 | 09:20 |
*** lifeless has quit IRC | 09:21 | |
*** lifeless has joined #openstack-oslo | 09:22 | |
*** liusheng has quit IRC | 09:22 | |
*** liusheng has joined #openstack-oslo | 09:23 | |
*** dulek has joined #openstack-oslo | 09:31 | |
*** liusheng has quit IRC | 09:41 | |
*** liusheng has joined #openstack-oslo | 09:41 | |
*** sputnik13 has joined #openstack-oslo | 09:46 | |
*** sreshetnyak has joined #openstack-oslo | 09:49 | |
*** sputnik13 has quit IRC | 09:51 | |
*** sputnik13 has joined #openstack-oslo | 09:54 | |
openstackgerrit | James Page proposed openstack/oslo.messaging: zmq: support Cinder multi-backend server targets https://review.openstack.org/129185 | 09:54 |
*** andreykurilin_ has joined #openstack-oslo | 09:55 | |
*** viktors|afk has quit IRC | 09:56 | |
*** sputnik13 has quit IRC | 09:56 | |
*** i159 has quit IRC | 09:56 | |
*** andreykurilin has quit IRC | 09:56 | |
*** ozamiatin has quit IRC | 09:56 | |
*** ozamiatin has joined #openstack-oslo | 09:56 | |
*** i159 has joined #openstack-oslo | 09:59 | |
*** e0ne has joined #openstack-oslo | 09:59 | |
*** andreykurilin has joined #openstack-oslo | 10:00 | |
*** viktors has joined #openstack-oslo | 10:01 | |
openstackgerrit | Julien Danjou proposed openstack/oslo-incubator: Remove context https://review.openstack.org/148545 | 10:03 |
*** e0ne is now known as e0ne_ | 10:04 | |
openstackgerrit | Julien Danjou proposed openstack/oslo-incubator: Replace mox by mox3 https://review.openstack.org/148243 | 10:06 |
openstackgerrit | Merged openstack/oslo-incubator: Updated from global requirements https://review.openstack.org/149474 | 10:06 |
*** e0ne_ is now known as e0ne | 10:08 | |
*** sputnik13 has joined #openstack-oslo | 10:09 | |
*** jaosorior has joined #openstack-oslo | 10:14 | |
*** yalie has joined #openstack-oslo | 10:14 | |
yalie | Hi jd__ ? | 10:16 |
jd__ | hi yalie | 10:16 |
yalie | could you help to review this patch https://review.openstack.org/#/c/148789/ | 10:17 |
yalie | it's a tempest-lib dependency issue | 10:17 |
openstackgerrit | Julien Danjou proposed openstack/oslo-incubator: Replace mox by mox3 https://review.openstack.org/148243 | 10:18 |
openstackgerrit | Julien Danjou proposed openstack/oslo-incubator: Remove useless dependencies https://review.openstack.org/148242 | 10:18 |
jd__ | yalie: sure, done | 10:18 |
yalie | thank you! jd__ | 10:18 |
*** takedakn has joined #openstack-oslo | 10:19 | |
*** salv-orlando has quit IRC | 10:25 | |
*** dulek has quit IRC | 10:31 | |
*** yalie has quit IRC | 10:32 | |
*** takedakn has quit IRC | 10:32 | |
openstackgerrit | Merged openstack/oslo.concurrency: Updated from global requirements https://review.openstack.org/149475 | 10:37 |
*** amotoki has joined #openstack-oslo | 10:40 | |
openstackgerrit | Merged openstack/oslo.serialization: Updated from global requirements https://review.openstack.org/149479 | 10:46 |
openstackgerrit | Merged openstack/oslo.middleware: Updated from global requirements https://review.openstack.org/149478 | 10:52 |
*** dims__ has joined #openstack-oslo | 10:58 | |
*** inc0_ has joined #openstack-oslo | 11:00 | |
*** dims__ has quit IRC | 11:02 | |
*** inc0 has quit IRC | 11:02 | |
*** inc0_ has quit IRC | 11:03 | |
*** inc0 has joined #openstack-oslo | 11:03 | |
*** dims__ has joined #openstack-oslo | 11:11 | |
*** inc0 has quit IRC | 11:11 | |
*** inc0 has joined #openstack-oslo | 11:11 | |
*** liusheng has quit IRC | 11:12 | |
*** liusheng has joined #openstack-oslo | 11:12 | |
*** andreykurilin_ has quit IRC | 11:14 | |
openstackgerrit | Ivan Melnikov proposed openstack/taskflow: Fix coverage environment https://review.openstack.org/149572 | 11:16 |
*** liusheng has quit IRC | 11:19 | |
*** liusheng has joined #openstack-oslo | 11:19 | |
*** ajo has joined #openstack-oslo | 11:33 | |
*** dtantsur|brb is now known as dtantsur | 11:38 | |
*** e0ne is now known as e0ne_ | 11:47 | |
*** e0ne_ is now known as e0ne | 11:49 | |
dtantsur | hey folks! :) anyone up for reviewing 2 mostly-refactoring patches for periodic_task? https://review.openstack.org/#/c/147567/ and https://review.openstack.org/#/c/148854/ | 11:50 |
dtantsur | (already got 1x +2) | 11:50 |
*** inc0_ has joined #openstack-oslo | 12:03 | |
*** inc0_ has quit IRC | 12:06 | |
*** inc0 has quit IRC | 12:07 | |
*** alexpilotti has joined #openstack-oslo | 12:12 | |
*** e0ne is now known as e0ne_ | 12:34 | |
*** e0ne_ is now known as e0ne | 12:35 | |
*** liusheng has quit IRC | 12:40 | |
*** liusheng has joined #openstack-oslo | 12:41 | |
*** _amrith_ is now known as amrith | 12:44 | |
*** amotoki has quit IRC | 12:45 | |
*** amotoki has joined #openstack-oslo | 12:57 | |
*** denis_makogon has joined #openstack-oslo | 13:02 | |
*** vigneshvar has quit IRC | 13:08 | |
*** dulek has joined #openstack-oslo | 13:10 | |
*** rushiagr is now known as rushiagr_away | 13:10 | |
*** dims__ has quit IRC | 13:11 | |
*** dims__ has joined #openstack-oslo | 13:11 | |
*** dulek has quit IRC | 13:15 | |
*** bknudson has joined #openstack-oslo | 13:16 | |
*** e0ne is now known as e0ne_ | 13:22 | |
*** sputnik13 has quit IRC | 13:28 | |
*** e0ne_ has quit IRC | 13:28 | |
*** e0ne has joined #openstack-oslo | 13:33 | |
*** e0ne is now known as e0ne_ | 13:38 | |
*** liusheng has quit IRC | 13:40 | |
*** liusheng has joined #openstack-oslo | 13:41 | |
*** e0ne_ has quit IRC | 13:43 | |
*** gordc has joined #openstack-oslo | 13:46 | |
*** rushiagr_away is now known as rushiagr | 13:46 | |
*** sputnik13 has joined #openstack-oslo | 13:54 | |
*** kgiusti has joined #openstack-oslo | 14:02 | |
*** e0ne has joined #openstack-oslo | 14:03 | |
*** sputnik13 has quit IRC | 14:04 | |
*** amrith is now known as _amrith_ | 14:07 | |
*** mtreinish has quit IRC | 14:08 | |
zhiyan | hi dims__ jd__ , around? | 14:09 |
dims__ | zhiyan: pong | 14:09 |
zhiyan | dims__: hi dims, how are you? | 14:10 |
jd__ | yes but I don't like empty ping :) | 14:10 |
zhiyan | hey jd! | 14:11 |
zhiyan | jd__: dims__ not sure if you ok could help review https://review.openstack.org/#/c/145717/ ? ) | 14:11 |
zhiyan | it's a straightforward change | 14:11 |
jd__ | zhiyan: done | 14:13 |
zhiyan | jd__: thanks. the change will make https://review.openstack.org/#/c/145715/ easier. | 14:14 |
zhiyan | ify | 14:14 |
dims__ | zhiyan: i've left a note :) | 14:15 |
zhiyan | dims__: ah, anyway..#148547 works for my purpose as well :) | 14:16 |
dims__ | :) thanks for the flexibility | 14:16 |
zhiyan | dims__: ;) | 14:16 |
zhiyan | dims__: just a little sad, i prepared it at 8th ) | 14:18 |
dims__ | apologies :) | 14:18 |
zhiyan | dims__: np (next time will ping you help here earlier =)) | 14:19 |
dims__ | zhiyan: yep, sounds good. | 14:19 |
*** salv-orlando has joined #openstack-oslo | 14:25 | |
openstackgerrit | Merged openstack/oslo-incubator: Remove uuidutils https://review.openstack.org/148547 | 14:25 |
*** amotoki has quit IRC | 14:28 | |
*** jecarey has joined #openstack-oslo | 14:32 | |
*** amotoki has joined #openstack-oslo | 14:32 | |
*** ajo has quit IRC | 14:38 | |
*** denis_makogon has quit IRC | 14:41 | |
*** ajo has joined #openstack-oslo | 14:46 | |
*** amotoki has quit IRC | 14:48 | |
*** denis_makogon has joined #openstack-oslo | 14:53 | |
*** _amrith_ is now known as amrith | 14:55 | |
*** sheeprine has quit IRC | 14:57 | |
*** sheeprine has joined #openstack-oslo | 15:00 | |
*** dulek has joined #openstack-oslo | 15:02 | |
*** pblaho has quit IRC | 15:05 | |
*** pblaho_ has joined #openstack-oslo | 15:05 | |
*** dulek has quit IRC | 15:09 | |
*** viktors is now known as viktors|afk | 15:10 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 15:12 | |
*** mtanino has joined #openstack-oslo | 15:16 | |
*** sputnik13 has joined #openstack-oslo | 15:24 | |
*** pblaho__ has joined #openstack-oslo | 15:34 | |
*** pblaho__ is now known as pblaho | 15:35 | |
*** achanda has joined #openstack-oslo | 15:35 | |
*** pblaho has quit IRC | 15:35 | |
*** pblaho has joined #openstack-oslo | 15:36 | |
*** pblaho_ has quit IRC | 15:37 | |
*** liusheng has quit IRC | 15:41 | |
*** liusheng has joined #openstack-oslo | 15:41 | |
*** achanda has quit IRC | 15:43 | |
*** sheeprine has quit IRC | 15:45 | |
*** sheeprine has joined #openstack-oslo | 15:48 | |
openstackgerrit | Merged openstack/oslo-incubator: Remove useless dependencies https://review.openstack.org/148242 | 15:49 |
bnemec | jd__: So why did we ever bother adding mox to six.moves? | 15:53 |
bnemec | If mox3 works on both versions, it would have made more sense to just switch to it. | 15:53 |
jd__ | bnemec: I have no idea | 15:53 |
jd__ | and mox3 and mox are only 99% compatible anyway | 15:53 |
jd__ | there's some corner cases that me and dims__ hit that does not work so you have to port the code | 15:54 |
bnemec | Ah, maybe that's why. | 15:54 |
jd__ | we were probably too optimistic I'd say :) | 15:54 |
bnemec | Looks like you fixed everything though, so I guess it's fine. | 15:54 |
bnemec | Just wanted to understand what we were changing there. | 15:54 |
jd__ | sure, no problem | 15:55 |
*** zzzeek has joined #openstack-oslo | 15:56 | |
openstackgerrit | Merged openstack/oslo-incubator: Replace mox by mox3 https://review.openstack.org/148243 | 15:59 |
*** yamahata has joined #openstack-oslo | 16:02 | |
*** achanda has joined #openstack-oslo | 16:02 | |
*** achanda has quit IRC | 16:06 | |
*** booly-yam-9623 has joined #openstack-oslo | 16:08 | |
*** dulek has joined #openstack-oslo | 16:19 | |
*** tsekiyama has joined #openstack-oslo | 16:27 | |
*** dulek has quit IRC | 16:30 | |
*** david-lyle_afk is now known as david-lyle | 16:35 | |
openstackgerrit | Merged openstack/oslo.utils: Updated from global requirements https://review.openstack.org/135242 | 16:50 |
*** kgiusti has quit IRC | 17:02 | |
*** e0ne is now known as e0ne_ | 17:03 | |
*** i159 has quit IRC | 17:04 | |
*** e0ne_ is now known as e0ne | 17:04 | |
*** dims__ has quit IRC | 17:04 | |
*** e0ne has quit IRC | 17:05 | |
ihrachyshka | dhellmann, https://review.openstack.org/149400 please | 17:08 |
*** liusheng has quit IRC | 17:08 | |
*** liusheng has joined #openstack-oslo | 17:09 | |
*** dims__ has joined #openstack-oslo | 17:14 | |
*** dims__ is now known as dimsum__ | 17:16 | |
bnemec | ihrachyshka: Just FYI, he's travelling today so he will probably have spotty/no availability. | 17:17 |
tteggel | hey oslo - who looks after your stable/juno branch? Looking for +2/+A on https://review.openstack.org/#/c/149008/ thanks! | 17:18 |
*** bnemec is now known as beekneemech | 17:21 | |
ihrachyshka | beekneemech, tnx | 17:21 |
ihrachyshka | zzzeek, hey, around? | 17:21 |
zzzeek | ihrachyshka: hi | 17:21 |
ihrachyshka | zzzeek, I have a dumb question (for sure) on sqla | 17:21 |
ihrachyshka | zzzeek, in update(), there is synchronize_session argument. if it's False, docs say: "Before the expiration, updated objects may still remain in the session with stale values on their attributes, which can lead to confusing results." | 17:22 |
ihrachyshka | what does it mean? | 17:22 |
dhellmann | ihrachyshka: done | 17:22 |
ihrachyshka | is it safe to fetch from the result of the query and use value as in: https://review.openstack.org/#/c/122265/5/neutron/db/l3_db.py ? | 17:22 |
zzzeek | wow folks sure get messed up on that argument :) | 17:22 |
zzzeek | we didnt have query.update() for the longest time b.c. of this issue | 17:23 |
zzzeek | ihrachyshka: say you do this: my_obj = session.query(MyClass).filter_by(id=5).one() | 17:23 |
zzzeek | ihrachyshka: then you do this: session.query(MyClass).update({" | 17:23 |
zzzeek | oops | 17:23 |
zzzeek | you do this: session.query(MyClass).update({“name”: “newname”}, synchronize_session=False) | 17:24 |
zzzeek | what is my_obj.name set to ? | 17:24 |
ihrachyshka | zzzeek, you mean, in that case it may be different, right? | 17:25 |
zzzeek | ihrachyshka: yes | 17:25 |
zzzeek | ihrachyshka: because its just in memory | 17:25 |
zzzeek | nothing touched it | 17:25 |
ihrachyshka | zzzeek, and if we want it to refetch on demand, we need to change that sync_session arg? | 17:25 |
ihrachyshka | zzzeek, ok, does it apply in the case I posted? | 17:26 |
ihrachyshka | or is .first() ok? | 17:26 |
zzzeek | ihrachyshka: looking | 17:26 |
zzzeek | ihrachyshka: yeah so there, this will probably be OK. But in the abstract, it’s not entirely “safe”. if this “fip” row were already loaded in terms of this Session, it would not have the new value. There’s a way to guard here though I will add that in. | 17:27 |
zzzeek | though theres somethign else not ideal here either | 17:27 |
ihrachyshka | zzzeek, go comment then! you're the SQL master here ;) | 17:28 |
ihrachyshka | zzzeek, I'm less than ignorant here | 17:29 |
*** bknudson has quit IRC | 17:29 | |
*** salv-orlando has quit IRC | 17:30 | |
*** zzzeek_ has joined #openstack-oslo | 17:31 | |
*** dulek has joined #openstack-oslo | 17:32 | |
*** zzzeek has quit IRC | 17:32 | |
*** zzzeek_ is now known as zzzeek | 17:32 | |
*** liusheng has quit IRC | 17:33 | |
*** liusheng has joined #openstack-oslo | 17:34 | |
*** zzzeek_ has joined #openstack-oslo | 17:35 | |
*** zzzeek has quit IRC | 17:37 | |
*** zzzeek_ is now known as zzzeek | 17:37 | |
ihrachyshka | zzzeek, so, just to make it clear, will you update there with your comment? | 17:39 |
zzzeek | im editing | 17:39 |
zzzeek | internet has been up and down the last few minutes | 17:39 |
*** denis_makogon has quit IRC | 17:40 | |
ihrachyshka | zzzeek, yeah, I saw that, that's why I'm asking in case you missed the latest comments. Thanks a lot, we really appreciate your comments on db side of things. | 17:43 |
zzzeek | ihrachyshka: im not sure why everyone’s using query.update() all over the place. if ppl just read the ORM tutorial before doing openstack patches, maybe things would be better :) | 17:44 |
*** amrith is now known as _amrith_ | 17:44 | |
*** jaosorior has quit IRC | 17:44 | |
ihrachyshka | zzzeek, hm. what's that tutorial? | 17:45 |
zzzeek | its the link with the boldface “Read this first” right here: http://docs.sqlalchemy.org/en/rel_0_9/ :) | 17:45 |
zzzeek | http://docs.sqlalchemy.org/en/rel_0_9/orm/tutorial.html | 17:45 |
*** booly-yam-9623 has quit IRC | 17:46 | |
ihrachyshka | zzzeek, thanks, I will try to swallow that | 17:47 |
zzzeek | ihrachyshka: i am sure you can do it | 17:47 |
*** booly-yam-9623_ has joined #openstack-oslo | 17:47 | |
zzzeek | ihrachyshka: openstack hardly uses relationship() at all so really just the first third of it is 90% of what we need | 17:48 |
*** liusheng has quit IRC | 17:48 | |
*** liusheng has joined #openstack-oslo | 17:49 | |
*** pblaho has quit IRC | 17:50 | |
*** yamahata has quit IRC | 17:52 | |
*** e0ne has joined #openstack-oslo | 18:01 | |
*** dulek has quit IRC | 18:05 | |
*** dulek has joined #openstack-oslo | 18:06 | |
*** mtreinish has joined #openstack-oslo | 18:08 | |
*** dtantsur is now known as dtantsur|afk | 18:09 | |
*** kgiusti has joined #openstack-oslo | 18:11 | |
*** dulek has quit IRC | 18:12 | |
*** harlowja_away is now known as harlowja | 18:14 | |
*** rushiagr is now known as rushiagr_away | 18:19 | |
*** salv-orlando has joined #openstack-oslo | 18:19 | |
*** zz_sabari is now known as sabari | 18:20 | |
dimsum__ | dhellmann: i stopped responding on that thread, qiming had some bone to pick (don't know what/why!) | 18:28 |
dhellmann | dimsum__: yeah, I re-read it and noticed the issue had nothing to do with what qiming was asserting | 18:28 |
*** _amrith_ is now known as amrith | 18:31 | |
dimsum__ | zzzeek: pretty excited about oslo.context eh? :) | 18:33 |
zzzeek | yup | 18:33 |
harlowja | lol | 18:33 |
dimsum__ | dhellmann saw it coming :) i was going to shove it into utils or something | 18:33 |
harlowja | CALM DOWN zzzeek !!! | 18:33 |
harlowja | lol | 18:33 |
beekneemech | Olso - solving problems before you knew you had them. :-D | 18:34 |
dimsum__ | beekneemech: hear hear! | 18:35 |
harlowja | dimsum__ dhellmann beekneemech what do u think about having https://review.openstack.org/#/c/149452/ in oslo.utils; and applying it where useful? | 18:35 |
harlowja | basically emitting a warning when eventlet is partially patched (or missing patches for certain modules) which would likely cause issues later on for libraries that aren't meant to work in partially patched mode (say patching only os and not threading...) | 18:36 |
beekneemech | harlowja: I could see that being useful for concurrency too. | 18:37 |
harlowja | ya, there to | 18:37 |
beekneemech | Although we'd have to figure out which combination of modules needs to be patched. | 18:37 |
harlowja | ya, pretty sure its mostly [os, thread, time] for everyone, ha | 18:37 |
beekneemech | But yeah, off hand utils seems like a reasonable place for it. | 18:37 |
harlowja | k | 18:38 |
harlowja | let me just move it there ahead of time | 18:38 |
dimsum__ | harlowja: nova has had variations of it before, but yes, +1 to add somewhere and it looks like it won't drag in eventlet in requirements either, so +1 | 18:38 |
harlowja | cools | 18:38 |
harlowja | will move that over in a few | 18:39 |
*** achanda has joined #openstack-oslo | 18:40 | |
*** achanda has quit IRC | 18:41 | |
*** viktors|afk has quit IRC | 18:43 | |
*** ozamiatin has quit IRC | 18:43 | |
*** andreykurilin has quit IRC | 18:43 | |
*** david-lyle has quit IRC | 18:46 | |
*** achanda has joined #openstack-oslo | 18:46 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo-incubator: Updated from global requirements https://review.openstack.org/149715 | 18:49 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.vmware: Updated from global requirements https://review.openstack.org/149480 | 18:49 |
*** liusheng has quit IRC | 18:55 | |
*** vigneshvar has joined #openstack-oslo | 18:55 | |
*** liusheng has joined #openstack-oslo | 18:55 | |
*** ihrachyshka has quit IRC | 19:03 | |
*** alexpilotti has quit IRC | 19:12 | |
openstackgerrit | Michael Bayer proposed openstack/oslo.db: Implement new oslo.db.sqlalchemy.enginefacade module https://review.openstack.org/138215 | 19:16 |
*** ozamiatin has joined #openstack-oslo | 19:19 | |
*** viktors has joined #openstack-oslo | 19:30 | |
*** andreykurilin has joined #openstack-oslo | 19:32 | |
openstackgerrit | Michael Bayer proposed openstack/oslo.db: Implement new oslo.db.sqlalchemy.enginefacade module https://review.openstack.org/138215 | 19:33 |
openstackgerrit | Joshua Harlow proposed openstack/oslo.utils: Add a eventlet utils helper module https://review.openstack.org/149730 | 19:33 |
harlowja | dimsum__ ^ | 19:33 |
harlowja | beekneemech ^ | 19:33 |
beekneemech | harlowja: Nice, thanks. Will take a look. | 19:33 |
harlowja | np | 19:34 |
*** booly-yam-9623_ has quit IRC | 19:36 | |
*** lifeless has quit IRC | 19:37 | |
openstackgerrit | Joshua Harlow proposed openstack/oslo.utils: Add a eventlet utils helper module https://review.openstack.org/149730 | 19:37 |
*** lifeless has joined #openstack-oslo | 19:37 | |
*** sabari is now known as zz_sabari | 19:50 | |
*** salv-orlando has quit IRC | 20:04 | |
*** salv-orlando has joined #openstack-oslo | 20:04 | |
*** yamahata has joined #openstack-oslo | 20:07 | |
*** salv-orlando has quit IRC | 20:09 | |
*** liusheng has quit IRC | 20:24 | |
*** liusheng has joined #openstack-oslo | 20:25 | |
*** salv-orlando has joined #openstack-oslo | 20:29 | |
openstackgerrit | Merged openstack/taskflow: add clarification re parallel engine https://review.openstack.org/143231 | 20:44 |
*** achanda has quit IRC | 20:47 | |
openstackgerrit | Merged openstack/taskflow: Switch to using 'oslo_serialization' vs 'oslo.serialization' https://review.openstack.org/146298 | 20:49 |
*** achanda has joined #openstack-oslo | 20:58 | |
openstackgerrit | Merged openstack/oslo.middleware: Update Oslo imports to remove namespace package https://review.openstack.org/149099 | 21:07 |
openstackgerrit | Merged openstack/oslo.middleware: Move i18n module to a private name https://review.openstack.org/149103 | 21:07 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Rework the sqlalchemy backend https://review.openstack.org/126110 | 21:09 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Use the new table length constants https://review.openstack.org/126166 | 21:09 |
*** vigneshvar has quit IRC | 21:24 | |
*** stevemar has joined #openstack-oslo | 21:35 | |
*** liusheng has quit IRC | 21:47 | |
*** liusheng has joined #openstack-oslo | 21:49 | |
*** noelbk has joined #openstack-oslo | 21:51 | |
*** trown is now known as trown|outttypeww | 21:53 | |
*** ajo has quit IRC | 21:56 | |
*** andreykurilin_ has joined #openstack-oslo | 21:57 | |
*** liusheng has quit IRC | 22:08 | |
*** liusheng has joined #openstack-oslo | 22:09 | |
*** isq has quit IRC | 22:16 | |
*** isq has joined #openstack-oslo | 22:16 | |
*** ajo has joined #openstack-oslo | 22:19 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow just specifying 'workers' for WBE entrypoint https://review.openstack.org/149770 | 22:22 |
openstackgerrit | Eric Brown proposed openstack/oslo.vmware: Correct the doc usage example https://review.openstack.org/149775 | 22:35 |
openstackgerrit | Merged openstack/taskflow: Show the failure discarded (and the future intention) https://review.openstack.org/149425 | 22:35 |
*** salv-orlando has quit IRC | 22:38 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow just specifying 'workers' for WBE entrypoint https://review.openstack.org/149770 | 22:39 |
*** salv-orlando has joined #openstack-oslo | 22:46 | |
*** e0ne is now known as e0ne_ | 22:47 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Add comments to runner state machine reaction functions https://review.openstack.org/149780 | 22:48 |
openstackgerrit | Ryan Hsu proposed openstack/oslo.vmware: Fix missing project name in installation doc https://review.openstack.org/149781 | 22:53 |
*** salv-orlando has quit IRC | 22:59 | |
*** salv-orlando has joined #openstack-oslo | 22:59 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow just specifying 'workers' for WBE entrypoint https://review.openstack.org/149770 | 23:00 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Leave use-cases out of developer documentation https://review.openstack.org/149785 | 23:04 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Leave use-cases out of WBE developer documentation https://review.openstack.org/149785 | 23:04 |
openstackgerrit | Eric Brown proposed openstack/oslo.vmware: Correct the doc usage example https://review.openstack.org/149775 | 23:05 |
*** david-ly_ has joined #openstack-oslo | 23:07 | |
*** ajo has quit IRC | 23:09 | |
*** david-ly_ is now known as david-lyle | 23:11 | |
*** raildo has joined #openstack-oslo | 23:11 | |
*** liusheng has quit IRC | 23:22 | |
*** liusheng has joined #openstack-oslo | 23:23 | |
*** raildo has quit IRC | 23:27 | |
*** e0ne_ has quit IRC | 23:28 | |
*** dimsum__ has quit IRC | 23:34 | |
*** andreykurilin_ has quit IRC | 23:40 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 23:58 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Use monotonic time when/if available https://review.openstack.org/144212 | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!