Tuesday, 2015-03-10

*** achanda has quit IRC00:30
openstackgerritVictoria Martínez de la Cruz proposed openstack/zaqar: Adds websockets driver to Zaqar server  https://review.openstack.org/14015500:48
*** flwang has quit IRC00:58
*** sriram has joined #openstack-zaqar01:01
*** sriram has quit IRC01:13
*** sriram has joined #openstack-zaqar01:13
*** mpanetta has quit IRC01:13
*** flwang has joined #openstack-zaqar02:42
*** achanda has joined #openstack-zaqar02:47
*** chandankumar has joined #openstack-zaqar02:57
*** sriram has quit IRC03:19
*** achanda has quit IRC03:40
*** flwang has quit IRC03:51
*** achanda has joined #openstack-zaqar04:06
*** chandankumar has quit IRC05:38
*** chandankumar has joined #openstack-zaqar05:54
*** achanda has quit IRC05:54
*** achanda has joined #openstack-zaqar05:55
*** vkmc has quit IRC06:10
*** achanda has quit IRC06:11
*** achanda has joined #openstack-zaqar06:11
*** vkmc has joined #openstack-zaqar06:14
*** achanda has quit IRC06:28
*** exploreshaifali has joined #openstack-zaqar06:45
*** flwang has joined #openstack-zaqar07:27
*** openstackgerrit has quit IRC07:35
*** openstackgerrit has joined #openstack-zaqar07:35
*** flwang has quit IRC08:11
*** exploreshaifali has quit IRC09:15
*** exploreshaifali has joined #openstack-zaqar09:20
*** dynarro has joined #openstack-zaqar09:40
*** dynarro has quit IRC10:31
*** chandankumar has quit IRC10:37
*** chandankumar has joined #openstack-zaqar10:50
*** chandankumar has quit IRC10:50
*** chandankumar has joined #openstack-zaqar10:51
*** exploreshaifali has quit IRC12:12
*** chandankumar has quit IRC12:35
*** dynarro has joined #openstack-zaqar13:08
*** sriram has joined #openstack-zaqar13:10
*** amitgandhinz has joined #openstack-zaqar13:31
*** mpanetta has joined #openstack-zaqar13:31
*** chandankumar has joined #openstack-zaqar13:43
*** kgriffs|afk is now known as kgriffs13:48
*** exploreshaifali has joined #openstack-zaqar14:09
*** cpallares has joined #openstack-zaqar14:16
flaper87vkmc: https://review.openstack.org/#/c/140155/ <- requirements14:31
flaper87flwang1: ping14:31
flaper87How's the notification thing going?14:31
vkmcflaper87, requirements are fixed14:31
vkmcflaper87, I'm not certain why its failing now14:32
flaper87o.014:32
flaper87I don't think they are14:33
flaper87it's still complaining14:33
vkmcautobahn is added, trollius was there14:33
flaper87vkmc: http://logs.openstack.org/55/140155/22/check/gate-zaqar-requirements/a4e1ad5/console.html#_2015-03-10_00_52_10_46214:33
vkmcI removed asyncio (will be added in a follow up)14:33
vkmcflaper87, and you are right14:33
flaper87:)14:33
vkmcwhy the gate shows a +1?14:34
vkmc:|14:34
*** achanda has joined #openstack-zaqar14:34
flaper87it doesn't14:34
flaper87There's no requirements row in the results table14:35
flaper87it's confusing, I agree14:35
vkmcok14:36
*** chandankumar has quit IRC14:39
exploreshaifalioh oh...... flaper87 around!!14:42
*** achanda has quit IRC14:43
exploreshaifaliflaper87, if you are not much busy please can we discuss the issue we are hitting right now in my current patch?14:43
exploreshaifalihttp://paste.openstack.org/show/190982/14:43
flaper87exploreshaifali: yup, lets do it14:46
flaper87my battery is dying but it should last long enough to sort things out14:46
exploreshaifaligreat!14:46
exploreshaifaliflaper87, can recharge the battery14:47
exploreshaifaliso the problem is pasted in above paste link14:47
flaper87exploreshaifali: do you have the link to your review handy?14:49
exploreshaifaliyup was searching that only https://review.openstack.org/#/c/144340/24/zaqar/storage/mongodb/messages.py14:49
exploreshaifaliL88614:49
exploreshaifali885*14:49
exploreshaifaliwe are initializing messageController using self.driver of messageQueueHandler14:49
exploreshaifalithis self.driver does not have mongodb_conf14:50
exploreshaifalijust to remind you, the driver of messageQueueHandler is coming from pipeline's dataDriver14:50
exploreshaifaliand pipeline's DataDriver get stroge_driver from bootstrap.py14:51
* exploreshaifali sending some gummy bears for flaper87 to recharge him14:56
exploreshaifali:P14:56
* flaper87 back14:58
flaper87exploreshaifali: mmh, but message_controller is a property, not a method14:59
flaper87ah nvm, 88515:00
flaper87ok15:00
*** cpallares has quit IRC15:00
flaper87this is a bit weird but I think expected.15:00
flaper87What's DataDriver ?15:00
flaper87I mean, what's the type15:00
exploreshaifaliflaper87, https://review.openstack.org/#/c/144340/24/zaqar/storage/mongodb/messages.py we are initializing MessageController instance15:02
exploreshaifaliwhich reside inside same module15:02
exploreshaifaliand MessageController's __init__() need it15:02
*** achanda has joined #openstack-zaqar15:03
flaper87exploreshaifali: you shouldn't be initializing the MessageController instance15:03
flaper87you need to access it through the message_controller property15:04
exploreshaifaliokay15:04
flaper87self.driver.message_controller15:04
exploreshaifaliamm.... but we don't have access to driver.message_controller15:04
exploreshaifalithat is why we have defined MessageQueueHandler15:04
exploreshaifaliif we can define self.driver.message_controller inside pipeline.py than  I think this problem can be solved15:05
exploreshaifaliflaper87, ^15:05
*** achanda has quit IRC15:05
flaper87why don't you have access to `message_controller` ?15:06
flaper87It's a property in the driver15:06
exploreshaifaliflaper87, its a property of storage/x/driver's DataDriver15:07
exploreshaifaliwhere x is mongdb for now15:07
exploreshaifalibut message_controller is not a property for DataDriver inside pipeline15:07
* exploreshaifali checking pipeline code15:08
flaper87how is that possible ?15:09
flaper87It's an abstract property15:09
flaper87therefore requested to create subclasses15:09
exploreshaifaliflaper87, okay so pipeline's DataDriver have message_controller15:09
exploreshaifalibut please check out https://review.openstack.org/#/c/144340/24/zaqar/storage/pipeline.py L13315:10
flaper87checking15:10
flaper87exploreshaifali: again, L108, control_driver should be *required*15:11
flaper87not a keyword15:11
flaper87exploreshaifali: what's up with L13315:11
flaper87I guess it gives you some issues because you're creating an instance of it15:11
flaper87and goes into an infinite loop15:12
exploreshaifaliokay15:12
exploreshaifalibut inside def message_controller(self): we are calling _get_builtin_entry_points(self._storage, self.control_driver)15:12
exploreshaifalithat goes to MessageQueueHandler15:12
flaper87exploreshaifali: could you try commenting the builtin stages load in that method for now15:12
flaper87we just need the pipeline for the queue controller now15:13
flaper87and the claim one15:13
exploreshaifaliokay!!15:13
exploreshaifaliso now I have got something to do15:13
exploreshaifali:D15:13
flaper87we'll improve that code soon, ok?15:13
flaper87lets get it working for now15:13
exploreshaifaliflaper87, yup sure :)15:14
exploreshaifaliflaper87, Thanks!!!15:14
flaper87exploreshaifali: thank YOU!15:14
flaper87also, pls, don't get stuck. if you've doubts and I'm not around, pls, feel free to email me15:14
flaper87or even better, just ping vkmc15:14
flaper87hahaha15:14
* exploreshaifali face palm 15:14
exploreshaifaliflaper87, okay!!!15:14
*** chandankumar has joined #openstack-zaqar15:17
*** boris-42 has quit IRC15:22
*** exploreshaifali has quit IRC15:31
*** boris-42 has joined #openstack-zaqar15:39
*** exploreshaifali has joined #openstack-zaqar16:07
*** dynarro has quit IRC16:11
*** dynarro has joined #openstack-zaqar16:15
*** kgriffs is now known as kgriffs|afk16:25
*** kgriffs|afk is now known as kgriffs16:37
*** kgriffs is now known as kgriffs|afk16:47
*** kgriffs|afk is now known as kgriffs17:08
*** kgriffs is now known as kgriffs|afk17:17
*** achanda has joined #openstack-zaqar17:19
*** achanda has quit IRC17:19
*** achanda has joined #openstack-zaqar17:19
*** dynarro has quit IRC17:32
*** achanda has quit IRC17:35
*** achanda has joined #openstack-zaqar17:37
*** kgriffs|afk is now known as kgriffs17:38
*** exploreshaifali has quit IRC18:02
*** ametts has quit IRC18:13
*** exploreshaifali has joined #openstack-zaqar18:44
*** kgriffs is now known as kgriffs|afk19:06
*** kgriffs|afk is now known as kgriffs19:09
*** kgriffs is now known as kgriffs|afk19:49
PrincessRiikkavkmc: You wouldn't happen to have an overly large number of Outreachy candidates lined up for your mentorship, would you?20:08
vkmcPrincessRiikka, hey there, why you ask?20:08
PrincessRiikkavkmc: Well, I was kindof hoping to get into Outreachy and one of your project ideas was one of my picks :)20:10
vkmcPrincessRiikka, that's cool! if you are interested, feel free to ask me anything20:11
PrincessRiikkavkmc: Well, I'm not sure what to do now that I've gotten a mentor to respond :P I also don't know if I'm supposed to have come to you with much Python experience.20:14
vkmcoh haha20:15
vkmcwell, first thing first20:15
vkmcare you interested in any project in particular? as I tell all the applicants, the ideas in the page just some ideas... but there are many project with really cool tasks20:15
vkmcif you are interested in some project for some reason (e.g., you like web design so you want to get involved with Horizon)20:16
vkmclet me know and I'll try to get a mentor for you in that area20:16
* sriram lurks20:16
vkmcsriram, :D20:17
sriramyou are doing hell of a job mentoring!20:17
sriramawesome sauce ;)20:17
vkmcohh thanks sriram, I'm really enjoying it!20:20
PrincessRiikkaI try to stay as far from web things as possible :-\ Web and I don't get along. I see mention of updating zaqar-pythonclien ("zaqar-pythonclient support for Zaqar API v1.1") t, though, and that sounds doable.20:21
PrincessRiikkaLet's pretend I didn't accidentally shift a 't' way off into the middle of nowhere :-\20:21
vkmcthat's cool20:22
exploreshaifalivkmc, will gonna Rock!!!20:22
exploreshaifali:D20:22
vkmcexploreshaifali, :D20:24
vkmcPrincessRiikka, so, if you are interested on Zaqar, let's set up the development environment for it20:25
vkmcPrincessRiikka, we generally use disposable virtual machines with Ubuntu 14.04 LTS or Fedora 2020:25
vkmcPrincessRiikka, generally OpenStack code have many dependencies and we want to keep things isolated20:25
PrincessRiikkavkmc: So, http://docs.openstack.org/developer/devstack/ ?20:29
vkmcPrincessRiikka, in the case of Zaqar... you can set up your environment manually or with DevStack20:30
vkmcPrincessRiikka, your call :)20:30
vkmcPrincessRiikka, if you can set DevStack... even better, that way you can interact with other OpenStack components as well20:31
openstackgerritAnna Ossowski proposed openstack/zaqar: Implements: help strings Closes-Bug: #1429401  https://review.openstack.org/16316820:34
openstackbug 1429401 in zaqar "Fix 'tox -e genconfig' warnings" [Low,New] https://launchpad.net/bugs/1429401 - Assigned to Anna Ossowski (ossanna16)20:34
*** kgriffs|afk is now known as kgriffs20:35
*** boris-42 has quit IRC20:42
*** PrincessRiikka has quit IRC20:51
*** akanksha has joined #openstack-zaqar20:56
*** PrincessRiikka has joined #openstack-zaqar21:08
PrincessRiikkaAaand now a hot dog wants me to help Fedora :-\21:15
kragniza beefy miracle?21:16
vkmchaha21:17
PrincessRiikkaI had no idea that was a thing21:19
vkmcits a dancing hotdog21:19
vkmcwhat's odd with it?21:19
PrincessRiikkaOdd? Oh, no, nothing. Dancing hot dogs trying to get people to contribute to OSS projects are /completely/ normal :P21:21
kragnizPrincessRiikka: I hope you've seen beefymiracle.org!21:21
PrincessRiikkakragniz: I just looked it up. I'm really not sure what to say :P I think I'm also missing some background on this subject :P21:22
*** boris-42 has joined #openstack-zaqar21:22
PrincessRiikkaRight, a link... I /could/ read about the Beefy Miracle while Fedora installs...21:23
PrincessRiikkaWell, there are some quality buns-Imean, puns involved, so I guess it's all good :P21:26
*** flwang has joined #openstack-zaqar21:42
*** flwang has quit IRC21:44
*** flwang has joined #openstack-zaqar21:44
*** chandankumar has quit IRC21:48
*** amitgandhinz has quit IRC22:14
*** amitgandhinz has joined #openstack-zaqar22:17
*** amitgandhinz has quit IRC22:19
*** mpanetta has quit IRC22:23
*** exploreshaifali has quit IRC22:27
*** sriram has quit IRC22:33
*** kgriffs is now known as kgriffs|afk22:34
*** flwang has quit IRC22:37
*** flwang has joined #openstack-zaqar22:38
*** flwang has quit IRC22:46
*** flwang has joined #openstack-zaqar22:54
openstackgerritRicardo Ferreira proposed openstack/zaqar: Syntax enhancements.  https://review.openstack.org/16322323:23
rsFFping vkmc23:29
vkmcping rsFF23:29
rsFFhi there23:29
rsFFcould you take a look23:29
rsFFat the patch and see if it seems OK23:30
rsFF:P23:30
vkmcsure, I'll do it when it pass the gates23:30
vkmcthanks for working on it23:30
rsFFkk23:32
*** miqui has joined #openstack-zaqar23:33
*** kgriffs|afk is now known as kgriffs23:34
*** amalagon has joined #openstack-zaqar23:57

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!