*** pradk has quit IRC | 00:06 | |
zzzeek | kevinbenton: there's a function we made in oslo.db which tries to generalize compare-and-swap. The ORMs use of version_id is pretty specific | 00:40 |
---|---|---|
*** stewie925 has quit IRC | 00:45 | |
*** zz_dimtruck is now known as dimtruck | 00:51 | |
bknudson | harlowja: are you familiar at all with wrapt? It's driving me nuts. | 00:54 |
harlowja | bknudson a little familar, not super | 00:54 |
harlowja | medium familari | 00:54 |
bknudson | https://review.openstack.org/#/c/305489/3/debtcollector/moves.py | 00:54 |
patchbot | bknudson: patch 305489 - debtcollector - Fix renamed_kwarg to preserve argspec | 00:54 |
bknudson | seems like you can't do what you want to do... capture the original f | 00:55 |
bknudson | none of the wrapt examples show using the original f -- e.g., http://www.pydanny.com/python-decorator-cheatsheet.html | 00:56 |
harlowja | isn't the 'wrapped' param the original? | 00:56 |
bknudson | harlowja: yes, but you only have access to that when the wrapper is called | 00:57 |
*** _amrith_ is now known as amrith | 00:57 | |
bknudson | not when it's being created | 00:57 |
*** kzaitsev_mb has quit IRC | 00:58 | |
harlowja | right, i think its hidden away inside the wrapt lib | 00:58 |
bknudson | so it's going to be less efficient since it's going to do work every time the fn is called rather than up-front. | 00:59 |
bknudson | I was looking at the FunctionAdapter maybe that would be usable. | 01:00 |
harlowja | right | 01:00 |
* harlowja just noticed that decorator() takes an adapter | 01:00 | |
harlowja | so now u are more advanced wrapt user than me :-P | 01:00 |
bknudson | FunctionWrapper | 01:00 |
harlowja | https://github.com/GrahamDumpleton/wrapt/blob/develop/src/wrapt/decorators.py#L174 | 01:00 |
harlowja | ya | 01:00 |
bknudson | thing is decorator() is not a small wrapper to call FunctionWrapper :( | 01:01 |
harlowja | ya, its not, lol | 01:01 |
harlowja | for last resort, i've sometimes made a issue on graham dumpleton wrapt github | 01:02 |
harlowja | and asked a question there | 01:02 |
harlowja | he seems pretty responsive :) | 01:02 |
bknudson | the problem I'm trying to fix is that when @debtcollector.removed_kwarg or whatever is used the argspec is wiped out. So the keystoneclient docs are now useless. | 01:03 |
harlowja | right | 01:03 |
bknudson | good idea. I'll put together an example and see if I get a response. | 01:03 |
harlowja | https://github.com/GrahamDumpleton/wrapt/issues/44 was one i asked before | 01:03 |
harlowja | bknudson is just the docstring getting wiped? | 01:04 |
bknudson | the docstring is fine. it's the argspec. | 01:04 |
harlowja | afaik sphinx has a long-outstanding issues with not showing args and stuff of decorators | 01:04 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack-dev/pbr: File is wrongly marked as executable https://review.openstack.org/306202 | 01:05 |
bknudson | I tried it with my change in https://review.openstack.org/#/c/305489/ and it works. | 01:05 |
patchbot | bknudson: patch 305489 - debtcollector - Fix renamed_kwarg to preserve argspec | 01:05 |
bknudson | I get the args. | 01:05 |
harlowja | k | 01:05 |
bknudson | I'm just not happy with my change since it seems like a step backwards. | 01:07 |
harlowja | ya, agreed, maybe someway to do this in wrapt that we aren't aware of | 01:07 |
harlowja | http://stackoverflow.com/questions/14383797/getting-sphinx-to-recognise-correct-signature is simialr and such that i've seen before | 01:09 |
*** yamahata has quit IRC | 01:11 | |
*** amotoki_ has quit IRC | 01:16 | |
*** sputnik13_ has quit IRC | 01:20 | |
*** EinstCrazy has joined #openstack-oslo | 01:21 | |
bknudson | it's a weird design. I posted the question we'll see what happens. | 01:21 |
harlowja | kk | 01:21 |
harlowja | cool | 01:21 |
harlowja | https://github.com/GrahamDumpleton/wrapt/issues/66 thx | 01:22 |
harlowja | i'll check that/subscribe | 01:22 |
bknudson | https://review.openstack.org/#/c/305489/3/debtcollector/moves.py is where it's kind of concerning | 01:23 |
patchbot | bknudson: patch 305489 - debtcollector - Fix renamed_kwarg to preserve argspec | 01:23 |
harlowja | ya, its a bunch of recalculation | 01:23 |
bknudson | it's got some work to do every time that would be faster. | 01:23 |
harlowja | ya | 01:24 |
bknudson | he's all over this question | 01:24 |
harlowja | holy crap | 01:24 |
harlowja | that took like 1 minute | 01:24 |
harlowja | lol | 01:24 |
harlowja | and he even included code in that 1 minute | 01:25 |
harlowja | crazy | 01:25 |
harlowja | ha | 01:25 |
bknudson | I'll try it out. | 01:25 |
*** EinstCra_ has joined #openstack-oslo | 01:31 | |
bknudson | it worked. | 01:33 |
*** EinstCrazy has quit IRC | 01:35 | |
harlowja | sweet | 01:36 |
harlowja | ya, that guy is pretty nice | 01:36 |
harlowja | de-facto-decorator-expert-guy | 01:36 |
*** mtanino has quit IRC | 01:36 | |
openstackgerrit | Brant Knudson proposed openstack/debtcollector: Fix renamed_kwarg to preserve argspec https://review.openstack.org/305489 | 01:38 |
openstackgerrit | Brant Knudson proposed openstack/debtcollector: Fix renamed_kwarg to preserve argspec https://review.openstack.org/305489 | 01:40 |
bknudson | it's so obvious -- https://review.openstack.org/#/c/305489/5/debtcollector/updating.py | 01:41 |
patchbot | bknudson: patch 305489 - debtcollector - Fix renamed_kwarg to preserve argspec | 01:41 |
harlowja | lol, nice | 01:41 |
bknudson | I would have never figured that out. | 01:41 |
harlowja | :) | 01:42 |
openstackgerrit | Brant Knudson proposed openstack/debtcollector: Fix renamed_kwarg to preserve argspec https://review.openstack.org/305489 | 01:50 |
harlowja | alright, bbl | 01:52 |
*** mriedem has quit IRC | 02:01 | |
*** EinstCra_ has quit IRC | 02:19 | |
*** EinstCrazy has joined #openstack-oslo | 02:20 | |
*** vilobhmm111 has joined #openstack-oslo | 02:24 | |
*** amotoki has joined #openstack-oslo | 02:25 | |
*** vilobhmm11 has quit IRC | 02:25 | |
*** dimtruck is now known as zz_dimtruck | 02:36 | |
openstackgerrit | Li Yingjun proposed openstack/pycadf: Add missing os-volumes_boot to nova_api_audit_map.conf https://review.openstack.org/306221 | 02:41 |
*** yamamoto_ has joined #openstack-oslo | 02:43 | |
*** e0ne has joined #openstack-oslo | 02:51 | |
*** vilobhmm111 has quit IRC | 02:52 | |
*** amotoki has quit IRC | 02:55 | |
*** e0ne has quit IRC | 02:56 | |
*** amotoki has joined #openstack-oslo | 02:59 | |
*** e0ne has joined #openstack-oslo | 03:00 | |
*** e0ne has quit IRC | 03:08 | |
*** jecarey has joined #openstack-oslo | 03:08 | |
*** e0ne has joined #openstack-oslo | 03:11 | |
*** jecarey has quit IRC | 03:13 | |
*** e0ne has quit IRC | 03:13 | |
*** salv-orlando has joined #openstack-oslo | 03:16 | |
*** salv-orlando has quit IRC | 03:17 | |
*** e0ne has joined #openstack-oslo | 03:17 | |
*** salv-orlando has joined #openstack-oslo | 03:17 | |
*** harlowja_at_home has joined #openstack-oslo | 03:18 | |
*** salv-orl_ has quit IRC | 03:20 | |
*** salv-orlando has quit IRC | 03:22 | |
*** pleia2_ has joined #openstack-oslo | 03:27 | |
*** harlowja_at_home has quit IRC | 03:30 | |
*** browne has quit IRC | 03:32 | |
*** dhellmann has quit IRC | 03:32 | |
*** pleia2 has quit IRC | 03:32 | |
*** yportnova has quit IRC | 03:32 | |
*** yportnova has joined #openstack-oslo | 03:38 | |
*** browne has joined #openstack-oslo | 03:39 | |
*** lpetrut has joined #openstack-oslo | 03:39 | |
*** yamamoto_ has quit IRC | 03:44 | |
*** pleia2_ is now known as pleia2 | 03:46 | |
*** gonzalo2kx has joined #openstack-oslo | 03:48 | |
*** amrith is now known as _amrith_ | 03:57 | |
*** e0ne has quit IRC | 04:00 | |
*** gonzalo2kx has quit IRC | 04:00 | |
*** yamamoto_ has joined #openstack-oslo | 04:02 | |
*** e0ne has joined #openstack-oslo | 04:04 | |
*** dhellmann has joined #openstack-oslo | 04:05 | |
openstackgerrit | Merged openstack/oslo.utils: Provide single step check if eventlet is monkey_patched https://review.openstack.org/304053 | 04:07 |
*** lpetrut has quit IRC | 04:07 | |
*** yamamoto_ has quit IRC | 04:09 | |
*** salv-orlando has joined #openstack-oslo | 04:18 | |
*** e0ne has quit IRC | 04:22 | |
*** e0ne has joined #openstack-oslo | 04:26 | |
*** e0ne has quit IRC | 04:30 | |
*** salv-orlando has quit IRC | 04:30 | |
*** salv-orlando has joined #openstack-oslo | 04:45 | |
*** salv-orlando has quit IRC | 04:48 | |
*** yamahata has joined #openstack-oslo | 04:48 | |
*** harlowja_at_home has joined #openstack-oslo | 04:50 | |
*** harlowja_at_home has quit IRC | 05:00 | |
*** gonzalo2kx has joined #openstack-oslo | 05:03 | |
*** rcernin has joined #openstack-oslo | 05:10 | |
*** vilobhmm11 has joined #openstack-oslo | 05:24 | |
*** jdandrea_ has joined #openstack-oslo | 05:25 | |
*** browne1 has joined #openstack-oslo | 05:25 | |
*** amotoki_ has joined #openstack-oslo | 05:26 | |
*** mkoderer__ has quit IRC | 05:26 | |
*** amotoki has quit IRC | 05:27 | |
*** browne has quit IRC | 05:28 | |
*** jlvillal has quit IRC | 05:28 | |
*** dkehn has quit IRC | 05:28 | |
*** jdandrea has quit IRC | 05:28 | |
*** jlvillal has joined #openstack-oslo | 05:34 | |
*** mkoderer__ has joined #openstack-oslo | 05:35 | |
*** yamamoto has joined #openstack-oslo | 05:43 | |
*** davidlenwell has quit IRC | 05:44 | |
*** davidlenwell has joined #openstack-oslo | 05:46 | |
*** salv-orlando has joined #openstack-oslo | 05:51 | |
*** EinstCra_ has joined #openstack-oslo | 05:52 | |
*** dkehn has joined #openstack-oslo | 05:53 | |
*** EinstCra_ has quit IRC | 05:53 | |
*** nkrinner has joined #openstack-oslo | 05:55 | |
*** EinstCra_ has joined #openstack-oslo | 05:55 | |
*** EinstCrazy has quit IRC | 05:56 | |
*** YorikSar has quit IRC | 06:02 | |
*** YorikSar has joined #openstack-oslo | 06:03 | |
*** amotoki_ has quit IRC | 06:07 | |
*** yamamoto has quit IRC | 06:14 | |
*** yamamoto has joined #openstack-oslo | 06:16 | |
*** vilobhmm111 has joined #openstack-oslo | 06:17 | |
*** vilobhmm11 has quit IRC | 06:21 | |
*** tesseract has joined #openstack-oslo | 06:29 | |
*** tesseract is now known as Guest63229 | 06:29 | |
openstackgerrit | Vipin Balachandran proposed openstack/oslo.vmware: Support download of virtual disk in ova container https://review.openstack.org/305816 | 06:30 |
*** salv-orlando has quit IRC | 06:31 | |
*** EinstCra_ has quit IRC | 06:32 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/oslo.versionedobjects: Expose object context thru a public property https://review.openstack.org/291257 | 06:33 |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo.messaging: Use eventletutils to check is_monkey_patched https://review.openstack.org/304523 | 06:35 |
*** ozamiatin has joined #openstack-oslo | 06:36 | |
*** EinstCrazy has joined #openstack-oslo | 06:37 | |
*** EinstCrazy has quit IRC | 06:42 | |
*** EinstCrazy has joined #openstack-oslo | 06:44 | |
*** EinstCra_ has joined #openstack-oslo | 06:47 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/oslo.versionedobjects: Introduce fixture to enforce sorted order for object changes https://review.openstack.org/287761 | 06:50 |
*** EinstCrazy has quit IRC | 06:51 | |
*** jdandrea has joined #openstack-oslo | 06:55 | |
*** jdandrea_ has quit IRC | 06:57 | |
*** jlvillal has quit IRC | 06:58 | |
*** vilobhmm11 has joined #openstack-oslo | 06:58 | |
*** davidlenwell_ has joined #openstack-oslo | 07:01 | |
*** browne has joined #openstack-oslo | 07:02 | |
*** mkoderer__ has quit IRC | 07:03 | |
*** vilobhmm111 has quit IRC | 07:04 | |
*** nkrinner has quit IRC | 07:04 | |
*** davidlenwell has quit IRC | 07:04 | |
*** browne1 has quit IRC | 07:04 | |
*** mkoderer__ has joined #openstack-oslo | 07:09 | |
*** jecarey has joined #openstack-oslo | 07:09 | |
*** jlvillal has joined #openstack-oslo | 07:11 | |
*** nkrinner has joined #openstack-oslo | 07:11 | |
*** jamielennox is now known as jamielennox|away | 07:11 | |
*** jecarey has quit IRC | 07:14 | |
*** achanda has joined #openstack-oslo | 07:20 | |
*** browne has quit IRC | 07:21 | |
*** amotoki has joined #openstack-oslo | 07:25 | |
*** pcaruana has joined #openstack-oslo | 07:31 | |
*** yamahata has quit IRC | 07:54 | |
*** e0ne has joined #openstack-oslo | 07:58 | |
*** shardy has joined #openstack-oslo | 07:58 | |
*** jpena|off is now known as jpena | 08:01 | |
*** dukhlov_ has joined #openstack-oslo | 08:03 | |
*** achanda has quit IRC | 08:06 | |
*** openstackgerrit has quit IRC | 08:08 | |
*** jamielennox|away is now known as jamielennox | 08:11 | |
*** _stowa has quit IRC | 08:11 | |
*** _stowa has joined #openstack-oslo | 08:15 | |
*** eliqiao has quit IRC | 08:16 | |
*** YorikSar has quit IRC | 08:17 | |
*** YorikSar has joined #openstack-oslo | 08:17 | |
*** eliqiao has joined #openstack-oslo | 08:17 | |
*** openstackgerrit has joined #openstack-oslo | 08:17 | |
*** openstackgerrit has quit IRC | 08:18 | |
*** openstackgerrit has joined #openstack-oslo | 08:18 | |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo.messaging: [zmq] Reduce threading from python proxy https://review.openstack.org/304852 | 08:18 |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo.messaging: [zmq] Reduce threading from python proxy https://review.openstack.org/304852 | 08:19 |
openstackgerrit | Julien Danjou proposed openstack/oslo.db: Remove unused sqlite_fk in _init_connection_args call https://review.openstack.org/305341 | 08:22 |
openstackgerrit | Julien Danjou proposed openstack/oslo.db: Add support for custom JSON serializer https://review.openstack.org/305342 | 08:22 |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo.messaging: [zmq] Reduce threading from python proxy https://review.openstack.org/304852 | 08:24 |
openstackgerrit | Julien Danjou proposed openstack/oslo.db: Allow testing of MySQL and PostgreSQL scenario locally https://review.openstack.org/305492 | 08:28 |
*** dukhlov_ has quit IRC | 08:32 | |
*** dukhlov_ has joined #openstack-oslo | 08:36 | |
*** yassine__ has joined #openstack-oslo | 08:37 | |
*** dukhlov_ has quit IRC | 08:40 | |
*** e0ne has quit IRC | 08:43 | |
*** jamielennox is now known as jamielennox|away | 08:43 | |
*** mhickey has joined #openstack-oslo | 08:46 | |
*** dims_ has quit IRC | 08:46 | |
*** dims has joined #openstack-oslo | 08:49 | |
*** vilobhmm11 has quit IRC | 08:53 | |
*** e0ne has joined #openstack-oslo | 08:53 | |
openstackgerrit | Vipin Balachandran proposed openstack/oslo.vmware: Support download of virtual disk in ova container https://review.openstack.org/305816 | 09:00 |
*** dukhlov_ has joined #openstack-oslo | 09:02 | |
openstackgerrit | Vipin Balachandran proposed openstack/oslo.vmware: Support download of virtual disk in ova container https://review.openstack.org/305816 | 09:03 |
*** salv-orlando has joined #openstack-oslo | 09:05 | |
-openstackstatus- NOTICE: Gerrit is going to be restarted because is not processing new changes | 09:05 | |
*** salv-orlando has quit IRC | 09:15 | |
*** amotoki has quit IRC | 09:18 | |
-openstackstatus- NOTICE: No jobs are being processed by gerrit and zuul . We are working to solve the problem, please be aware that no changes have been sent to the queue in the last hour, so you will need to recheck jobs for that period. | 09:21 | |
*** ChanServ changes topic to "No jobs are being processed by gerrit and zuul . We are working to solve the problem, please be aware that no changes have been sent to the queue in the last hour, so you will need to recheck jobs for that period." | 09:21 | |
*** cdent has joined #openstack-oslo | 09:22 | |
*** dukhlov_ has quit IRC | 09:27 | |
*** zqfan has joined #openstack-oslo | 09:40 | |
*** ndipanov has joined #openstack-oslo | 09:40 | |
*** ChanServ changes topic to "#openstack-oslo" | 09:49 | |
-openstackstatus- NOTICE: Zuul and gerrit are working normally now. Please recheck any jobs that may have been affected by this failure. | 09:50 | |
*** amotoki has joined #openstack-oslo | 09:55 | |
*** andymaier has joined #openstack-oslo | 09:56 | |
*** amotoki has quit IRC | 10:05 | |
*** salv-orlando has joined #openstack-oslo | 10:06 | |
*** ndipanov has quit IRC | 10:22 | |
*** ndipanov has joined #openstack-oslo | 10:24 | |
*** lpetrut has joined #openstack-oslo | 10:37 | |
*** EinstCra_ has quit IRC | 10:40 | |
*** sdague has joined #openstack-oslo | 10:40 | |
*** EinstCrazy has joined #openstack-oslo | 10:40 | |
*** EinstCrazy has quit IRC | 10:45 | |
*** cdent has quit IRC | 10:51 | |
*** _amrith_ is now known as amrith | 10:54 | |
*** lpetrut has quit IRC | 10:59 | |
*** lpetrut has joined #openstack-oslo | 10:59 | |
*** lpetrut has quit IRC | 11:10 | |
*** xek has joined #openstack-oslo | 11:22 | |
*** yamamoto has quit IRC | 11:40 | |
*** sheeprine has quit IRC | 11:41 | |
*** sheeprine has joined #openstack-oslo | 11:42 | |
*** cdent has joined #openstack-oslo | 11:45 | |
*** dims has quit IRC | 11:46 | |
*** openstack has quit IRC | 11:51 | |
*** openstack has joined #openstack-oslo | 11:52 | |
*** sheeprine has quit IRC | 11:54 | |
*** sheeprine has joined #openstack-oslo | 11:55 | |
*** dims has joined #openstack-oslo | 11:56 | |
openstackgerrit | Ann Kamyshnikova proposed openstack/oslo.db: Fix server_default comparison for BigInteger https://review.openstack.org/304443 | 11:56 |
*** andymaier has quit IRC | 12:01 | |
*** dukhlov has joined #openstack-oslo | 12:04 | |
*** dukhlov has quit IRC | 12:06 | |
*** pradk has joined #openstack-oslo | 12:11 | |
*** dukhlov has joined #openstack-oslo | 12:13 | |
*** EinstCrazy has joined #openstack-oslo | 12:21 | |
*** yamamoto has joined #openstack-oslo | 12:24 | |
*** jeckersb_gone is now known as jeckersb | 12:27 | |
*** salv-orl_ has joined #openstack-oslo | 12:27 | |
openstackgerrit | Gevorg Davoian proposed openstack/oslo.messaging: Add configurable serialization to pika https://review.openstack.org/304172 | 12:30 |
*** salv-orlando has quit IRC | 12:30 | |
*** cdent has quit IRC | 12:31 | |
*** ndipanov has quit IRC | 12:31 | |
*** mhickey has quit IRC | 12:31 | |
*** _stowa has quit IRC | 12:31 | |
*** ozamiatin has quit IRC | 12:33 | |
*** cdent has joined #openstack-oslo | 12:34 | |
*** _stowa has joined #openstack-oslo | 12:39 | |
openstackgerrit | Dinesh Bhor proposed openstack/oslo.db: Add validate_db_int() method for validation https://review.openstack.org/306389 | 12:40 |
*** gordc has joined #openstack-oslo | 12:42 | |
*** jpena is now known as jpena|lunch | 12:42 | |
*** mhickey has joined #openstack-oslo | 12:43 | |
*** ndipanov has joined #openstack-oslo | 12:46 | |
*** pradk has quit IRC | 12:49 | |
*** pradk has joined #openstack-oslo | 12:50 | |
*** amrith is now known as _amrith_ | 12:51 | |
*** alaski is now known as lascii | 12:52 | |
*** ndipanov has quit IRC | 12:53 | |
*** dukhlov has quit IRC | 12:56 | |
*** dukhlov has joined #openstack-oslo | 12:58 | |
*** yamamoto has quit IRC | 13:01 | |
*** rlrossit has joined #openstack-oslo | 13:03 | |
*** ozamiatin has joined #openstack-oslo | 13:04 | |
*** yamamoto has joined #openstack-oslo | 13:08 | |
*** kgiusti has joined #openstack-oslo | 13:12 | |
*** andymaier has joined #openstack-oslo | 13:13 | |
*** ndipanov has joined #openstack-oslo | 13:14 | |
*** mriedem has joined #openstack-oslo | 13:22 | |
*** jaosorior has joined #openstack-oslo | 13:25 | |
*** mhickey has quit IRC | 13:25 | |
*** cdent has quit IRC | 13:27 | |
*** andymaier has quit IRC | 13:32 | |
*** salv-orlando has joined #openstack-oslo | 13:33 | |
*** jecarey has joined #openstack-oslo | 13:35 | |
*** salv-orl_ has quit IRC | 13:35 | |
*** jimbobhickville has joined #openstack-oslo | 13:37 | |
*** dukhlov has quit IRC | 13:40 | |
*** dukhlov has joined #openstack-oslo | 13:41 | |
*** dukhlov has quit IRC | 13:44 | |
*** dukhlov has joined #openstack-oslo | 13:47 | |
*** ozamiatin has quit IRC | 13:55 | |
*** ozamiatin has joined #openstack-oslo | 13:57 | |
*** jpena|lunch is now known as jpena | 14:00 | |
*** dims has quit IRC | 14:01 | |
*** EinstCrazy has quit IRC | 14:01 | |
*** EinstCrazy has joined #openstack-oslo | 14:01 | |
*** haypo has joined #openstack-oslo | 14:02 | |
haypo | does someone know if the Cue project is still alive? :) | 14:02 |
*** EinstCrazy has quit IRC | 14:03 | |
therve | haypo, It has a ptl | 14:04 |
*** dims has joined #openstack-oslo | 14:04 | |
haypo | therve: i'm not sure that you replied to my question :-D | 14:04 |
haypo | therve: is the PTL dead or alive? | 14:04 |
haypo | haha | 14:04 |
*** EinstCrazy has joined #openstack-oslo | 14:05 | |
*** gordc has quit IRC | 14:06 | |
therve | haypo, http://eavesdrop.openstack.org/meetings/cue/2015/cue.2015-12-01-18.09.log.html that was their last meeting | 14:06 |
therve | So I'd say no | 14:06 |
haypo | "no meeting today, too many people on vacation" oh | 14:07 |
*** EinstCrazy has quit IRC | 14:07 | |
haypo | therve: last change was merged 1 month ago, so at least the project is not completly dead | 14:07 |
*** dansmith is now known as superdan | 14:07 | |
*** sdague has quit IRC | 14:07 | |
*** gordc has joined #openstack-oslo | 14:07 | |
sileht | therve, http://lists.openstack.org/pipermail/openstack-dev/2016-March/089573.html | 14:08 |
*** sdague has joined #openstack-oslo | 14:08 | |
rpodolyaka | akamyshnikova: could you please fix the unit tests in your patch? https://review.openstack.org/#/c/304443/ :) | 14:08 |
patchbot | rpodolyaka: patch 304443 - oslo.db - Fix server_default comparison for BigInteger | 14:08 |
*** gdavoian has joined #openstack-oslo | 14:09 | |
akamyshnikova | rpodolyaka, oops | 14:09 |
akamyshnikova | sure :) | 14:10 |
haypo | sileht: oh, i just understood the punt. cue ... queue... | 14:11 |
haypo | *clap* *clap* :) | 14:11 |
*** salv-orlando has quit IRC | 14:12 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 14:12 | |
openstackgerrit | Ann Kamyshnikova proposed openstack/oslo.db: Fix server_default comparison for BigInteger https://review.openstack.org/304443 | 14:13 |
*** mtanino has joined #openstack-oslo | 14:14 | |
*** EinstCrazy has joined #openstack-oslo | 14:15 | |
*** _amrith_ is now known as amrith | 14:15 | |
*** zz_dimtruck is now known as dimtruck | 14:15 | |
*** EinstCrazy has quit IRC | 14:16 | |
*** salv-orlando has joined #openstack-oslo | 14:17 | |
*** EinstCrazy has joined #openstack-oslo | 14:18 | |
*** lpetrut has joined #openstack-oslo | 14:20 | |
*** EinstCrazy has quit IRC | 14:21 | |
*** e0ne_ has joined #openstack-oslo | 14:25 | |
*** e0ne has quit IRC | 14:26 | |
*** achanda has joined #openstack-oslo | 14:30 | |
*** achanda has quit IRC | 14:32 | |
*** gonzalo2kx has quit IRC | 14:37 | |
*** ozamiatin has quit IRC | 14:38 | |
openstackgerrit | Alexey Yelistratov proposed openstack/osprofiler: Add backward compatible drivers structure https://review.openstack.org/247005 | 14:47 |
openstackgerrit | Alexey Yelistratov proposed openstack/osprofiler: Add backward compatible drivers structure https://review.openstack.org/247005 | 14:48 |
*** dukhlov has quit IRC | 14:49 | |
openstackgerrit | Alexey Yelistratov proposed openstack/osprofiler: Add backward compatible drivers structure https://review.openstack.org/247005 | 14:53 |
*** gonzalo2kx has joined #openstack-oslo | 14:53 | |
*** gonzalo2kx has quit IRC | 15:04 | |
*** pcaruana has quit IRC | 15:06 | |
*** superdan is now known as _-_ | 15:08 | |
*** _-_ is now known as superdan | 15:09 | |
*** zhiyan has quit IRC | 15:11 | |
*** boris-42 has quit IRC | 15:11 | |
*** EinstCrazy has joined #openstack-oslo | 15:11 | |
*** fungi has quit IRC | 15:12 | |
*** root1 has quit IRC | 15:12 | |
*** pkholkin has quit IRC | 15:12 | |
*** rpodolyaka has quit IRC | 15:13 | |
*** odyssey4me has quit IRC | 15:13 | |
*** root1 has joined #openstack-oslo | 15:14 | |
*** jecarey_ has joined #openstack-oslo | 15:17 | |
*** odyssey4me has joined #openstack-oslo | 15:17 | |
*** boris-42 has joined #openstack-oslo | 15:20 | |
*** ozamiatin has joined #openstack-oslo | 15:20 | |
*** gdavoian_ has joined #openstack-oslo | 15:20 | |
*** dukhlov has joined #openstack-oslo | 15:20 | |
*** fungi has joined #openstack-oslo | 15:20 | |
*** tonyb_ has joined #openstack-oslo | 15:20 | |
*** pleia2_ has joined #openstack-oslo | 15:21 | |
*** root___16 has joined #openstack-oslo | 15:21 | |
*** eliqiao_ has joined #openstack-oslo | 15:22 | |
*** ozamiatin has quit IRC | 15:22 | |
*** binarin has joined #openstack-oslo | 15:22 | |
*** rpodolyaka has joined #openstack-oslo | 15:23 | |
*** zhiyan has joined #openstack-oslo | 15:24 | |
*** davidlenwell has joined #openstack-oslo | 15:24 | |
*** jlvillal_ has joined #openstack-oslo | 15:24 | |
*** root1 has quit IRC | 15:25 | |
*** e0ne_ has quit IRC | 15:25 | |
*** gdavoian has quit IRC | 15:25 | |
*** gordc has quit IRC | 15:25 | |
*** dims has quit IRC | 15:25 | |
*** jecarey has quit IRC | 15:25 | |
*** ndipanov has quit IRC | 15:25 | |
*** eliqiao has quit IRC | 15:25 | |
*** jlvillal has quit IRC | 15:25 | |
*** davidlenwell_ has quit IRC | 15:25 | |
*** dhellmann has quit IRC | 15:25 | |
*** yportnova has quit IRC | 15:25 | |
*** pleia2 has quit IRC | 15:25 | |
*** edmondsw has quit IRC | 15:25 | |
*** sileht has quit IRC | 15:25 | |
*** ericksonsantos has quit IRC | 15:25 | |
*** kbyrne has quit IRC | 15:25 | |
*** mdavidson has quit IRC | 15:25 | |
*** tonyb has quit IRC | 15:25 | |
*** binarin_ has quit IRC | 15:25 | |
*** EmilienM has quit IRC | 15:25 | |
*** lxsli has quit IRC | 15:25 | |
*** pleia2_ is now known as pleia2 | 15:26 | |
*** dims has joined #openstack-oslo | 15:26 | |
*** e0ne has joined #openstack-oslo | 15:26 | |
*** dhellmann has joined #openstack-oslo | 15:26 | |
*** gordc has joined #openstack-oslo | 15:27 | |
*** amotoki has joined #openstack-oslo | 15:27 | |
*** jlvillal_ is now known as jlvillal | 15:27 | |
*** jlvillal is now known as Guest81062 | 15:27 | |
*** EmilienM has joined #openstack-oslo | 15:28 | |
*** rpodolyaka has quit IRC | 15:28 | |
*** mdavidson has joined #openstack-oslo | 15:29 | |
*** lxsli has joined #openstack-oslo | 15:29 | |
*** pblaho has quit IRC | 15:29 | |
*** ndipanov has joined #openstack-oslo | 15:29 | |
*** sileht has joined #openstack-oslo | 15:30 | |
*** rcernin has quit IRC | 15:30 | |
*** edmondsw has joined #openstack-oslo | 15:31 | |
*** Guest63229 has quit IRC | 15:31 | |
*** ericksonsantos has joined #openstack-oslo | 15:32 | |
*** kbyrne has joined #openstack-oslo | 15:32 | |
*** yportnova has joined #openstack-oslo | 15:32 | |
*** pkholkin has joined #openstack-oslo | 15:35 | |
*** browne has joined #openstack-oslo | 15:37 | |
*** jimbobhickville has quit IRC | 15:38 | |
*** pblaho has joined #openstack-oslo | 15:38 | |
*** rpodolyaka has joined #openstack-oslo | 15:39 | |
*** jaosorior has quit IRC | 15:43 | |
*** jecarey has joined #openstack-oslo | 15:45 | |
*** andymaier has joined #openstack-oslo | 15:47 | |
*** jecarey_ has quit IRC | 15:48 | |
*** jecarey has quit IRC | 15:49 | |
*** EinstCrazy has quit IRC | 15:50 | |
*** EinstCrazy has joined #openstack-oslo | 15:50 | |
*** yassine__ has quit IRC | 15:58 | |
*** yamahata has joined #openstack-oslo | 16:05 | |
*** andymaier has quit IRC | 16:13 | |
*** andymaier has joined #openstack-oslo | 16:14 | |
*** pkholkin has quit IRC | 16:17 | |
*** gdavoian_ has quit IRC | 16:19 | |
*** mriedem is now known as mriedem_lunch | 16:19 | |
*** pkholkin has joined #openstack-oslo | 16:20 | |
*** amotoki has quit IRC | 16:24 | |
*** salv-orlando has quit IRC | 16:26 | |
*** sputnik13 has joined #openstack-oslo | 16:29 | |
*** sputnik13_ has joined #openstack-oslo | 16:33 | |
*** sputnik13 has quit IRC | 16:35 | |
*** sputnik13_ has quit IRC | 16:43 | |
*** amrith is now known as _amrith_ | 16:44 | |
*** harlowja has quit IRC | 16:44 | |
*** harlowja has joined #openstack-oslo | 16:45 | |
*** lpetrut has quit IRC | 16:56 | |
*** cdent has joined #openstack-oslo | 16:57 | |
openstackgerrit | Dmitriy Ukhlov proposed openstack/oslo.messaging: Refactor base interfaces https://review.openstack.org/306542 | 16:57 |
*** permalac has joined #openstack-oslo | 17:01 | |
*** achanda has joined #openstack-oslo | 17:04 | |
*** Guest81062 is now known as jlvillal | 17:04 | |
*** jpena is now known as jpena|off | 17:05 | |
*** achanda has quit IRC | 17:08 | |
openstackgerrit | Dmitriy Ukhlov proposed openstack/oslo.messaging: Refactor base interfaces https://review.openstack.org/306542 | 17:08 |
*** yamamoto has quit IRC | 17:10 | |
*** yamamoto has joined #openstack-oslo | 17:11 | |
*** salv-orlando has joined #openstack-oslo | 17:14 | |
*** salv-orl_ has joined #openstack-oslo | 17:17 | |
*** yamamoto has quit IRC | 17:21 | |
*** kbyrne has quit IRC | 17:21 | |
*** gordc_ has joined #openstack-oslo | 17:22 | |
*** pleia2 has quit IRC | 17:22 | |
*** pblaho_ has joined #openstack-oslo | 17:22 | |
*** boris-42 has quit IRC | 17:24 | |
*** yamamoto has joined #openstack-oslo | 17:24 | |
*** pleia2 has joined #openstack-oslo | 17:24 | |
*** yamamoto has quit IRC | 17:25 | |
*** salv-orlando has quit IRC | 17:26 | |
*** permalac has quit IRC | 17:26 | |
*** pkholkin has quit IRC | 17:26 | |
*** cdent has quit IRC | 17:27 | |
*** andymaier has quit IRC | 17:27 | |
*** yamahata has quit IRC | 17:27 | |
*** EinstCrazy has quit IRC | 17:27 | |
*** pblaho has quit IRC | 17:27 | |
*** ndipanov has quit IRC | 17:27 | |
*** lxsli has quit IRC | 17:27 | |
*** EmilienM has quit IRC | 17:27 | |
*** gordc has quit IRC | 17:27 | |
*** dhellmann has quit IRC | 17:27 | |
*** zhiyan has quit IRC | 17:27 | |
*** fungi has quit IRC | 17:27 | |
*** dukhlov has quit IRC | 17:27 | |
*** sdague has quit IRC | 17:27 | |
*** sheeprine has quit IRC | 17:27 | |
*** openstackgerrit has quit IRC | 17:27 | |
*** jdandrea has quit IRC | 17:27 | |
*** EmilienM has joined #openstack-oslo | 17:29 | |
*** eliqiao_ has quit IRC | 17:30 | |
*** yamamoto has joined #openstack-oslo | 17:31 | |
*** e0ne has quit IRC | 17:31 | |
*** EinstCrazy has joined #openstack-oslo | 17:31 | |
*** dukhlov has joined #openstack-oslo | 17:33 | |
*** ndipanov has joined #openstack-oslo | 17:34 | |
*** eliqiao has joined #openstack-oslo | 17:34 | |
*** david-lyle has quit IRC | 17:34 | |
*** david-lyle has joined #openstack-oslo | 17:34 | |
*** jdandrea has joined #openstack-oslo | 17:35 | |
*** lxsli has joined #openstack-oslo | 17:35 | |
*** _amrith_ is now known as amrith | 17:37 | |
*** kbyrne has joined #openstack-oslo | 17:40 | |
*** mriedem_lunch has quit IRC | 17:42 | |
*** amrith has left #openstack-oslo | 17:43 | |
*** rlrossit has quit IRC | 17:43 | |
*** eliqiao has quit IRC | 17:44 | |
*** ndipanov has quit IRC | 17:44 | |
*** dhellmann has joined #openstack-oslo | 17:44 | |
*** yamahata has joined #openstack-oslo | 17:46 | |
*** dhellmann_ has joined #openstack-oslo | 17:46 | |
*** dhellmann_ has quit IRC | 17:47 | |
*** openstackgerrit has joined #openstack-oslo | 17:48 | |
*** mriedem has joined #openstack-oslo | 17:48 | |
*** sdague has joined #openstack-oslo | 17:49 | |
*** dhellmann has quit IRC | 17:50 | |
*** shardy has quit IRC | 17:51 | |
*** psanchez has quit IRC | 17:53 | |
*** Kiall has quit IRC | 17:53 | |
*** eliqiao has joined #openstack-oslo | 17:54 | |
*** Kiall has joined #openstack-oslo | 17:54 | |
*** psanchez has joined #openstack-oslo | 17:54 | |
*** boris-42 has joined #openstack-oslo | 17:54 | |
*** sheeprine has joined #openstack-oslo | 17:54 | |
*** yamamoto has quit IRC | 17:54 | |
*** dhellmann has joined #openstack-oslo | 17:55 | |
*** dhellmann has quit IRC | 17:57 | |
*** mmasaki has quit IRC | 17:57 | |
*** dhellmann has joined #openstack-oslo | 17:57 | |
*** ndipanov has joined #openstack-oslo | 17:58 | |
*** mmasaki has joined #openstack-oslo | 17:58 | |
*** rlrossit has joined #openstack-oslo | 17:59 | |
*** zhiyan has joined #openstack-oslo | 17:59 | |
*** yamamoto has joined #openstack-oslo | 18:02 | |
*** sputnik13 has joined #openstack-oslo | 18:04 | |
*** dukhlov has quit IRC | 18:04 | |
*** fungi has joined #openstack-oslo | 18:07 | |
*** pkholkin has joined #openstack-oslo | 18:10 | |
*** eliqiao has quit IRC | 18:10 | |
*** eliqiao has joined #openstack-oslo | 18:11 | |
*** yamamoto has quit IRC | 18:16 | |
*** e0ne has joined #openstack-oslo | 18:19 | |
*** vilobhmm11 has joined #openstack-oslo | 18:20 | |
*** yamamoto has joined #openstack-oslo | 18:20 | |
*** vilobhmm111 has joined #openstack-oslo | 18:22 | |
*** vilobhmm11 has quit IRC | 18:24 | |
*** yamahata has quit IRC | 18:25 | |
*** EinstCrazy has quit IRC | 18:26 | |
*** jecarey has joined #openstack-oslo | 18:29 | |
*** jecarey has quit IRC | 18:33 | |
*** jecarey has joined #openstack-oslo | 18:35 | |
*** jecarey has quit IRC | 18:38 | |
*** gcb has quit IRC | 18:38 | |
*** gcb has joined #openstack-oslo | 18:38 | |
*** zqfan has quit IRC | 18:42 | |
*** haypo has left #openstack-oslo | 18:56 | |
*** yamamoto has quit IRC | 18:57 | |
*** rlrossit has quit IRC | 19:00 | |
*** yamahata has joined #openstack-oslo | 19:02 | |
*** rlrossit has joined #openstack-oslo | 19:05 | |
*** rlrossit has quit IRC | 19:05 | |
*** rlrossit has joined #openstack-oslo | 19:05 | |
*** browne has quit IRC | 19:09 | |
*** melwitt has quit IRC | 19:13 | |
*** jdandrea_ has joined #openstack-oslo | 19:15 | |
*** gcb has quit IRC | 19:15 | |
*** melwitt has joined #openstack-oslo | 19:17 | |
*** jdandrea has quit IRC | 19:18 | |
*** sputnik13_ has joined #openstack-oslo | 19:18 | |
*** salv-orlando has joined #openstack-oslo | 19:20 | |
*** gcb has joined #openstack-oslo | 19:21 | |
*** pblaho has joined #openstack-oslo | 19:21 | |
*** sheeprine_ has joined #openstack-oslo | 19:22 | |
*** kinrui has joined #openstack-oslo | 19:22 | |
*** sheeprine has quit IRC | 19:22 | |
*** e0ne has quit IRC | 19:22 | |
*** fungi has quit IRC | 19:22 | |
*** pblaho_ has quit IRC | 19:22 | |
*** sdague has quit IRC | 19:22 | |
*** salv-orl_ has quit IRC | 19:22 | |
*** sputnik13 has quit IRC | 19:22 | |
*** sdague has joined #openstack-oslo | 19:23 | |
*** e0ne has joined #openstack-oslo | 19:24 | |
*** gordc_ has quit IRC | 19:25 | |
*** gcb has quit IRC | 19:29 | |
*** gcb has joined #openstack-oslo | 19:29 | |
*** e0ne has quit IRC | 19:31 | |
*** salv-orl_ has joined #openstack-oslo | 19:33 | |
*** salv-orl_ has quit IRC | 19:33 | |
*** salv-orl_ has joined #openstack-oslo | 19:34 | |
*** salv-orlando has quit IRC | 19:36 | |
*** sheeprine_ has quit IRC | 19:36 | |
*** sheeprine has joined #openstack-oslo | 19:37 | |
*** salv-orl_ has quit IRC | 19:39 | |
*** achanda has joined #openstack-oslo | 19:42 | |
*** dulek has quit IRC | 19:50 | |
*** dulek has joined #openstack-oslo | 19:52 | |
*** ericksonsantos has quit IRC | 19:52 | |
*** yamamoto has joined #openstack-oslo | 19:58 | |
*** kgiusti has left #openstack-oslo | 19:58 | |
*** toabctl has quit IRC | 20:00 | |
*** andreaf has quit IRC | 20:00 | |
*** andreaf has joined #openstack-oslo | 20:01 | |
*** toabctl has joined #openstack-oslo | 20:01 | |
*** achanda has quit IRC | 20:05 | |
*** yamamoto has quit IRC | 20:08 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 20:17 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 20:17 | |
*** jdandrea has joined #openstack-oslo | 20:19 | |
*** andreaf has quit IRC | 20:23 | |
*** jdandrea_ has quit IRC | 20:23 | |
*** yamahata has quit IRC | 20:23 | |
*** pkholkin has quit IRC | 20:23 | |
*** ericksonsantos has joined #openstack-oslo | 20:24 | |
*** pkholkin has joined #openstack-oslo | 20:26 | |
*** andreaf has joined #openstack-oslo | 20:28 | |
*** achanda has joined #openstack-oslo | 20:29 | |
*** achanda has quit IRC | 20:34 | |
*** yamahata has joined #openstack-oslo | 20:36 | |
*** salv-orlando has joined #openstack-oslo | 20:38 | |
*** salv-orlando has quit IRC | 20:38 | |
*** salv-orlando has joined #openstack-oslo | 20:38 | |
*** jecarey has joined #openstack-oslo | 20:46 | |
*** jecarey_ has joined #openstack-oslo | 20:48 | |
*** jecarey has quit IRC | 20:48 | |
*** browne has joined #openstack-oslo | 20:54 | |
*** edmondsw has quit IRC | 20:55 | |
*** psanchez has quit IRC | 20:58 | |
*** psanchez has joined #openstack-oslo | 21:00 | |
*** lascii is now known as alaski | 21:01 | |
*** dukhlov has joined #openstack-oslo | 21:19 | |
*** dimtruck is now known as zz_dimtruck | 21:22 | |
*** pradk has quit IRC | 21:29 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 21:43 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 21:43 | |
*** mriedem has quit IRC | 21:45 | |
*** dukhlov has quit IRC | 21:58 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 22:05 | |
*** rlrossit has quit IRC | 22:07 | |
*** SergeyLukjanov has quit IRC | 22:22 | |
*** SergeyLukjanov has joined #openstack-oslo | 22:22 | |
*** odyssey4me has quit IRC | 22:22 | |
*** dmitryme has quit IRC | 22:23 | |
*** ttx has quit IRC | 22:23 | |
*** mdavidson has quit IRC | 22:24 | |
*** dmitryme has joined #openstack-oslo | 22:25 | |
*** odyssey4me has joined #openstack-oslo | 22:27 | |
*** yamahata has quit IRC | 22:35 | |
*** ttx has joined #openstack-oslo | 22:36 | |
openstackgerrit | Joshua Harlow proposed openstack/oslo-incubator: Add a tool to propose oslo library releases (and to show whats not released) https://review.openstack.org/306648 | 22:38 |
*** mdavidson has joined #openstack-oslo | 22:38 | |
openstackgerrit | Joshua Harlow proposed openstack/oslo-incubator: Add a tool to propose oslo library releases (and to show whats not released) https://review.openstack.org/306648 | 22:38 |
*** sdague has quit IRC | 22:45 | |
openstackgerrit | Joshua Harlow proposed openstack/oslo-incubator: Add a tool to propose oslo library releases (and to show whats not released) https://review.openstack.org/306648 | 22:56 |
*** eliqiao_ has joined #openstack-oslo | 23:02 | |
*** eliqiao has quit IRC | 23:03 | |
*** mriedem has joined #openstack-oslo | 23:14 | |
openstackgerrit | Joshua Harlow proposed openstack/oslo-incubator: Add a tool to propose library releases (and to show whats not released) https://review.openstack.org/306648 | 23:19 |
*** takedakn has joined #openstack-oslo | 23:24 | |
*** takedakn has quit IRC | 23:25 | |
*** tonyb_ is now known as tonyb | 23:33 | |
*** browne has quit IRC | 23:41 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!