| *** ozamiatin_ has quit IRC | 00:13 | |
| *** pratikmallya has joined #openstack-oslo | 00:18 | |
| openstackgerrit | Joshua Harlow proposed openstack/taskflow: A 'nth_task' and '{1..9}_task' decorators https://review.openstack.org/185116 | 00:26 |
|---|---|---|
| *** harlowja_ has joined #openstack-oslo | 00:27 | |
| openstackgerrit | Jamie Lennox proposed openstack/oslo.context: Provide a helper to load a context from environment https://review.openstack.org/229248 | 00:29 |
| *** harlowja has quit IRC | 00:30 | |
| * sputnik13 pokes dhellmann | 00:39 | |
| sputnik13 | dhellmann I heard from a certain coding demon that you might be able to +A https://review.openstack.org/#/c/261074/ | 00:40 |
| jamielennox | the debtcollector renames.renamed_kwarg doesn't actually rename the kwarg? | 00:55 |
| *** rockyg has quit IRC | 01:00 | |
| openstackgerrit | Joshua Harlow proposed openstack/taskflow: Use the retrying lib. to do basic sqlalchemy engine validation https://review.openstack.org/260743 | 01:01 |
| *** pratikmallya has quit IRC | 01:03 | |
| harlowja_ | jamielennox i sorta expected u the dev to rename it :-P | 01:04 |
| harlowja_ | because thats the name that will show up in docstrinngs and sphinx | 01:05 |
| jamielennox | harlowja_: i kind of expected http://paste.openstack.org/show/483094/ to work | 01:06 |
| jamielennox | specifically @renames.renamed_kwarg('tenant', 'project') so that if tenant was passed then it would be renamed to project | 01:06 |
| harlowja_ | could be a simple change to https://github.com/openstack/debtcollector/blob/master/debtcollector/renames.py#L25 to do that | 01:07 |
| harlowja_ | via a new kwarg | 01:07 |
| harlowja_ | then tweak https://github.com/openstack/debtcollector/blob/master/debtcollector/renames.py#L40 | 01:07 |
| harlowja_ | to do that rename/change | 01:07 |
| jamielennox | it would mean that (on the stupid case that python allows) if you were passing everything positionally it would still work | 01:07 |
| harlowja_ | ya, well that gets more complicated, that'd almost be a super-rename-argument function that can handle arguments or kwargs | 01:10 |
| harlowja_ | *positional arguments | 01:10 |
| harlowja_ | not impossible either, just would need to be created :-P | 01:11 |
| * harlowja_ mainly created debtcollector stuff as needed, lol | 01:11 | |
| harlowja_ | don't think i ever hit this case :-P | 01:11 |
| sputnik13 | lifeless any chance you can take a look at https://review.openstack.org/#/c/261074/ ? it's a requirement bump for taskflow | 01:14 |
| harlowja_ | whats taskflow | 01:14 |
| sputnik13 | this really confusing thing some coding demon guy from yahoo tries to get everyone to use | 01:15 |
| harlowja_ | sounds weird | 01:15 |
| sputnik13 | part of some world domination sub-plot or something or other | 01:15 |
| harlowja_ | lol | 01:15 |
| jamielennox | harlowja_: not that complicated in this case, but i'll whip something up and see if it works | 01:16 |
| harlowja_ | k | 01:16 |
| harlowja_ | jamielennox sounds good | 01:16 |
| harlowja_ | @renames.renamed_argument('project', 'tenant', position=3, replace=True) | 01:17 |
| harlowja_ | or something | 01:17 |
| harlowja_ | ^ not sexy or anything, but to bad | 01:17 |
| harlowja_ | lol | 01:17 |
| *** clayton has quit IRC | 01:17 | |
| *** EinstCrazy has joined #openstack-oslo | 01:17 | |
| jamielennox | harlowja_: i don't think you even need position | 01:18 |
| *** clayton has joined #openstack-oslo | 01:18 | |
| jamielennox | but replace is what i was thinking | 01:18 |
| harlowja_ | k | 01:18 |
| sputnik13 | lifeless thank you :) | 01:22 |
| openstackgerrit | Jamie Lennox proposed openstack/debtcollector: Allow replacing a keyword argument https://review.openstack.org/263984 | 01:24 |
| jamielennox | harlowja_: just that easy ^ | 01:26 |
| harlowja_ | jamielennox ya | 01:26 |
| harlowja_ | jamielennox although the shitty part is | 01:27 |
| harlowja_ | + def __init__(self, auth_token=None, user=None, project=None, domain=None, | 01:27 |
| harlowja_ | user_domain=None, project_domain=None, is_admin=False, | 01:27 |
| harlowja_ | read_only=False, show_deleted=False, request_id=None, | 01:27 |
| harlowja_ | resource_uuid=None, overwrite=True): | 01:27 |
| harlowja_ | u'll need to keep 'tenant' as a kwarg | 01:27 |
| lifeless | sputnik13: np | 01:27 |
| jamielennox | harlowja_: why? | 01:27 |
| harlowja_ | >>> def a(b=2, c=3): | 01:28 |
| harlowja_ | ... pass | 01:28 |
| harlowja_ | ... | 01:28 |
| harlowja_ | >>> | 01:28 |
| harlowja_ | >>> a(d=4) | 01:28 |
| harlowja_ | Traceback (most recent call last): | 01:28 |
| harlowja_ | File "<stdin>", line 1, in <module> | 01:28 |
| harlowja_ | TypeError: a() got an unexpected keyword argument 'd' | 01:28 |
| harlowja_ | pretty sure that will happen :-/ | 01:28 |
| harlowja_ | right? | 01:28 |
| lifeless | harlowja_: isn't the decorators job to move it across? | 01:28 |
| jamielennox | harlowja_: if replace: | 01:28 |
| jamielennox | kwargs.setdefault(new_name, kwargs.pop(old_name)) | 01:28 |
| * harlowja_ double checking here, want to make sure i'm not on crack | 01:28 | |
| jamielennox | so it will pop tenant from kwargs (if specified) and reinsert it as project | 01:29 |
| harlowja_ | right | 01:29 |
| * harlowja_ just double checking | 01:29 | |
| jamielennox | lifeless: this is what surprised me, i expected it to be moved | 01:30 |
| harlowja_ | jamielennox ya u are right, it works, nm | 01:30 |
| *** clayton has quit IRC | 01:30 | |
| harlowja_ | not debtsolver, debtcollector, lol | 01:30 |
| harlowja_ | :-P | 01:30 |
| jamielennox | debtcollectors generally do a good job of solving debt | 01:31 |
| harlowja_ | depends on how much debt u got lol | 01:32 |
| jamielennox | debtcollector.kneecap | 01:32 |
| *** sputnik13 has quit IRC | 01:32 | |
| harlowja_ | :) | 01:33 |
| openstackgerrit | Joshua Harlow proposed openstack/tooz: Track node information so that we can compare-and-delete and do better heartbeat https://review.openstack.org/263987 | 01:44 |
| *** jecarey has joined #openstack-oslo | 01:46 | |
| *** jecarey has quit IRC | 01:50 | |
| openstackgerrit | Joshua Harlow proposed openstack/tooz: Track node information so that we can compare-and-delete and do better heartbeat https://review.openstack.org/263987 | 01:50 |
| *** clayton has joined #openstack-oslo | 01:50 | |
| *** mtanino has quit IRC | 02:07 | |
| *** yamamoto has joined #openstack-oslo | 02:35 | |
| *** vilobhmm11 has quit IRC | 02:39 | |
| *** yamamoto has quit IRC | 02:48 | |
| *** yamamoto has joined #openstack-oslo | 02:54 | |
| *** yamamoto_ has joined #openstack-oslo | 02:57 | |
| *** yamamoto has quit IRC | 02:57 | |
| *** dims has quit IRC | 02:59 | |
| *** browne has quit IRC | 03:02 | |
| *** browne has joined #openstack-oslo | 03:02 | |
| *** yamamoto_ has quit IRC | 03:07 | |
| *** vilobhmm11 has joined #openstack-oslo | 03:08 | |
| *** vilobhmm11 has quit IRC | 03:28 | |
| *** zqfan has joined #openstack-oslo | 03:40 | |
| *** sputnik13 has joined #openstack-oslo | 03:50 | |
| *** links has joined #openstack-oslo | 03:51 | |
| *** yamahata has quit IRC | 03:52 | |
| *** yamamoto has joined #openstack-oslo | 03:57 | |
| *** sputnik13 has quit IRC | 03:59 | |
| openstackgerrit | Merged openstack/taskflow: Use alembic upgrade function/command directly https://review.openstack.org/191935 | 04:02 |
| *** yamamoto has quit IRC | 04:06 | |
| *** browne has quit IRC | 04:08 | |
| openstackgerrit | Jamie Lennox proposed openstack/oslo.context: Add properties for id attributes https://review.openstack.org/264021 | 04:28 |
| *** deray has joined #openstack-oslo | 04:33 | |
| *** deray is now known as deray-afk | 05:03 | |
| *** vilobhmm11 has joined #openstack-oslo | 05:13 | |
| *** deray-afk has quit IRC | 05:37 | |
| *** deray has joined #openstack-oslo | 05:45 | |
| *** jecarey has joined #openstack-oslo | 05:46 | |
| *** jecarey has quit IRC | 05:51 | |
| *** gcb has joined #openstack-oslo | 05:56 | |
| *** harlowja_at_home has joined #openstack-oslo | 06:16 | |
| *** vilobhmm111 has joined #openstack-oslo | 06:22 | |
| *** vilobhmm11 has quit IRC | 06:24 | |
| openstackgerrit | Joshua Harlow proposed openstack/taskflow: Use the retrying lib. to do basic sqlalchemy engine validation https://review.openstack.org/260743 | 06:34 |
| *** harlowja_at_home has quit IRC | 06:51 | |
| *** xianghui has quit IRC | 07:10 | |
| *** xianghui has joined #openstack-oslo | 07:16 | |
| *** e0ne has joined #openstack-oslo | 07:25 | |
| *** yamahata has joined #openstack-oslo | 08:00 | |
| *** zakora has joined #openstack-oslo | 08:10 | |
| *** vilobhmm11 has joined #openstack-oslo | 08:17 | |
| *** vilobhmm112 has joined #openstack-oslo | 08:19 | |
| *** vilobhmm111 has quit IRC | 08:19 | |
| *** vilobhmm11 has quit IRC | 08:21 | |
| *** EinstCra_ has joined #openstack-oslo | 08:32 | |
| *** shardy has joined #openstack-oslo | 08:32 | |
| *** EinstCrazy has quit IRC | 08:35 | |
| openstackgerrit | Reedip proposed openstack/pycadf: remove suport for py33 https://review.openstack.org/264081 | 08:55 |
| *** ihrachys has joined #openstack-oslo | 08:55 | |
| openstackgerrit | Jacky_lei_zhang proposed openstack/oslo.service: Fix some inconsistency in docstrings https://review.openstack.org/264082 | 09:12 |
| *** yassine has joined #openstack-oslo | 09:19 | |
| *** mhickey has joined #openstack-oslo | 09:19 | |
| *** ozamiatin_ has joined #openstack-oslo | 09:28 | |
| *** vilobhmm112 has quit IRC | 09:40 | |
| *** EinstCra_ has quit IRC | 09:40 | |
| *** EinstCrazy has joined #openstack-oslo | 09:42 | |
| *** jecarey has joined #openstack-oslo | 09:47 | |
| *** jecarey has quit IRC | 09:52 | |
| *** haypo has joined #openstack-oslo | 09:56 | |
| *** EinstCrazy has quit IRC | 10:04 | |
| *** ndipanov has joined #openstack-oslo | 10:05 | |
| *** ndipanov has quit IRC | 10:12 | |
| *** cdent has joined #openstack-oslo | 10:28 | |
| *** ndipanov has joined #openstack-oslo | 10:34 | |
| *** dims has joined #openstack-oslo | 10:47 | |
| *** gcb has quit IRC | 10:52 | |
| *** gcb has joined #openstack-oslo | 10:54 | |
| *** yassine has quit IRC | 10:55 | |
| *** mhickey has quit IRC | 10:56 | |
| openstackgerrit | javeme proposed openstack/oslo.messaging: rabbit: fix unit conversion error of expiration https://review.openstack.org/263712 | 10:57 |
| *** gcb has quit IRC | 11:01 | |
| *** lucas-dinner is now known as lucasagomes | 11:06 | |
| *** deray has quit IRC | 11:14 | |
| *** gcb has joined #openstack-oslo | 11:21 | |
| *** mriedem has joined #openstack-oslo | 11:28 | |
| *** cdent has quit IRC | 11:28 | |
| *** mhickey has joined #openstack-oslo | 11:46 | |
| dims | dukhlov : ozamiatin : i think a project-config change broke oslo.messaging + ceilometer - trying to fix that in https://review.openstack.org/#/c/264144/ | 11:57 |
| ozamiatin_ | dims: I had it accidentally passed here https://review.openstack.org/#/c/262205/ was it broken again? | 11:58 |
| *** yassine has joined #openstack-oslo | 11:59 | |
| *** sreshetnyak has quit IRC | 11:59 | |
| dims | ozamiatin_ : ah weird! | 11:59 |
| dims | looks like jd__ has a revert for that project-config change | 11:59 |
| dims | thanks jd__ | 11:59 |
| jd__ | pretty awesome how we masterize this pile of… jobs. | 12:08 |
| *** cdent has joined #openstack-oslo | 12:09 | |
| openstackgerrit | Jacky_lei_zhang proposed openstack/oslo.service: Fix some inconsistency in docstrings https://review.openstack.org/264082 | 12:11 |
| *** pkholkin has quit IRC | 12:15 | |
| *** obondarev_ has quit IRC | 12:17 | |
| *** gordc has joined #openstack-oslo | 12:26 | |
| *** jaypipes has joined #openstack-oslo | 12:42 | |
| *** pradk has quit IRC | 12:45 | |
| *** EinstCrazy has joined #openstack-oslo | 12:53 | |
| *** zz_dimtruck is now known as dimtruck | 13:06 | |
| openstackgerrit | Merged openstack/oslo.config: Numerous corrections to the docstrings https://review.openstack.org/263934 | 13:07 |
| *** EinstCrazy has quit IRC | 13:09 | |
| *** kgiusti has joined #openstack-oslo | 13:10 | |
| *** EinstCrazy has joined #openstack-oslo | 13:11 | |
| *** EinstCrazy has quit IRC | 13:12 | |
| openstackgerrit | Merged openstack/tooz: tests: do not hardcode /tmp https://review.openstack.org/263683 | 13:22 |
| openstackgerrit | Merged openstack/oslo.utils: Add a mechanism to mask passwords in dictionaries https://review.openstack.org/257561 | 13:27 |
| *** dimtruck is now known as zz_dimtruck | 13:31 | |
| *** links has quit IRC | 13:32 | |
| *** edmondsw has joined #openstack-oslo | 13:34 | |
| *** amrith is now known as _amrith_ | 13:38 | |
| openstackgerrit | Ricardo Kirkner proposed openstack/stevedore: remove unnecessary dependency on argparse https://review.openstack.org/264191 | 14:02 |
| *** rlrossit has joined #openstack-oslo | 14:03 | |
| *** pkholkin has joined #openstack-oslo | 14:07 | |
| *** sreshetnyak has joined #openstack-oslo | 14:10 | |
| *** zz_dimtruck is now known as dimtruck | 14:15 | |
| *** links has joined #openstack-oslo | 14:22 | |
| *** links has quit IRC | 14:28 | |
| *** cdent has quit IRC | 14:29 | |
| *** dimtruck is now known as zz_dimtruck | 14:29 | |
| *** lucasagomes is now known as lucas-hungry | 14:30 | |
| *** deray has joined #openstack-oslo | 14:31 | |
| *** ozamiatin_ has quit IRC | 14:33 | |
| *** gordc has quit IRC | 14:37 | |
| *** _amrith_ is now known as amrith | 14:39 | |
| flaper87 | dims: around ? | 14:42 |
| *** pradk has joined #openstack-oslo | 14:42 | |
| flaper87 | nvm, going to post to the m-l | 14:43 |
| *** jecarey has joined #openstack-oslo | 14:44 | |
| dims | flaper87 : pong. ok | 14:46 |
| openstackgerrit | Merged openstack/oslo.service: Refactoring of tests/eventlet_service.py https://review.openstack.org/260384 | 14:49 |
| dims | rpodolyaka : will you be taking the actions to propose oslo.db and oslo.service changes for things popping up from zzzeek's email thread? please let me know :) | 14:51 |
| openstackgerrit | Merged openstack/oslo.messaging: [zmq] Switch notifications to PUB/SUB pattern https://review.openstack.org/262205 | 14:51 |
| openstackgerrit | Merged openstack/oslo.log: Pass environment variables of proxy to tox https://review.openstack.org/257118 | 14:53 |
| openstackgerrit | Merged openstack/oslo.policy: Add string format rendering to RoleCheck.__call__() https://review.openstack.org/258808 | 14:55 |
| *** gordc has joined #openstack-oslo | 14:55 | |
| openstackgerrit | Merged openstack/oslo.privsep: Replace deprecated LOG.warn with LOG.warning https://review.openstack.org/263605 | 14:56 |
| *** sigmavirus24_awa is now known as sigmavirus24 | 14:59 | |
| openstackgerrit | Jacky_lei_zhang proposed openstack/oslo.service: Fix some inconsistency in docstrings https://review.openstack.org/264082 | 15:01 |
| *** ozamiatin_ has joined #openstack-oslo | 15:02 | |
| *** cdent has joined #openstack-oslo | 15:07 | |
| openstackgerrit | Merged openstack/debtcollector: Allow replacing a keyword argument https://review.openstack.org/263984 | 15:08 |
| *** regXboi has joined #openstack-oslo | 15:09 | |
| *** zz_dimtruck is now known as dimtruck | 15:10 | |
| *** yamahata has quit IRC | 15:26 | |
| *** mtanino has joined #openstack-oslo | 15:26 | |
| *** yamahata has joined #openstack-oslo | 15:26 | |
| openstackgerrit | Julien Danjou proposed openstack/tooz: Fix etcd env setup https://review.openstack.org/264226 | 15:31 |
| openstackgerrit | Merged openstack/oslo.messaging: Optimize simulator.py for better throughput https://review.openstack.org/261100 | 15:32 |
| *** lucas-hungry is now known as lucasagomes | 15:33 | |
| *** devananda has quit IRC | 15:48 | |
| *** devananda has joined #openstack-oslo | 16:01 | |
| lucasagomes | if you have a time, mind taking a look at https://review.openstack.org/#/c/263811/ ? It's a tiny patch and I'd appreciate some feedback on the approach taken | 16:02 |
| lucasagomes | thanks | 16:02 |
| openstackgerrit | Dmitry Tantsur proposed openstack/futurist: PeriodicWorker.create to accept arguments for periodic tasks https://review.openstack.org/264247 | 16:08 |
| *** salv-orlando has joined #openstack-oslo | 16:12 | |
| openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack/oslo.utils: Use assertTrue/False instead of assertEqual(T/F) https://review.openstack.org/264249 | 16:14 |
| openstackgerrit | Dmitry Tantsur proposed openstack/futurist: Add periodics.is_periodic to check if object is a periodic task https://review.openstack.org/264250 | 16:16 |
| openstackgerrit | Merged openstack/pycadf: Put py34 first in the env order of tox https://review.openstack.org/260516 | 16:40 |
| openstackgerrit | Merged openstack/pycadf: remove suport for py33 https://review.openstack.org/264081 | 16:40 |
| *** zakora has quit IRC | 16:48 | |
| *** salv-orlando has quit IRC | 16:57 | |
| *** salv-orlando has joined #openstack-oslo | 16:58 | |
| *** yassine has quit IRC | 17:06 | |
| *** salv-orlando has quit IRC | 17:19 | |
| *** salv-orlando has joined #openstack-oslo | 17:20 | |
| *** jecarey has quit IRC | 17:22 | |
| lxsli | Can anyone help define which parts of oslo.config must be considered API? Usually I'd go with - anything not in a private module (_boo.py), also not in a private class (_Namespace), also not private methods. Everything else is. Does that sound accurate? | 17:23 |
| lxsli | Specifically, ConfigParser and MultiConfigParser are both public classes in a public module but I don't think they should be | 17:24 |
| lxsli | If they are API, changing anything about them will be real hard - possibly why no one has yet | 17:24 |
| *** e0ne has quit IRC | 17:32 | |
| *** jecarey has joined #openstack-oslo | 17:32 | |
| *** yamahata has quit IRC | 17:42 | |
| *** jecarey has quit IRC | 17:45 | |
| *** deray has quit IRC | 17:59 | |
| mhickey | dims: Hey. Do you have some bandwidth for a quick question? | 18:00 |
| ihrachys | jd__: hey! | 18:01 |
| jd__ | hi ihrachys | 18:01 |
| ihrachys | jd__: I was looking at adopting oslotest in neutron, and I found some issue that I cannot explain myself. | 18:01 |
| ihrachys | jd__: for py34, tests fail because I removed mock.patch.stopall cleanup from neutron base test class, assuming that oslotest one will handle it for me. | 18:02 |
| ihrachys | jd__: but it seems that stopall() is called once per test case class, not per test case | 18:02 |
| ihrachys | is it designed that way, and if yes, why? | 18:02 |
| ihrachys | the code in question is https://github.com/openstack/oslotest/blob/master/oslotest/base.py#L89 | 18:03 |
| jd__ | ihrachys: this is weird indeed, I imagine that would be in setUp | 18:04 |
| ihrachys | I debug it in context of https://review.openstack.org/#/c/264158/ neutron patch | 18:05 |
| jd__ | this has been changed by https://review.openstack.org/#/c/119201/ by dhellmann | 18:05 |
| *** yamahata has joined #openstack-oslo | 18:05 | |
| jd__ | if the cleanup functions are reset on each test case run, that might fail | 18:06 |
| jd__ | that's all I can say :) | 18:06 |
| ihrachys | not that it works for me the other way around | 18:06 |
| mhickey | Hey. Anyone know how to enable stdout when doing o.vo testing? | 18:06 |
| jd__ | ihrachys: that'd be more weird though | 18:07 |
| jd__ | ihrachys: though best thing would be to just use mock.patch fixture or as decorator and not needing that O:-) | 18:07 |
| ihrachys | jd__: ok, I will continue digging tomorrow. thought maybe I assume wrong behaviour. | 18:07 |
| *** salv-orlando has quit IRC | 18:08 | |
| *** salv-orlando has joined #openstack-oslo | 18:09 | |
| *** ihrachys has quit IRC | 18:10 | |
| *** jecarey has joined #openstack-oslo | 18:16 | |
| *** jecarey has quit IRC | 18:16 | |
| *** jecarey has joined #openstack-oslo | 18:16 | |
| *** mhickey has quit IRC | 18:16 | |
| *** sputnik13 has joined #openstack-oslo | 18:25 | |
| *** pratikmallya has joined #openstack-oslo | 18:27 | |
| *** jecarey has quit IRC | 18:42 | |
| *** jecarey has joined #openstack-oslo | 18:42 | |
| *** ozamiatin_ has quit IRC | 18:43 | |
| *** e0ne has joined #openstack-oslo | 18:44 | |
| *** vilobhmm11 has joined #openstack-oslo | 18:44 | |
| openstackgerrit | Graham Hayes proposed openstack/debtcollector: Add updated_kwarg_default_value decorator https://review.openstack.org/255941 | 18:46 |
| *** jecarey has quit IRC | 18:47 | |
| *** alejandrito has joined #openstack-oslo | 18:56 | |
| *** browne has joined #openstack-oslo | 18:57 | |
| *** rlrossit has quit IRC | 19:01 | |
| *** rlrossit has joined #openstack-oslo | 19:08 | |
| *** edmondsw has quit IRC | 19:14 | |
| *** edmondsw has joined #openstack-oslo | 19:17 | |
| *** harlowja_ has quit IRC | 19:18 | |
| *** harlowja has joined #openstack-oslo | 19:19 | |
| openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow for alterations in decider 'area of influence' https://review.openstack.org/246051 | 19:20 |
| openstackgerrit | Joshua Harlow proposed openstack/taskflow: Fix wrong usage of iter_utils.unique_seen https://review.openstack.org/256586 | 19:24 |
| openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow for alterations in decider 'area of influence' https://review.openstack.org/246051 | 19:24 |
| openstackgerrit | Joshua Harlow proposed openstack/tooz: Adjust some of the zookeeper exception message https://review.openstack.org/263407 | 19:28 |
| openstackgerrit | Merged openstack/taskflow: Trap and expose exception any 'args' https://review.openstack.org/237279 | 19:31 |
| dhellmann | jd__ , ihrachys: it might be better to move that addCleanup() call from __init__ to the beginning of setUp(). | 19:32 |
| openstackgerrit | Graham Hayes proposed openstack/debtcollector: Add updated_kwarg_default_value decorator https://review.openstack.org/255941 | 19:40 |
| *** e0ne has quit IRC | 19:47 | |
| *** jecarey has joined #openstack-oslo | 19:58 | |
| *** amrith is now known as _amrith_ | 20:02 | |
| *** lucasagomes is now known as lucas-dinner | 20:03 | |
| *** ndipanov has quit IRC | 20:09 | |
| openstackgerrit | Joshua Harlow proposed openstack/tooz: Track lock node information on acquire https://review.openstack.org/263987 | 20:10 |
| *** e0ne has joined #openstack-oslo | 20:28 | |
| *** e0ne has quit IRC | 20:29 | |
| *** e0ne has joined #openstack-oslo | 20:30 | |
| *** e0ne has quit IRC | 20:33 | |
| *** mhickey has joined #openstack-oslo | 20:38 | |
| mhickey | dims: Hey! | 20:40 |
| openstackgerrit | Joshua Harlow proposed openstack/oslo-specs: Add failure remoting best-of-breed spec https://review.openstack.org/229194 | 20:40 |
| harlowja | damn, just found that nova has its own copy of the hacky oslo.messaging failure/exceptoion remoting thing | 20:40 |
| *** mixos has joined #openstack-oslo | 20:49 | |
| *** zqfan has quit IRC | 20:51 | |
| *** _amrith_ is now known as amrith | 21:01 | |
| *** cdent has quit IRC | 21:08 | |
| *** kragniz is now known as {^-^} | 21:17 | |
| *** {^-^} is now known as Guest46353 | 21:18 | |
| *** Guest46353 is now known as kragniz | 21:18 | |
| openstackgerrit | Jamie Lennox proposed openstack/oslo.context: Add properties for id attributes https://review.openstack.org/264021 | 21:20 |
| *** alejandrito has quit IRC | 21:20 | |
| *** vipul has quit IRC | 21:21 | |
| *** SlickNik has quit IRC | 21:21 | |
| *** SlickN1k is now known as SlickNik | 21:21 | |
| *** ozamiatin has quit IRC | 21:28 | |
| *** kgiusti has left #openstack-oslo | 21:45 | |
| dims | mhickey : ping (on a call) | 21:51 |
| mhickey | dims: not a bother; ok for the moment. happy new year btw. | 21:52 |
| *** ozamiatin has joined #openstack-oslo | 21:54 | |
| *** DuncanT has quit IRC | 22:04 | |
| *** dimtruck has quit IRC | 22:04 | |
| *** dougwig has quit IRC | 22:05 | |
| *** haypo has quit IRC | 22:05 | |
| *** haypo has joined #openstack-oslo | 22:05 | |
| *** haypo has joined #openstack-oslo | 22:05 | |
| *** ozamiatin has quit IRC | 22:08 | |
| *** salv-orl_ has joined #openstack-oslo | 22:09 | |
| *** mhickey has quit IRC | 22:10 | |
| *** dimtruck has joined #openstack-oslo | 22:11 | |
| *** salv-orlando has quit IRC | 22:12 | |
| *** dougwig has joined #openstack-oslo | 22:17 | |
| *** DuncanT has joined #openstack-oslo | 22:17 | |
| *** dims has quit IRC | 22:22 | |
| *** ozamiatin has joined #openstack-oslo | 22:26 | |
| *** shardy has quit IRC | 22:26 | |
| *** pratikmallya has quit IRC | 22:30 | |
| *** ozamiatin has quit IRC | 22:40 | |
| *** mriedem has quit IRC | 22:46 | |
| *** dims has joined #openstack-oslo | 22:53 | |
| *** pratikmallya has joined #openstack-oslo | 22:54 | |
| *** rlrossit has quit IRC | 22:56 | |
| *** pratikmallya has quit IRC | 22:59 | |
| openstackgerrit | Joshua Harlow proposed openstack/tooz: Track lock node information on acquire https://review.openstack.org/263987 | 22:59 |
| openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow for alterations in decider 'area of influence' https://review.openstack.org/246051 | 23:03 |
| *** dims has quit IRC | 23:04 | |
| *** regXboi has quit IRC | 23:08 | |
| openstackgerrit | Joshua Harlow proposed openstack/tooz: Use utils.convert_blocking to convert blocking argument https://review.openstack.org/264400 | 23:10 |
| openstackgerrit | Joshua Harlow proposed openstack/tooz: Use utils.convert_blocking to convert blocking argument https://review.openstack.org/264400 | 23:10 |
| openstackgerrit | OpenStack Proposal Bot proposed openstack/oslotest: Updated from global requirements https://review.openstack.org/264401 | 23:10 |
| *** dimtruck is now known as zz_dimtruck | 23:11 | |
| *** mixos has quit IRC | 23:12 | |
| *** pradk has quit IRC | 23:18 | |
| *** pratikmallya has joined #openstack-oslo | 23:22 | |
| *** sigmavirus24 is now known as sigmavirus24_awa | 23:25 | |
| openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.db: Updated from global requirements https://review.openstack.org/264449 | 23:26 |
| *** dims_ has joined #openstack-oslo | 23:29 | |
| openstackgerrit | OpenStack Proposal Bot proposed openstack/taskflow: Updated from global requirements https://review.openstack.org/264473 | 23:29 |
| *** dims_ has quit IRC | 23:34 | |
| *** dims_ has joined #openstack-oslo | 23:36 | |
| *** pballand has joined #openstack-oslo | 23:38 | |
| *** mriedem has joined #openstack-oslo | 23:44 | |
| *** gordc has quit IRC | 23:52 | |
| *** pballand has quit IRC | 23:55 | |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!