*** kgriffs|afk is now known as kgriffs | 00:12 | |
*** kgriffs is now known as kgriffs|afk | 00:22 | |
*** boris-42 has joined #openstack-zaqar | 01:13 | |
*** achanda has quit IRC | 01:21 | |
*** echevemaster has joined #openstack-zaqar | 01:31 | |
*** kgriffs|afk is now known as kgriffs | 02:01 | |
*** AAzza has quit IRC | 02:05 | |
*** AAzza_afk has joined #openstack-zaqar | 02:05 | |
*** AAzza_afk is now known as AAzza | 02:05 | |
*** AAzza_afk has joined #openstack-zaqar | 02:08 | |
*** AAzza has quit IRC | 02:09 | |
*** AAzza_afk is now known as AAzza | 02:09 | |
*** kgriffs is now known as kgriffs|afk | 02:11 | |
*** achanda has joined #openstack-zaqar | 02:22 | |
*** achanda has quit IRC | 02:27 | |
*** achanda has joined #openstack-zaqar | 02:27 | |
*** achanda has quit IRC | 02:38 | |
*** echevemaster has quit IRC | 03:30 | |
*** diga has joined #openstack-zaqar | 03:32 | |
*** diga has quit IRC | 03:37 | |
*** kgriffs|afk is now known as kgriffs | 03:50 | |
*** kgriffs is now known as kgriffs|afk | 03:59 | |
*** diga has joined #openstack-zaqar | 04:47 | |
*** exploreshaifali has joined #openstack-zaqar | 05:26 | |
*** achanda has joined #openstack-zaqar | 05:35 | |
*** kgriffs|afk is now known as kgriffs | 05:39 | |
*** pcaruana has quit IRC | 05:45 | |
*** kgriffs is now known as kgriffs|afk | 05:48 | |
exploreshaifali | goooooooooooood morning! | 05:56 |
---|---|---|
exploreshaifali | flaper87: around ? | 05:56 |
*** achanda has quit IRC | 06:25 | |
*** achanda has joined #openstack-zaqar | 06:56 | |
exploreshaifali | flaper87: ping | 07:18 |
flaper87 | exploreshaifali: pong | 07:18 |
flaper87 | good morning, how are you doing? | 07:19 |
exploreshaifali | moooorning :) | 07:19 |
exploreshaifali | flaper87: I am goooood, and you ? | 07:19 |
flaper87 | exploreshaifali: all good :D | 07:20 |
flaper87 | how's that patch coming along ? | 07:20 |
flaper87 | I was hoping we could merge it this week | 07:20 |
flaper87 | :D | 07:20 |
exploreshaifali | flaper87: yes, discussing about that | 07:20 |
exploreshaifali | flaper87: we are wrtiting new fuction to get entry points in pipeline, so are we going to delete _get_storage_pipeline() https://github.com/openstack/zaqar/blob/master/zaqar/storage/pipeline.py#L44 | 07:21 |
flaper87 | exploreshaifali: no no, that must stay. We still need that for user's defined stages | 07:22 |
flaper87 | the one we're writing is for us to use internally | 07:22 |
exploreshaifali | flaper87: okay, so what I catch as parameters of new function? | 07:23 |
exploreshaifali | kwargs ? | 07:23 |
flaper87 | exploreshaifali: hehe, you tell me :P | 07:24 |
flaper87 | I guess you need the conf object | 07:24 |
flaper87 | other than that, I don't think you'll need anything else | 07:24 |
exploreshaifali | flaper87: previously you mentioned - instead of reading the list of configs from the config, we need it to iterate over the available entry-points under the built-in namespace | 07:25 |
exploreshaifali | flaper87: we were discussing to use Extensionmanager there | 07:26 |
flaper87 | exploreshaifali: yes, that's still true | 07:26 |
flaper87 | brb | 07:27 |
*** kgriffs|afk is now known as kgriffs | 07:27 | |
*** kgriffs is now known as kgriffs|afk | 07:37 | |
*** achanda has quit IRC | 07:42 | |
*** achanda has joined #openstack-zaqar | 07:48 | |
flaper87 | back | 08:02 |
exploreshaifali | flaper87: okay, so do we need config object in the method ? | 08:05 |
exploreshaifali | where, if yes? | 08:05 |
*** dynarro has joined #openstack-zaqar | 08:08 | |
flaper87 | exploreshaifali: what do you mean where ? | 08:17 |
exploreshaifali | flaper87: we want to iterate over entry_points through ExtensionManager, not using config object, if so then why should we keep it as parameter of new function? Will we need its use somewhere inside the new function? | 08:19 |
flaper87 | exploreshaifali: you need to pass it to the entry_point | 08:19 |
flaper87 | just like we do in the _get_storage_pipeline function | 08:20 |
*** achanda has quit IRC | 08:21 | |
*** achanda has joined #openstack-zaqar | 08:22 | |
exploreshaifali | flaper87: I don't know what is entry_point, but probably you mean to pass it as invoke_kwds here http://docs.openstack.org/developer/stevedore/managers.html#extensionmanager | 08:22 |
flaper87 | exploreshaifali: correct :) | 08:23 |
flaper87 | well, invoke_args | 08:23 |
flaper87 | exploreshaifali: the entry_point is what you "load" using the ExtensionManager | 08:23 |
flaper87 | is basically "an entry point to a python code" | 08:23 |
flaper87 | probably not the best definition but I hope it's understandable | 08:23 |
exploreshaifali | flaper87: okay, Thanks! | 08:24 |
flaper87 | if you check setup.cfg, we add entry_points by giving them a name = python.path:function | 08:24 |
flaper87 | (function could also be a class) | 08:24 |
exploreshaifali | flaper87: in setup.cfg *[entry_point]* and *[files]* are defining different namespaces ? | 08:27 |
flaper87 | yeah, just look at `entry_point` | 08:27 |
exploreshaifali | flaper87: so inside it *console_scripts* and *zaqar.data.storage* are definigs what ? | 08:28 |
exploreshaifali | I think they are namespace | 08:28 |
*** dynarro has quit IRC | 08:30 | |
*** achanda has quit IRC | 08:32 | |
exploreshaifali | flaper87: also I am getting this import error http://paste.openstack.org/show/180028/ when I added _delete() and _stats() method inside messages.MessageQueueHandler class | 08:44 |
*** achanda has joined #openstack-zaqar | 08:45 | |
exploreshaifali | flaper87: it is not related to what we were discussing about setup.cfg or pipeline | 08:45 |
flaper87 | exploreshaifali: mmh, there might be something wrong in the definition. Have you debugged this ? | 08:46 |
exploreshaifali | flaper87: though I haven't debug the code properly, but as it says *import error for catalogue* in the whole messages.py there is no "catalauge" mentioned | 08:49 |
exploreshaifali | flaper87: also if we look at the error, it mention *zaqar/tests/unit/transport/wsgi/v1/test_queue_lifecycle.py* so I think there inside test_queue_lifecycle some problem, it does not expect something that we are doing or so | 08:50 |
exploreshaifali | flaper87: please ignore me if I am speaking senseless stuff :P | 08:50 |
flaper87 | exploreshaifali: not senseless at all but I don't think the issue is in the test. Check catalogue and see what's being imported there. A good thing is to attempt importing the catalogue module manually and see what error it raises | 08:51 |
exploreshaifali | flaper87: okay :) | 08:52 |
*** exploreshaifali has quit IRC | 09:03 | |
*** achanda has quit IRC | 09:16 | |
*** kgriffs|afk is now known as kgriffs | 09:16 | |
*** kgriffs is now known as kgriffs|afk | 09:26 | |
*** kgriffs|afk is now known as kgriffs | 11:05 | |
*** kgriffs is now known as kgriffs|afk | 11:15 | |
vkmc | morning | 12:02 |
*** exploreshaifali has joined #openstack-zaqar | 12:25 | |
*** kgriffs|afk is now known as kgriffs | 12:51 | |
*** kgriffs is now known as kgriffs|afk | 13:00 | |
*** dynarro has joined #openstack-zaqar | 13:32 | |
vkmc | zzz | 13:37 |
exploreshaifali | vkmc, is it a syntax error ? | 13:47 |
exploreshaifali | kragniz, ^^ need your comments | 13:47 |
*** dynarro_ has joined #openstack-zaqar | 13:49 | |
*** dynarro has quit IRC | 13:49 | |
kragniz | VkmcError: overly sleepy | 13:49 |
*** jchai has joined #openstack-zaqar | 13:51 | |
*** exploreshaifali has quit IRC | 14:21 | |
*** kgriffs|afk is now known as kgriffs | 14:31 | |
*** mpanetta has joined #openstack-zaqar | 14:36 | |
*** kgriffs is now known as kgriffs|afk | 14:40 | |
*** ametts has joined #openstack-zaqar | 14:47 | |
*** JAHoagie has joined #openstack-zaqar | 15:14 | |
*** JAHoagie has quit IRC | 15:18 | |
*** kgriffs|afk is now known as kgriffs | 15:34 | |
*** achanda has joined #openstack-zaqar | 15:34 | |
*** exploreshaifali has joined #openstack-zaqar | 15:38 | |
*** achanda has quit IRC | 15:44 | |
*** malini has joined #openstack-zaqar | 16:03 | |
exploreshaifali | flaper87, around ? | 16:12 |
flaper87 | exploreshaifali: ish :D | 16:13 |
flaper87 | what's up? | 16:13 |
exploreshaifali | flaper87, all goooooooooood | 16:13 |
exploreshaifali | flaper87, I was thinking do we need to call the new method as many times as _get_storage_pipeline() is called https://github.com/openstack/zaqar/blob/master/zaqar/storage/pipeline.py | 16:14 |
flaper87 | exploreshaifali: yes | 16:14 |
flaper87 | exploreshaifali: also, function* | 16:14 |
flaper87 | :) | 16:15 |
flaper87 | you're adding a new function | 16:15 |
flaper87 | exploreshaifali: a method is basically a function bound to an object instance | 16:15 |
exploreshaifali | flaper87, yes yes :P | 16:15 |
exploreshaifali | yea, as should I append the result of it to existing the stages like https://github.com/openstack/zaqar/blob/master/zaqar/storage/pipeline.py#L111 | 16:16 |
exploreshaifali | flaper87, the new function will return list of entry_points | 16:16 |
flaper87 | yes but you should append the other stages to the ones generated by your function | 16:17 |
flaper87 | (to give precedence to the internal ones) | 16:17 |
exploreshaifali | flaper87, okay | 16:17 |
exploreshaifali | flaper87, btw what you did this weekend ? | 16:17 |
exploreshaifali | :D | 16:17 |
flaper87 | exploreshaifali: oh, mmh... It was raining on saturday so we didn't do much. But we did watch LOTR "The Return of the ring". We've been watching the whole saga again | 16:18 |
flaper87 | and I spent sunday with friends and family | 16:18 |
flaper87 | so, overall. It was a great weekend | 16:18 |
flaper87 | exploreshaifali: you? | 16:19 |
exploreshaifali | cooool :) | 16:19 |
exploreshaifali | flaper87, I was spending time with family, had some family function | 16:19 |
exploreshaifali | no doubt it was looots of fun :D | 16:20 |
*** malini has left #openstack-zaqar | 16:21 | |
*** dynarro_ has quit IRC | 16:26 | |
*** amalagon has quit IRC | 16:27 | |
*** cpallares has joined #openstack-zaqar | 16:29 | |
*** amitgandhinz has joined #openstack-zaqar | 16:33 | |
*** amitgandhinz has quit IRC | 16:53 | |
*** reed has joined #openstack-zaqar | 16:57 | |
exploreshaifali | flaper87, what are you doing here https://review.openstack.org/#/c/156249/3/glance/async/flows/base_import.py,cm L230 | 16:58 |
exploreshaifali | :P | 16:58 |
exploreshaifali | extenstions.extensions?? | 16:58 |
*** malini has joined #openstack-zaqar | 17:03 | |
*** csoukup has joined #openstack-zaqar | 17:16 | |
*** AAzza has quit IRC | 17:33 | |
*** amalagon_ has joined #openstack-zaqar | 17:38 | |
*** exploreshaifali has quit IRC | 17:45 | |
openstackgerrit | Fei Long Wang proposed openstack/zaqar: Implement webhook notifier driver https://review.openstack.org/151529 | 17:50 |
*** flwang1 has joined #openstack-zaqar | 18:07 | |
*** achanda has joined #openstack-zaqar | 18:16 | |
*** achanda has quit IRC | 18:18 | |
*** achanda has joined #openstack-zaqar | 18:18 | |
*** kgriffs is now known as kgriffs|afk | 18:42 | |
*** AAzza_afk has joined #openstack-zaqar | 18:43 | |
*** AAzza_afk is now known as AAzza | 18:43 | |
*** AAzza_afk has joined #openstack-zaqar | 18:44 | |
*** AAzza has quit IRC | 18:48 | |
*** AAzza_afk is now known as AAzza | 18:48 | |
*** flwang1 has quit IRC | 18:51 | |
*** AAzza has quit IRC | 19:05 | |
*** AAzza_afk has joined #openstack-zaqar | 19:10 | |
*** AAzza_afk is now known as AAzza | 19:10 | |
*** amitgandhinz has joined #openstack-zaqar | 19:31 | |
*** amitgandhinz has quit IRC | 19:31 | |
*** amitgandhinz has joined #openstack-zaqar | 19:32 | |
*** AAzza has quit IRC | 19:40 | |
*** AAzza_afk has joined #openstack-zaqar | 19:41 | |
*** AAzza_afk is now known as AAzza | 19:41 | |
*** AAzza has quit IRC | 19:46 | |
*** AAzza_afk has joined #openstack-zaqar | 19:46 | |
*** AAzza_afk is now known as AAzza | 19:46 | |
*** openstackgerrit has quit IRC | 19:51 | |
*** openstackgerrit has joined #openstack-zaqar | 19:52 | |
*** achanda has quit IRC | 19:57 | |
*** achanda has joined #openstack-zaqar | 19:59 | |
*** c_soukup has joined #openstack-zaqar | 20:10 | |
*** csoukup has quit IRC | 20:11 | |
*** c_soukup has quit IRC | 20:14 | |
*** amitgandhinz has quit IRC | 20:15 | |
*** flwang1 has joined #openstack-zaqar | 20:21 | |
*** csoukup has joined #openstack-zaqar | 20:22 | |
*** cpallares has quit IRC | 20:34 | |
*** cpallares has joined #openstack-zaqar | 20:37 | |
*** exploreshaifali has joined #openstack-zaqar | 20:38 | |
*** achanda has quit IRC | 20:45 | |
*** csoukup has quit IRC | 20:49 | |
*** achanda has joined #openstack-zaqar | 21:13 | |
*** kgriffs|afk is now known as kgriffs | 21:21 | |
*** amalagon_ has quit IRC | 21:22 | |
*** amalagon has joined #openstack-zaqar | 21:23 | |
*** amalagon has quit IRC | 21:27 | |
*** kgriffs is now known as kgriffs|afk | 21:33 | |
*** amalagon has joined #openstack-zaqar | 21:41 | |
*** achanda has quit IRC | 21:46 | |
*** achanda has joined #openstack-zaqar | 21:47 | |
*** exploreshaifali has quit IRC | 21:51 | |
*** jchai has quit IRC | 22:09 | |
*** csoukup has joined #openstack-zaqar | 22:10 | |
*** kgriffs|afk is now known as kgriffs | 22:42 | |
*** achanda has quit IRC | 22:43 | |
*** achanda has joined #openstack-zaqar | 22:45 | |
*** achanda has quit IRC | 23:12 | |
*** mpanetta has quit IRC | 23:19 | |
*** achanda has joined #openstack-zaqar | 23:25 | |
*** csoukup has quit IRC | 23:46 | |
*** ametts has quit IRC | 23:48 | |
*** malini has quit IRC | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!