*** arif-ali has quit IRC | 00:00 | |
*** arif-ali has joined #heat | 00:04 | |
*** asalkeld has quit IRC | 00:04 | |
*** LiJiansheng has joined #heat | 00:12 | |
*** chuckC_ has quit IRC | 00:17 | |
*** asalkeld has joined #heat | 00:17 | |
*** kebray has quit IRC | 00:19 | |
*** cody-somerville has quit IRC | 00:23 | |
*** Drago has quit IRC | 00:25 | |
*** mixos has joined #heat | 00:27 | |
*** mixos is now known as mixos-away | 00:27 | |
*** mixos-away is now known as mixos | 00:28 | |
*** jruano has joined #heat | 00:29 | |
openstackgerrit | Miguel Grinberg proposed openstack/heat: Move extraroute resource in-tree https://review.openstack.org/186608 | 00:35 |
---|---|---|
*** pm90_ has quit IRC | 00:37 | |
*** sdake_ has quit IRC | 00:38 | |
*** sdake has joined #heat | 00:38 | |
*** dims_ has quit IRC | 00:42 | |
*** jruano has quit IRC | 00:44 | |
*** dims_ has joined #heat | 00:47 | |
*** pm90_ has joined #heat | 00:50 | |
*** tobe has joined #heat | 00:52 | |
*** pm90__ has joined #heat | 00:52 | |
*** sdake_ has joined #heat | 00:52 | |
*** pm90_ has quit IRC | 00:55 | |
*** sdake has quit IRC | 00:57 | |
*** Qiming has joined #heat | 00:57 | |
*** Qiming_ has joined #heat | 00:58 | |
*** vahidh has quit IRC | 00:59 | |
*** Qiming has quit IRC | 01:02 | |
*** gokrokve has joined #heat | 01:03 | |
*** LiJiansheng has quit IRC | 01:05 | |
*** LiJiansheng has joined #heat | 01:06 | |
*** pm90__ has quit IRC | 01:08 | |
*** huangtianhua has joined #heat | 01:10 | |
*** Qiming_ is now known as Qiming | 01:16 | |
*** huangtianhua has quit IRC | 01:16 | |
*** cody-somerville has joined #heat | 01:17 | |
*** sdake_ has quit IRC | 01:17 | |
*** sdake has joined #heat | 01:18 | |
openstackgerrit | Qiming Teng proposed openstack/heat: Squash Havana migration scripts https://review.openstack.org/186291 | 01:18 |
*** gokrokve has quit IRC | 01:20 | |
*** gokrokve has joined #heat | 01:20 | |
*** asalkeld has quit IRC | 01:21 | |
*** tobe has quit IRC | 01:22 | |
*** gokrokve has quit IRC | 01:25 | |
*** alanf-mc has quit IRC | 01:25 | |
*** alexpilotti has joined #heat | 01:28 | |
*** dims_ has quit IRC | 01:35 | |
*** asalkeld has joined #heat | 01:38 | |
*** alexpilotti has quit IRC | 01:38 | |
*** dims_ has joined #heat | 01:39 | |
openstackgerrit | Merged openstack/heat: Removes deprecated metadata property from Resource class https://review.openstack.org/174360 | 01:43 |
openstackgerrit | Merged openstack/heat: Delete deprecated old-style client access https://review.openstack.org/185049 | 01:43 |
openstackgerrit | Merged openstack/heat: Avoid crash when registering resources https://review.openstack.org/186237 | 01:43 |
*** dims_ has quit IRC | 01:45 | |
*** erkules_ has joined #heat | 01:46 | |
*** erkules has quit IRC | 01:49 | |
*** erkules_ has quit IRC | 01:51 | |
*** tobe has joined #heat | 01:52 | |
*** erkules_ has joined #heat | 01:53 | |
*** Yanyanhu has joined #heat | 01:54 | |
*** huangtianhua has joined #heat | 02:01 | |
*** john-n-s| has quit IRC | 02:16 | |
*** rwsu has quit IRC | 02:25 | |
*** jruano has joined #heat | 02:35 | |
*** jruano has quit IRC | 02:36 | |
*** sdake_ has joined #heat | 02:40 | |
*** sdake has quit IRC | 02:43 | |
*** sdake has joined #heat | 02:43 | |
*** sdake_ has quit IRC | 02:47 | |
openstackgerrit | Merged openstack/heat: Stop monkey-patching global namespace https://review.openstack.org/186362 | 02:58 |
*** mwheckmann has joined #heat | 03:01 | |
*** barra204 has quit IRC | 03:11 | |
*** barra204 has joined #heat | 03:13 | |
*** liusheng has quit IRC | 03:27 | |
*** Qiming_ has joined #heat | 03:43 | |
*** Qiming has quit IRC | 03:43 | |
*** Qiming__ has joined #heat | 03:44 | |
*** Qiming__ is now known as Qiming | 03:44 | |
*** Qiming_ has quit IRC | 03:47 | |
*** achanda has joined #heat | 03:53 | |
*** steveg_afk has joined #heat | 03:57 | |
sdake | asalkeld awake? | 03:58 |
sdake | or stevebaker? :) | 03:58 |
*** achanda has quit IRC | 04:05 | |
*** achanda has joined #heat | 04:06 | |
*** mwheckmann has quit IRC | 04:08 | |
*** achanda has quit IRC | 04:11 | |
asalkeld | hi sdake | 04:17 |
sdake | sup asalkeld | 04:17 |
sdake | I was going to ask you a code question | 04:17 |
asalkeld | sure | 04:17 |
sdake | but I think someone in #magnum figured it out | 04:17 |
sdake | but i'll ask anyway | 04:17 |
sdake | I have a variable which contains a string of type str, int , long etc | 04:17 |
sdake | I want to instantiate an object with a value based upon the variable name | 04:17 |
*** mixos has left #heat | 04:18 | |
sdake | eg, if variable = dict, I want it to do dict(value) | 04:18 |
sdake | and not use eval() | 04:18 |
sdake | all I can find on the internets is to use globals() | 04:18 |
sdake | which seems... | 04:18 |
sdake | dirty like zebra | 04:18 |
asalkeld | maybe the inspect module? | 04:19 |
asalkeld | http://stackoverflow.com/questions/592746/how-can-you-print-a-variable-name-in-python | 04:20 |
sdake | you would think you could do var(value) | 04:20 |
asalkeld | sdake: ^ | 04:20 |
sdake | reading through that doesnt' look like it solves the problem | 04:21 |
sdake | var = "str" | 04:22 |
sdake | value = "groan" | 04:22 |
sdake | a = str('groan') is what I want | 04:22 |
sdake | so I try a = var('groan') | 04:22 |
sdake | that doesn't work | 04:22 |
asalkeld | no easy answer here | 04:23 |
sdake | ya thought so | 04:23 |
sdake | globals it is ! :) | 04:23 |
sdake | I've got that working | 04:23 |
sdake | our newest magnum core sorted out how to do it without globals | 04:24 |
sdake | I'll paste the review once she has it up so you can see what she did :) | 04:24 |
*** sdake_ has joined #heat | 04:29 | |
*** sdake has quit IRC | 04:33 | |
*** tobe has quit IRC | 04:52 | |
*** rakesh_hs has joined #heat | 04:56 | |
*** Raj1 has joined #heat | 04:58 | |
*** achanda has joined #heat | 05:05 | |
*** KanagarajM has joined #heat | 05:09 | |
*** tsandall has quit IRC | 05:12 | |
*** tspatzier has joined #heat | 05:13 | |
*** ashishjain has joined #heat | 05:13 | |
*** Raj1 has quit IRC | 05:14 | |
*** nkhare has joined #heat | 05:14 | |
*** tobe has joined #heat | 05:14 | |
*** tsandall has joined #heat | 05:15 | |
*** ishant has joined #heat | 05:21 | |
*** cody-somerville has quit IRC | 05:23 | |
*** vijayagurug has joined #heat | 05:29 | |
*** tsandall has quit IRC | 05:42 | |
openstackgerrit | Ishant Tyagi proposed openstack/heat: Update wsgi.py to support reload from conf on SIGHUP https://review.openstack.org/184768 | 05:42 |
openstackgerrit | Ishant Tyagi proposed openstack/heat: Update wsgi.py to support reload from conf on SIGHUP https://review.openstack.org/184768 | 05:44 |
*** sdake has joined #heat | 05:46 | |
*** tobe has quit IRC | 05:47 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat-specs: Monasca resource plugin for Alarm and Notification https://review.openstack.org/174262 | 05:47 |
*** sdake_ has quit IRC | 05:50 | |
*** hdd has quit IRC | 05:56 | |
*** multi_io has quit IRC | 06:00 | |
*** multi_io has joined #heat | 06:02 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/heat: Imported Translations from Transifex https://review.openstack.org/186275 | 06:04 |
*** cody-somerville has joined #heat | 06:09 | |
*** jtomasek has joined #heat | 06:13 | |
*** tobe has joined #heat | 06:15 | |
*** nihilifer has joined #heat | 06:18 | |
*** ashish123 has joined #heat | 06:20 | |
*** ashishjain has quit IRC | 06:23 | |
*** hdd has joined #heat | 06:24 | |
*** Murali has joined #heat | 06:24 | |
*** jprovazn has joined #heat | 06:25 | |
*** jfluhmann has joined #heat | 06:26 | |
*** ashish123 has quit IRC | 06:35 | |
*** ashishjain has joined #heat | 06:36 | |
openstackgerrit | Yanyan Hu proposed openstack/heat: Fix a bug about unexpected ASG scaling https://review.openstack.org/186659 | 06:41 |
*** e0ne has joined #heat | 06:42 | |
*** e0ne has quit IRC | 06:49 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Convergence resource operations https://review.openstack.org/163132 | 06:52 |
*** ananta_ has joined #heat | 06:53 | |
*** huangtianhua has quit IRC | 06:58 | |
*** huangtianhua has joined #heat | 06:58 | |
*** ifarkas has joined #heat | 06:59 | |
*** hdd has quit IRC | 07:08 | |
*** BManojlovic has joined #heat | 07:09 | |
openstackgerrit | Merged openstack/python-heatclient: Add --tags option to stack-create and stack-update https://review.openstack.org/183680 | 07:17 |
*** gcivitella has joined #heat | 07:20 | |
*** achanda has quit IRC | 07:22 | |
*** erkules_ is now known as erkules | 07:22 | |
*** erkules has joined #heat | 07:22 | |
openstackgerrit | Yanyan Hu proposed openstack/heat: Fix a bug about unexpected ASG scaling https://review.openstack.org/186659 | 07:22 |
*** pbrooko has joined #heat | 07:26 | |
*** ananta_ has quit IRC | 07:30 | |
openstackgerrit | Sergey Kraynev proposed openstack/heat: Add functional test for neutron port https://review.openstack.org/178189 | 07:35 |
*** jistr has joined #heat | 07:38 | |
*** achanda has joined #heat | 07:44 | |
*** alexheneveld has joined #heat | 07:44 | |
*** shardy has joined #heat | 07:50 | |
sdake | asalkeld this is what I ended up with https://review.openstack.org/#/c/186287/ | 07:51 |
sdake | isn't it grand? | 07:51 |
* sdake groans | 07:51 | |
*** sdake_ has joined #heat | 07:55 | |
openstackgerrit | Ishant Tyagi proposed openstack/heat: Update wsgi.py to support reload from conf on SIGHUP https://review.openstack.org/184768 | 07:55 |
sdake_ | shardy you around | 07:58 |
shardy | sdake_: Hey, yup | 07:59 |
shardy | how's it going? | 07:59 |
sdake_ | shardy do you see a way to optimzie this patch | 07:59 |
*** sdake has quit IRC | 07:59 | |
sdake_ | https://review.openstack.org/#/c/186287/ | 07:59 |
sdake_ | good super busy | 07:59 |
sdake_ | have 2 presentations a day on magnum or kolla internally | 07:59 |
shardy | looking | 07:59 |
sdake_ | everyone at csco in love with containers ! :) | 08:00 |
sdake_ | hot new hotness | 08:00 |
shardy | sdake_: I get the appeal, I'm really excited by the containerized TripleO work building on what you guys are doing :) | 08:01 |
shardy | sdake_: at some point, I'd like to explore what happens if you need to upgrade the container host on upgrade | 08:01 |
sdake_ | maybe when its not 1am and i haven't been going since 5am I can think about that :) | 08:01 |
shardy | e.g what happens if theres a kernel vulnerability in the box running the docker host? | 08:01 |
shardy | sdake_: sure :) | 08:02 |
*** pas-ha has joined #heat | 08:02 | |
sdake_ | i'll add to my notes to get back to you on it | 08:02 |
shardy | it was something which kept coming up in my discussions re containers as a "hard problem" that they don't solve, and we have no good answer for atm | 08:02 |
pas-ha | morning all | 08:02 |
sdake_ | magnum solves it | 08:02 |
sdake_ | we isolate via vms | 08:02 |
sdake_ | vms are super secure | 08:02 |
sdake_ | so that patch | 08:03 |
sdake_ | any way to convert strings to literals objects? | 08:03 |
sdake_ | I couldn't find anything | 08:03 |
sdake_ | on the internets | 08:03 |
sdake_ | the old code used eval | 08:05 |
sdake_ | which is evil | 08:05 |
sdake_ | eval ('rm -rf /') | 08:05 |
sdake_ | not ideal | 08:05 |
shardy | sdake_: Heh, yeah clearly this is better than eval, there must be a way to lose those branches though, let me try a few things | 08:05 |
sdake_ | if you think of anything can you add to the review | 08:06 |
sdake_ | I need to hit the rack | 08:06 |
shardy | sdake_: sure, will do, ttyl | 08:06 |
sdake_ | I tried globals() I tried locals() | 08:06 |
sdake_ | I couldn't access the literals | 08:06 |
sdake_ | ast has some literal eval feature | 08:06 |
sdake_ | but also need to create objects on the fly | 08:07 |
sdake_ | that are not literals but classes in the system (under the module load location) | 08:07 |
sdake_ | those are in list[v1beta3PodStatus] for example | 08:07 |
sdake_ | thats what the regex is about | 08:07 |
shardy | http://stackoverflow.com/questions/9522627/get-built-in-function-from-the-function-name | 08:07 |
sdake_ | btw, whoever invented swagger, fired | 08:07 |
shardy | that appears to work | 08:07 |
shardy | getattr(__builtin__, "str") | 08:08 |
shardy | so you could have a nested function or lambda doing that? | 08:08 |
shardy | not sure if six can paper over the py2/3 difference there | 08:08 |
sdake_ | that is py3 only right? | 08:08 |
sdake_ | I thnk we want to run on py27 | 08:09 |
shardy | No it works on both but the syntax is different | 08:09 |
shardy | I just tested on py27 | 08:09 |
sdake_ | cool | 08:09 |
shardy | import __builtin__ | 08:09 |
sdake_ | well I'll check that model out in the morning | 08:09 |
sdake_ | but I guess if the current code works I'll probablyl keep it | 08:09 |
sdake_ | this code is temporary sinc its autogeneated | 08:09 |
sdake_ | we are going to human generate it when kubernetes releases the v1 api | 08:10 |
shardy | sdake_: If I get a chance later I'll post on the review with an alternate implementation | 08:10 |
sdake_ | sounds good | 08:11 |
sdake_ | the autogenerated code used eval | 08:11 |
sdake_ | bunch of fail swagger is | 08:12 |
sdake_ | swagger is strong wit he fail | 08:12 |
sdake_ | have I told you I didn't like swagger yet? | 08:12 |
shardy | haha :) | 08:12 |
*** dims_ has joined #heat | 08:12 | |
*** ananta_ has joined #heat | 08:14 | |
*** ricolin has quit IRC | 08:15 | |
*** sdake_ has quit IRC | 08:17 | |
*** dims_ has quit IRC | 08:18 | |
*** ananta_ has quit IRC | 08:20 | |
*** yassine_ has joined #heat | 08:21 | |
*** tobe has quit IRC | 08:23 | |
*** derekh has joined #heat | 08:23 | |
openstackgerrit | Qiming Teng proposed openstack/heat: Split engine service test cases (5) https://review.openstack.org/186673 | 08:24 |
*** tobe has joined #heat | 08:29 | |
*** achanda has quit IRC | 08:35 | |
*** ashishjain has quit IRC | 08:48 | |
*** prazumovsky has joined #heat | 08:48 | |
*** achanda has joined #heat | 08:48 | |
*** ricolin has joined #heat | 08:52 | |
*** bdossant has joined #heat | 08:58 | |
therve | It'd be cool to get some review on https://review.openstack.org/#/c/171527/ (oslo policy stuff) | 09:00 |
openstackgerrit | Thomas Herve proposed openstack/heat: Switch to oslo.policy https://review.openstack.org/171527 | 09:01 |
*** achanda has quit IRC | 09:02 | |
shardy | therve: lgtm! | 09:14 |
bdossant | shardy: ryansb: can you build the heat-cfntools package version 1.3.0 for epel 6 and 7? | 09:15 |
bdossant | or can i be added to the maintainers of that? | 09:16 |
shardy | bdossant: Hi, sure one of us can look at building that later today | 09:20 |
shardy | bdossant: you can request admin access via https://admin.fedoraproject.org/pkgdb/package/heat-cfntools/ | 09:20 |
bdossant | that would be great | 09:20 |
openstackgerrit | Merged openstack/python-heatclient: Adds --format=log option to event-list https://review.openstack.org/184940 | 09:20 |
bdossant | its weird but rdo didnt include heat-cfntools on their kilo repo | 09:22 |
*** lee__ has joined #heat | 09:29 | |
*** Yanyanhu has quit IRC | 09:31 | |
*** LiJiansheng has quit IRC | 09:31 | |
*** LiJiansheng has joined #heat | 09:37 | |
openstackgerrit | Ishant Tyagi proposed openstack/heat-cfntools: Fix typos in cfn scripts https://review.openstack.org/186695 | 09:37 |
*** lee__ has quit IRC | 09:39 | |
*** LiJiansheng has quit IRC | 09:45 | |
*** KanagarajM has quit IRC | 09:48 | |
therve | So according to bug #1455421 watchrule has been broken for about 3 releases | 09:48 |
openstack | bug 1455421 in heat "Heat could not create samples with Ceilometer" [Undecided,In progress] https://launchpad.net/bugs/1455421 - Assigned to Rico Lin (rico-lin) | 09:48 |
therve | Nobody uses that? | 09:48 |
*** ananta_ has joined #heat | 09:50 | |
*** dims_ has joined #heat | 09:51 | |
openstackgerrit | Merged openstack/heat: Save snapshot to db before stack snapshot complete https://review.openstack.org/184769 | 09:51 |
*** jprovazn has quit IRC | 09:56 | |
*** Qiming has quit IRC | 10:03 | |
openstackgerrit | Peter Razumovsky proposed openstack/python-heatclient: Add tests for SessionClient https://review.openstack.org/178985 | 10:05 |
openstackgerrit | Peter Razumovsky proposed openstack/python-heatclient: Move usage methods *_request to get/post/etc https://review.openstack.org/175403 | 10:05 |
openstackgerrit | Peter Razumovsky proposed openstack/python-heatclient: Move SessionClient from HTTPClient to adapter https://review.openstack.org/163484 | 10:06 |
*** bvivek has joined #heat | 10:07 | |
*** bvivek has quit IRC | 10:08 | |
*** pbrooko has quit IRC | 10:10 | |
*** pbrooko has joined #heat | 10:11 | |
*** pbrooko_ has joined #heat | 10:13 | |
*** pbrooko_ has quit IRC | 10:14 | |
*** pbrooko has quit IRC | 10:14 | |
*** pbrooko has joined #heat | 10:15 | |
*** gfidente has joined #heat | 10:15 | |
*** pbrooko has quit IRC | 10:16 | |
*** pbrooko has joined #heat | 10:16 | |
*** pbrooko has quit IRC | 10:16 | |
*** pbrooko has joined #heat | 10:18 | |
*** pbrooko has quit IRC | 10:18 | |
*** ananta_ has quit IRC | 10:20 | |
*** pbrooko has joined #heat | 10:21 | |
*** pbrooko has quit IRC | 10:22 | |
openstackgerrit | Kairat Kushaev proposed openstack/heat: Backup new resource as soon as possible https://review.openstack.org/184026 | 10:22 |
*** pbrooko has joined #heat | 10:22 | |
openstackgerrit | Merged openstack/heat: Heat could not create samples with Ceilometer https://review.openstack.org/183901 | 10:27 |
*** pbrooko has quit IRC | 10:27 | |
*** pbrooko has joined #heat | 10:27 | |
*** achanda has joined #heat | 10:28 | |
*** gfidente has left #heat | 10:29 | |
openstackgerrit | Sirushti Murugesan proposed openstack/heat: Remove PROTOTYPE support status https://review.openstack.org/186705 | 10:34 |
*** ananta_ has joined #heat | 10:36 | |
openstackgerrit | Ishant Tyagi proposed openstack/heat-cfntools: Add --insecure/-k option to cfn-signal https://review.openstack.org/186707 | 10:40 |
openstackgerrit | Merged openstack/heat: Switch to oslo.policy https://review.openstack.org/171527 | 10:45 |
*** dims_ has quit IRC | 10:52 | |
*** jprovazn has joined #heat | 10:55 | |
*** ishant has quit IRC | 10:59 | |
*** pbrooko has quit IRC | 11:03 | |
*** yassine_ has quit IRC | 11:11 | |
openstackgerrit | Kairat Kushaev proposed openstack/heat: Backup new resource as soon as possible https://review.openstack.org/184026 | 11:15 |
openstackgerrit | Pavlo Shchelokovskyy proposed openstack/heat: Move check_active to nova client plugin https://review.openstack.org/186063 | 11:22 |
*** Qiming has joined #heat | 11:27 | |
*** vijayagurug has quit IRC | 11:29 | |
*** pbrooko has joined #heat | 11:36 | |
*** tobe has quit IRC | 11:39 | |
openstackgerrit | Pavlo Shchelokovskyy proposed openstack/heat: Do not pass rich objects in server's suspend https://review.openstack.org/186424 | 11:40 |
*** EricGonczer_ has joined #heat | 11:45 | |
*** rpothier has joined #heat | 11:46 | |
openstackgerrit | Pavlo Shchelokovskyy proposed openstack/heat: Move check_active to nova client plugin https://review.openstack.org/186063 | 11:47 |
openstackgerrit | Pavlo Shchelokovskyy proposed openstack/heat: Do not pass rich objects in server's suspend https://review.openstack.org/186424 | 11:47 |
openstackgerrit | Peter Razumovsky proposed openstack/heat-specs: Improvements in deprecation process https://review.openstack.org/153235 | 11:47 |
openstackgerrit | Pavlo Shchelokovskyy proposed openstack/heat: Do not pass rich objects on server's resume https://review.openstack.org/186363 | 11:47 |
*** dims_ has joined #heat | 11:50 | |
*** tspatzier has quit IRC | 11:53 | |
*** rakesh_hs_ has joined #heat | 11:53 | |
*** rakesh_hs has quit IRC | 11:56 | |
*** tspatzier has joined #heat | 11:56 | |
*** rakesh_hs_ has quit IRC | 12:00 | |
*** BManojlovic has quit IRC | 12:00 | |
*** achanda has quit IRC | 12:07 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Improve StackValidationFailed resp param_groups https://review.openstack.org/186731 | 12:09 |
*** tobe has joined #heat | 12:13 | |
*** tobe has quit IRC | 12:14 | |
*** prazumovsky has quit IRC | 12:15 | |
*** blomquisg has quit IRC | 12:15 | |
*** steveg_afk has quit IRC | 12:26 | |
openstackgerrit | Merged openstack/heat: Add note on Barbican Order's order_ref structure https://review.openstack.org/185435 | 12:28 |
*** vijayagurug has joined #heat | 12:28 | |
*** bdossant_ has joined #heat | 12:33 | |
*** bdossant has quit IRC | 12:35 | |
*** yassine_ has joined #heat | 12:38 | |
*** EricGonczer_ has quit IRC | 12:44 | |
therve | Qiming, I commented on https://review.openstack.org/#/c/186659/ interested in what you think | 12:44 |
Qiming | thanks, therve, will discuss with Yanyan how to make it right | 12:45 |
*** ashishjain has joined #heat | 12:46 | |
ashishjain | can someone suggest if using heat templates I can attach a storage to nova server. | 12:47 |
ashishjain | Here nova server is using docker containers instead of vm | 12:47 |
Qiming | ashishjain, so you are using nova-docker? | 12:48 |
ashishjain | Qiming: yes | 12:48 |
Qiming | some of my coworkers spent a lot time hacking nova-docker to enable volume support | 12:48 |
*** nkhare has quit IRC | 12:49 | |
ashishjain | Qiming : ohh wow | 12:49 |
ashishjain | Qiming: Were they successful? | 12:50 |
Qiming | well, I'm not quite familar with that work | 12:50 |
Qiming | but I do know they succeeded in attaching Manila shares to docker container | 12:50 |
Qiming | the goal was to support SPARK applications | 12:51 |
ashishjain | Qiming: So does Manila provide a persistent storage. Can it be used through heat templates? | 12:52 |
Qiming | yes, ashishjain, the app was deployed using Heat templates | 12:52 |
ashishjain | Qiming: Manila is for distributed storage | 12:53 |
Qiming | right, that is what SPARK is about | 12:53 |
ashishjain | Qiming: Are there any samples available which I could follow? | 12:53 |
Qiming | ashishjain, drop me an email, I can point you to the person working on it | 12:53 |
*** karolyn has left #heat | 12:54 | |
ashishjain | Qiming: thanks a lot for your help. What is your email address? | 12:54 |
*** radez_g0n3 is now known as radez | 12:54 | |
Qiming | tengqim@cn.ibm.com | 12:54 |
ashishjain | Qiming: aah you from IBM...I am an ex-ibmer too :)... | 12:55 |
ashishjain | Qiming: I will send you a note | 12:55 |
Qiming | okay | 12:55 |
ashishjain | sent , my email address is : jain.ashish31@gmail.com | 12:58 |
*** pm90_ has joined #heat | 13:05 | |
*** pm90_ has quit IRC | 13:06 | |
*** pm90_ has joined #heat | 13:07 | |
*** yassine_ has quit IRC | 13:12 | |
*** yassine_ has joined #heat | 13:12 | |
*** yassine_ has quit IRC | 13:13 | |
*** Tross1 has quit IRC | 13:13 | |
*** yassine_ has joined #heat | 13:13 | |
*** achanda has joined #heat | 13:14 | |
*** dyasny has joined #heat | 13:21 | |
*** blomquisg has joined #heat | 13:22 | |
*** pm90_ has quit IRC | 13:25 | |
*** vijayagurug has left #heat | 13:26 | |
*** pm90_ has joined #heat | 13:26 | |
*** nihilifer has quit IRC | 13:32 | |
*** nihilifer has joined #heat | 13:37 | |
*** Yanyanhu has joined #heat | 13:39 | |
*** Yanyanhu has quit IRC | 13:39 | |
*** dyasny has quit IRC | 13:45 | |
*** gokrokve has joined #heat | 13:45 | |
*** Tross has joined #heat | 13:45 | |
*** gokrokve has quit IRC | 13:45 | |
*** gokrokve has joined #heat | 13:46 | |
*** mixos has joined #heat | 13:49 | |
*** bdossant_ has quit IRC | 13:52 | |
*** bdossant has joined #heat | 13:52 | |
*** mwheckmann has joined #heat | 13:54 | |
*** mixos has quit IRC | 13:56 | |
*** Murali has quit IRC | 13:58 | |
*** jfluhmann has quit IRC | 14:04 | |
*** maximov has joined #heat | 14:05 | |
*** htruta has quit IRC | 14:06 | |
*** achanda has quit IRC | 14:10 | |
*** tspatzier has quit IRC | 14:11 | |
*** bdossant has quit IRC | 14:12 | |
*** cody-somerville has quit IRC | 14:13 | |
*** crose has joined #heat | 14:13 | |
*** dims_ has quit IRC | 14:16 | |
*** pitr-ch has joined #heat | 14:17 | |
openstackgerrit | Yanyan Hu proposed openstack/heat: Fix a bug about unexpected ASG scaling https://review.openstack.org/186659 | 14:18 |
*** sjmc7 has joined #heat | 14:19 | |
*** bdossant has joined #heat | 14:23 | |
*** htruta has joined #heat | 14:25 | |
*** jistr has quit IRC | 14:26 | |
*** ashishjain has quit IRC | 14:30 | |
*** cody-somerville has joined #heat | 14:31 | |
bdossant | shardy: just convinced the guys from rdo to push heat-cfntools to kilo :) http://cbs.centos.org/koji/buildinfo?buildID=1283 they have forgotten | 14:32 |
*** vijendar has joined #heat | 14:35 | |
*** vijendar has quit IRC | 14:35 | |
shardy | bdossant: ha, yeah I just saw a build got kicked off :) | 14:35 |
* shardy didn't do anything.. | 14:36 | |
*** vijendar has joined #heat | 14:36 | |
bdossant | :) | 14:36 |
shardy | bdossant: I'll check in later & ensure things are all pushed as needed, I've not had time to get to it yet | 14:36 |
*** kebray has joined #heat | 14:36 | |
*** kebray has quit IRC | 14:37 | |
*** kebray has joined #heat | 14:37 | |
*** pbrooko has quit IRC | 14:44 | |
openstackgerrit | Yanyan Hu proposed openstack/heat: Fix a bug about unexpected ASG scaling https://review.openstack.org/186659 | 14:44 |
*** alexheneveld has quit IRC | 14:45 | |
*** sdake has joined #heat | 14:46 | |
*** Yanyanhu has joined #heat | 14:46 | |
*** jistr has joined #heat | 14:47 | |
*** Yanyanhu has left #heat | 14:49 | |
*** ananta_ has quit IRC | 14:52 | |
*** jruano has joined #heat | 14:53 | |
bdossant | shardy: ok thanks | 14:56 |
*** dyasny has joined #heat | 14:57 | |
*** EricGonczer_ has joined #heat | 14:59 | |
*** jasond has joined #heat | 15:00 | |
*** achanda has joined #heat | 15:00 | |
*** hdd has joined #heat | 15:05 | |
*** EricGonczer_ has quit IRC | 15:06 | |
*** jprovazn has quit IRC | 15:07 | |
*** EricGonczer_ has joined #heat | 15:09 | |
*** ananta_ has joined #heat | 15:13 | |
bdossant | shardy: do you know why on heat.conf we need to have auth_uri /v2.0 to use v3, domains, etc? | 15:15 |
*** Qiming has quit IRC | 15:16 | |
*** dims_ has joined #heat | 15:16 | |
*** Raj1 has joined #heat | 15:17 | |
*** alexheneveld has joined #heat | 15:20 | |
*** sabeen has joined #heat | 15:23 | |
*** sdake_ has joined #heat | 15:26 | |
*** sabeen2 has joined #heat | 15:26 | |
*** nihilifer has quit IRC | 15:27 | |
*** ifarkas has quit IRC | 15:28 | |
*** tsandall has joined #heat | 15:28 | |
*** Raj1 has quit IRC | 15:29 | |
*** sdake has quit IRC | 15:30 | |
*** sabeen has quit IRC | 15:30 | |
therve | bdossant, Historical reasons | 15:32 |
therve | /v3 should work, though? | 15:32 |
*** vijayagurug has joined #heat | 15:33 | |
bdossant | well it works but its kinda misleading when you have to put in the config specifically 2.0 when you know you want to use v3 | 15:34 |
bdossant | i just lost an afternoon dubugging this lol | 15:35 |
bdossant | and some ssl problems as well :) | 15:35 |
therve | bdossant, I mean putting /v3 should work | 15:37 |
bdossant | yeah i tested it also works haha | 15:37 |
sdake_ | shardy morning still awake? | 15:38 |
bdossant | you are right | 15:38 |
*** vijayagurug has left #heat | 15:38 | |
sdake_ | zaneb around? | 15:38 |
zaneb | hey | 15:39 |
sdake_ | zaneb mind offering a bit of consulting :) | 15:39 |
sdake_ | https://review.openstack.org/#/c/186287/22/magnum/common/pythonk8sclient/client/swagger.py | 15:39 |
zaneb | what does it pay? ;) | 15:39 |
zaneb | coincidentally I was just looking at that | 15:39 |
sdake_ | my thanks and gratitude and hero worship of how well you know python :) | 15:39 |
sdake_ | so shardy says to use "if literal:" | 15:40 |
sdake_ | why the if? | 15:40 |
zaneb | lol | 15:40 |
zaneb | the first comment you mean? | 15:40 |
sdake_ | I'm getting there - 3 years in - feel intermediate skill level | 15:40 |
sdake_ | the oen from shardy | 15:40 |
sdake_ | he says "if literal: setattr | 15:40 |
sdake_ | I dont get why the conditional is needed | 15:41 |
sdake_ | why not just call the setattr straight away | 15:41 |
zaneb | oh, the second comment | 15:41 |
sdake_ | oh sorry the second comment | 15:41 |
sdake_ | right | 15:41 |
*** bdossant_ has joined #heat | 15:41 | |
sdake_ | 20 patch sets for somethign so simple :) | 15:41 |
*** lkarm has joined #heat | 15:41 | |
*** bdossant has quit IRC | 15:41 | |
* sdake_ too old to write code I guess | 15:41 | |
shardy | sdake_: hey | 15:42 |
zaneb | getattr(builtins, obj_type) will return None if obj_type is not a built-in type | 15:42 |
sdake_ | oh hey shardy | 15:42 |
*** Drago has joined #heat | 15:42 | |
*** Drago has quit IRC | 15:42 | |
sdake_ | zaneb I am going to validate the obj typs and make sure they are literals | 15:42 |
*** Drago has joined #heat | 15:42 | |
sdake_ | but that makes sense | 15:42 |
zaneb | hmm, actually it won't | 15:42 |
zaneb | it'll raise an exception | 15:42 |
zaneb | so prev line should be "builtin_type = getattr(builtins, obj_type, None)" | 15:43 |
sdake_ | I am going to do something like if obj_type in ['str', 'dict', ...] | 15:43 |
shardy | Yeah I expected there to be a try/catch block in there somewhere | 15:43 |
zaneb | even better, do types = {'str': six.texttype, 'dict': dict, ...} | 15:44 |
zaneb | then its types.get(objtype, None) | 15:44 |
sdake_ | zaenb I ahd thought of that actually | 15:44 |
sdake_ | but it was 2am | 15:45 |
sdake_ | and I needed more minerals :) | 15:45 |
sdake_ | I like that better then importing six for literals - shardy thoughts? | 15:45 |
zaneb | none of this addresses the real question though | 15:46 |
sdake_ | which is? | 15:46 |
zaneb | which is: why do you have your own JSON deserialiser??? | 15:46 |
sdake_ | autogenerated code | 15:46 |
*** mixos has joined #heat | 15:46 | |
*** mixos is now known as mixos-away | 15:46 | |
shardy | lol | 15:46 |
sdake_ | dont get me started | 15:46 |
sdake_ | i nerd raged all night last night about it | 15:46 |
sdake_ | i want to have a hppy day today :) | 15:47 |
shardy | sdake_: honestly I don't have a strong opinion, other than the "if not v" is probably going to do the wrong thing | 15:47 |
sdake_ | in essence kubernetes has a rest API, they expect people to write language bindings using something called "swagger" which is a code generator | 15:47 |
shardy | the approach I suggested is probably one of several ways to make it a bit terser, which I thought was what you were trying to do :) | 15:47 |
*** mixos-away is now known as mixos | 15:48 | |
sdake_ | the swagger code generator produces a slew of objects and then serializes/deserializes them into urllib calls | 15:48 |
sdake_ | based upon reading the /v1/swagger api endpoint in kubernetes | 15:48 |
sdake_ | ya, terrible idea | 15:48 |
sdake_ | code shoudl be written by humans not machines | 15:48 |
zaneb | sdake_: but seriously, why not inherit from json.JSONDecoder and just override the parts you need? or even use the object_hook parameter to do your own extra interpretation | 15:49 |
zaneb | "object_hook, if specified, will be called with the result of every JSON object decoded and its return value will be used in place of the given dict. This can be used to provide custom deserializations (e.g. to support JSON-RPC class hinting)." | 15:49 |
zaneb | it's not even hacky | 15:49 |
sdake_ | the crux of the problem is the deserialize function that swagger peopel wrote uses eval | 15:49 |
sdake_ | which is insecure | 15:49 |
*** dims_ is now known as dimsum__ | 15:49 | |
sdake_ | zaneb that hadn't even entered my thought patterns :) | 15:50 |
zaneb | meh, the way they were using it was not any less secure than what you're doing | 15:50 |
*** daneyon has joined #heat | 15:50 | |
sdake_ | my implementation is insecure? | 15:50 |
zaneb | but writing your own JSONDecoder is insane imho | 15:50 |
zaneb | not that I can see | 15:51 |
sdake_ | does JSONDecoder import objects and build them? | 15:51 |
zaneb | but e.g. eval('int') is not insecure | 15:51 |
sdake_ | one of the thigns we have to deal with is one of the strings we have to deal with is 'list[objectname]" | 15:51 |
zaneb | they were whitelisting things that could be eval'd | 15:51 |
sdake_ | ya I agree perhaps their implementation wasn't insecure | 15:52 |
zaneb | eval is insecure if you use it to eval user-supplied data without checking | 15:52 |
sdake_ | our bandit gate is not intelligent about eval whitelisting | 15:52 |
zaneb | fair enough | 15:52 |
*** daneyon_ has joined #heat | 15:53 | |
sdake_ | security people see eval and they implode :) | 15:53 |
sdake_ | i'll look into JSONDecoder (rtfm) later - have meeting now | 15:53 |
zaneb | it was pretty gratuitous imo, given that they could have just written {'int': int, ...} | 15:53 |
sdake_ | their code was terrible | 15:53 |
sdake_ | mine better :) | 15:53 |
zaneb | agree | 15:54 |
sdake_ | I dont want to spend alot of time on this code - we are writing our own python k8s cient in the future from scratch | 15:54 |
zaneb | impl is better, but idea is still terrible though imho | 15:54 |
bdossant_ | heat.engine.stack [-] Stack CREATE FAILED (server11): Resource CREATE failed: SSLError: SSL exception connecting to https://keystonedev/main/v3/auth/tokens?nocatalog | 15:54 |
bdossant_ | does anyone know a way to bypass this? | 15:54 |
bdossant_ | some insecure flag that i can trigger | 15:55 |
zaneb | bdossant_: change auth endpoint to http maybe? | 15:55 |
sdake_ | zaneb shardy thanks guys for your pythonic expertise :) | 15:55 |
therve | bdossant_, Or set the cert in the config | 15:55 |
*** daneyon has quit IRC | 15:55 | |
bdossant_ | i cannot do that because the HAproxy (that i dont control) redirects to https | 15:56 |
*** jistr has quit IRC | 15:58 | |
bdossant_ | yes i have the cafile | 16:00 |
bdossant_ | but still i get the exception when heat authenticates the user created for a wait resource (im using domains) | 16:01 |
bdossant_ | i wanted to bypass this for dev | 16:01 |
*** jistr has joined #heat | 16:06 | |
*** bdossant_ has quit IRC | 16:07 | |
*** jistr has quit IRC | 16:09 | |
*** Raj1 has joined #heat | 16:13 | |
*** pm90__ has joined #heat | 16:14 | |
*** pm90_ has quit IRC | 16:14 | |
*** rwsu has joined #heat | 16:15 | |
*** bdossant has joined #heat | 16:16 | |
*** vahidh has joined #heat | 16:18 | |
*** henrique_ has joined #heat | 16:20 | |
*** mixos is now known as mixos-away | 16:23 | |
*** mixos-away is now known as mixos | 16:23 | |
*** gokrokve has quit IRC | 16:23 | |
*** nihilifer has joined #heat | 16:24 | |
*** spzala has quit IRC | 16:24 | |
*** spzala has joined #heat | 16:25 | |
*** htruta has quit IRC | 16:27 | |
*** gokrokve has joined #heat | 16:30 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/heat: Updated from global requirements https://review.openstack.org/186831 | 16:32 |
*** Raj1 has left #heat | 16:33 | |
*** nihilifer has quit IRC | 16:34 | |
openstackgerrit | Pavlo Shchelokovskyy proposed openstack/heat: WIP Do not pass rich objects on servers' delete https://review.openstack.org/186832 | 16:34 |
*** kebray has quit IRC | 16:34 | |
*** sikor_sxe has quit IRC | 16:38 | |
*** pas-ha has quit IRC | 16:41 | |
*** pm90__ has quit IRC | 16:41 | |
*** pm90_ has joined #heat | 16:42 | |
*** gokrokve has quit IRC | 16:46 | |
*** Drago has quit IRC | 16:47 | |
*** derekh has quit IRC | 16:48 | |
*** Tross has quit IRC | 16:51 | |
*** spzala has quit IRC | 16:55 | |
*** spzala has joined #heat | 16:55 | |
*** ananta_ has quit IRC | 16:56 | |
*** gokrokve has joined #heat | 16:57 | |
*** hdd has quit IRC | 16:57 | |
*** gokrokve has quit IRC | 16:57 | |
*** gokrokve has joined #heat | 16:58 | |
*** bdossant has quit IRC | 17:03 | |
*** ashishjain has joined #heat | 17:04 | |
*** daneyon_ has quit IRC | 17:05 | |
*** sdake has joined #heat | 17:09 | |
*** alanf-mc has joined #heat | 17:09 | |
*** kebray has joined #heat | 17:09 | |
*** achanda has quit IRC | 17:10 | |
*** achanda_ has joined #heat | 17:10 | |
*** sdake_ has quit IRC | 17:12 | |
*** crose has quit IRC | 17:15 | |
*** crose has joined #heat | 17:15 | |
*** sdake_ has joined #heat | 17:20 | |
*** kebray has quit IRC | 17:22 | |
*** hdd has joined #heat | 17:23 | |
*** sdake has quit IRC | 17:23 | |
*** pm90_ has quit IRC | 17:23 | |
*** mixos is now known as mixos-away | 17:25 | |
*** gcivitella has quit IRC | 17:25 | |
*** cody-somerville has quit IRC | 17:25 | |
*** sdake has joined #heat | 17:26 | |
*** barra204 has quit IRC | 17:26 | |
*** Tross has joined #heat | 17:28 | |
*** kebray has joined #heat | 17:29 | |
*** sdake_ has quit IRC | 17:29 | |
*** nihilifer has joined #heat | 17:31 | |
*** achanda_ has quit IRC | 17:32 | |
*** achanda has joined #heat | 17:33 | |
*** jruano has quit IRC | 17:37 | |
*** jruano has joined #heat | 17:40 | |
*** kebray has quit IRC | 17:40 | |
*** EricGonc_ has joined #heat | 17:42 | |
*** EricGonczer_ has quit IRC | 17:44 | |
*** nihilifer has quit IRC | 17:48 | |
*** john-n-seattle has joined #heat | 17:54 | |
*** mixos-away is now known as mixos | 17:59 | |
*** achanda_ has joined #heat | 18:00 | |
*** achanda has quit IRC | 18:02 | |
*** spzala has quit IRC | 18:03 | |
*** yassine_ has quit IRC | 18:03 | |
*** spzala has joined #heat | 18:03 | |
*** jrist has quit IRC | 18:06 | |
*** kebray has joined #heat | 18:07 | |
*** sdake_ has joined #heat | 18:07 | |
*** barra204 has joined #heat | 18:09 | |
*** Drago has joined #heat | 18:10 | |
*** Drago has quit IRC | 18:10 | |
*** Drago has joined #heat | 18:11 | |
*** EricGonczer_ has joined #heat | 18:11 | |
*** kebray has quit IRC | 18:12 | |
*** sdake has quit IRC | 18:12 | |
*** jrist has joined #heat | 18:12 | |
*** kebray has joined #heat | 18:12 | |
*** EricGonc_ has quit IRC | 18:14 | |
*** barra204 has quit IRC | 18:15 | |
*** spzala has quit IRC | 18:18 | |
*** spzala has joined #heat | 18:18 | |
*** pitr-ch_ has joined #heat | 18:20 | |
*** barra204 has joined #heat | 18:20 | |
*** pitr-ch has quit IRC | 18:21 | |
*** allegra-s has joined #heat | 18:23 | |
*** gokrokve_ has joined #heat | 18:24 | |
*** alexpilotti has joined #heat | 18:26 | |
*** gokrokve has quit IRC | 18:27 | |
*** barra204_ has joined #heat | 18:28 | |
*** gokrokve_ has quit IRC | 18:29 | |
*** barra204 has quit IRC | 18:31 | |
*** gokrokve has joined #heat | 18:31 | |
*** dsneddon is now known as dsneddon_lunch | 18:37 | |
*** sjmc7 has quit IRC | 18:41 | |
*** sjmc7 has joined #heat | 18:45 | |
*** barra204_ is now known as shakamunyi | 18:52 | |
*** jcoufal has joined #heat | 18:54 | |
*** jcoufal has quit IRC | 18:55 | |
*** blomquisg has quit IRC | 18:55 | |
*** tlashchova_ has joined #heat | 18:58 | |
*** crose has quit IRC | 19:08 | |
*** pbrooko has joined #heat | 19:17 | |
*** pbrooko has quit IRC | 19:17 | |
*** alexpilotti has quit IRC | 19:23 | |
*** achanda_ has quit IRC | 19:23 | |
openstackgerrit | Jason Dunsmore proposed openstack/heat: Encrypt properties data https://review.openstack.org/151388 | 19:25 |
*** alanf-mc has quit IRC | 19:36 | |
openstackgerrit | Pavlo Shchelokovskyy proposed openstack/heat: Simplify handle_check in Nova server https://review.openstack.org/186888 | 19:37 |
*** sdake_ is now known as sdake | 19:43 | |
*** sdake_ has joined #heat | 19:46 | |
*** sdake has quit IRC | 19:49 | |
*** sdake has joined #heat | 19:49 | |
*** sdake_ has quit IRC | 19:53 | |
*** openstack has joined #heat | 20:05 | |
*** alexheneveld has quit IRC | 20:12 | |
*** dyasny has quit IRC | 20:14 | |
*** alanf-mc has joined #heat | 20:15 | |
*** jfluhmann has joined #heat | 20:17 | |
*** openstack has joined #heat | 20:30 | |
*** sdake_ has joined #heat | 20:36 | |
*** sdake has quit IRC | 20:40 | |
*** gokrokve has quit IRC | 20:40 | |
*** alexpilotti has joined #heat | 20:41 | |
*** vahidh has quit IRC | 20:44 | |
*** vahidh has joined #heat | 20:46 | |
*** gokrokve has joined #heat | 20:46 | |
*** spzala has quit IRC | 20:49 | |
*** lkarm has quit IRC | 20:49 | |
*** spzala has joined #heat | 20:49 | |
*** blomquisg has joined #heat | 20:50 | |
*** sdake has joined #heat | 20:50 | |
*** gokrokve has quit IRC | 20:50 | |
*** rpothier has quit IRC | 20:51 | |
*** dsneddon_lunch is now known as dsneddon | 20:53 | |
*** sdake_ has quit IRC | 20:54 | |
*** jfluhmann has quit IRC | 20:55 | |
sdake | zaneb took your advice here http://ur1.ca/modcu -> http://paste.fedoraproject.org/227097/32932998 | 20:56 |
sdake | zaneb and the values are not being initailized with the value | 20:57 |
zaneb | sdake: looks better. I would still use the std library ;) | 20:59 |
*** openstackgerrit has quit IRC | 20:59 | |
*** openstackgerrit has joined #heat | 21:00 | |
sdake | zaneb nm I figured out my dummy error | 21:00 |
*** gokrokve has joined #heat | 21:07 | |
*** sdake is now known as steakache | 21:23 | |
*** steakache is now known as sdake | 21:24 | |
*** shakamunyi has quit IRC | 21:26 | |
*** openstack has joined #heat | 21:32 | |
*** tlashchova_ has quit IRC | 21:37 | |
*** blomquisg has quit IRC | 21:40 | |
*** allegra-s has quit IRC | 21:42 | |
*** ashishjain has quit IRC | 21:47 | |
sdake | stevebaker a round? | 21:52 |
sdake | just want to chat, no annoying technical qs :) | 21:52 |
*** ashishjain has joined #heat | 21:52 | |
*** dims_ has joined #heat | 21:53 | |
*** dimsum__ has quit IRC | 21:55 | |
*** alexpilotti has quit IRC | 21:56 | |
*** jruano has quit IRC | 21:57 | |
*** vijendar has quit IRC | 22:02 | |
*** pm90_ has joined #heat | 22:02 | |
*** jasond has quit IRC | 22:09 | |
*** sabeen2 has quit IRC | 22:13 | |
*** alanf-mc has quit IRC | 22:15 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/heat: Updated from global requirements https://review.openstack.org/186831 | 22:15 |
*** EricGonc_ has joined #heat | 22:17 | |
*** EricGonczer_ has quit IRC | 22:18 | |
*** EricGonc_ has quit IRC | 22:19 | |
*** mwheckmann has quit IRC | 22:24 | |
*** hdd has quit IRC | 22:27 | |
*** alanf-mc has joined #heat | 22:34 | |
*** sdake_ has joined #heat | 22:39 | |
*** sdake has quit IRC | 22:43 | |
*** boris-42 has quit IRC | 22:48 | |
*** sdake has joined #heat | 22:49 | |
*** sdake has quit IRC | 22:49 | |
*** sdake has joined #heat | 22:49 | |
*** sdake_ has quit IRC | 22:52 | |
*** pm90_ has quit IRC | 22:59 | |
*** steveg_afk has joined #heat | 23:02 | |
*** mixos has left #heat | 23:04 | |
*** Marga_ has joined #heat | 23:10 | |
*** Marga_ has quit IRC | 23:16 | |
*** pm90_ has joined #heat | 23:31 | |
*** gokrokve_ has joined #heat | 23:33 | |
*** gokrokve has quit IRC | 23:37 | |
*** mixos has joined #heat | 23:41 | |
zaneb | sdake: copy-paste fail on that patch | 23:45 |
*** LiJiansheng has joined #heat | 23:46 | |
sdake | oh ya? | 23:46 |
*** mixos has left #heat | 23:46 | |
zaneb | left a comment on the review | 23:46 |
zaneb | (btw it's Saturday in stevebaker-land, so I wouldn't be surprised if he wasn't about) | 23:46 |
sdake | oh right | 23:47 |
sdake | I'll talk to you then :) | 23:47 |
*** LiJiansheng has quit IRC | 23:50 | |
*** spzala has quit IRC | 23:50 | |
*** LiJiansheng has joined #heat | 23:51 | |
*** sdake_ has joined #heat | 23:56 | |
*** pm90_ has quit IRC | 23:56 | |
*** gokrokve_ has quit IRC | 23:56 | |
*** gokrokve has joined #heat | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!