*** hashar has quit IRC | 00:03 | |
*** Guest6998 has joined #openstack-dev | 00:03 | |
*** littleidea has joined #openstack-dev | 00:04 | |
*** deshantm has joined #openstack-dev | 00:11 | |
*** Guest6998 has quit IRC | 00:12 | |
mikal | Is there a way to ask smokestack to retest a patch? | 00:14 |
---|---|---|
mikal | I think http://smokestack.openstack.org/?go=/jobs/13358 might be a bogus failure... | 00:15 |
*** asdfasdf has joined #openstack-dev | 00:20 | |
*** nati has quit IRC | 00:20 | |
*** asdfasdf has quit IRC | 00:20 | |
*** dtroyer has joined #openstack-dev | 00:24 | |
*** andrewbogott has joined #openstack-dev | 00:29 | |
*** zykes has joined #openstack-dev | 00:29 | |
andrewbogott | sleepsonthefloo: I'm looking at http://wiki.openstack.org/guest-configuration and wondering which, if any, of those features actually made it into essex. Do you know? | 00:30 |
*** zykes- has quit IRC | 00:32 | |
sleepsonthefloo | andrewbogott - at the time we brainstormed on that, we were feeling ambitious :) but it was a little too late in the game to pull off non-native interop for essex. This will be a good folsom conference topic.. | 00:33 |
andrewbogott | OK, so it's still cloud-init or nothing? | 00:34 |
sleepsonthefloo | well, for guest config, there are 3 methods in use: file injection (mostly for xen), config drive, and ec2 metadata | 00:35 |
andrewbogott | Yep, ok. | 00:35 |
andrewbogott | thanks! | 00:36 |
sleepsonthefloo | the main guest agent people use is cloud init, which interacts with ec2 and config drive (the latter is very new, have not tried it) | 00:36 |
sleepsonthefloo | however, other guest agents are in use | 00:36 |
*** zykes has quit IRC | 00:37 | |
*** nati has joined #openstack-dev | 00:44 | |
*** torgomatic has quit IRC | 00:45 | |
*** jdg has quit IRC | 00:45 | |
*** dillon-w has quit IRC | 00:50 | |
*** dtroyer has quit IRC | 00:50 | |
*** nati has quit IRC | 00:53 | |
*** nati has joined #openstack-dev | 00:53 | |
*** andrewbogott has quit IRC | 00:58 | |
vishy | core reviewers: need this in https://review.openstack.org/#change,4481 | 01:00 |
*** dayou has quit IRC | 01:06 | |
*** RobertLaptop has joined #openstack-dev | 01:23 | |
justinsb | andrewbogott_afk, sleepsonthefloo: Config drive has been around for a while and works great. What is really new is that I contributed a simple init.d script which applies that config: https://review.openstack.org/#change,4498 | 01:25 |
*** nati has quit IRC | 01:25 | |
*** nati has joined #openstack-dev | 01:25 | |
justinsb | sleepsonthefloo: Unless you meant config drive support for cloud init, which is also bleeding edge | 01:27 |
comstud | vishy: pong | 01:28 |
justinsb | Using config drive + init script means there's no need for DHCP and it side-steps a lot of nasty configuration (at least for me!) | 01:28 |
vishy | comstud: so I'm rewriting some code for cloudpipe | 01:28 |
comstud | vishy: okie | 01:28 |
vishy | comstud: and i need to get a network, I was trying to use shared code to grab the uuid | 01:28 |
vishy | comstud: but the only thing i could find in common doesn't include the uuid | 01:29 |
vishy | comstud: should I add another method to common that just grabs the unadulterated nwinfo? | 01:29 |
*** dayou has joined #openstack-dev | 01:29 | |
comstud | vishy: Ah...i see.. I think so | 01:30 |
comstud | vishy: wait... network uuid? | 01:31 |
vishy | comstud: yeah i need extra info from the db that isn't in the cache | 01:31 |
vishy | but to request the network from network_api using network_get | 01:31 |
vishy | i have to pass a uuid | 01:31 |
comstud | vishy: i have an 'id' stored in instance_info_caches, it appears | 01:32 |
comstud | oh | 01:33 |
comstud | i see | 01:33 |
comstud | anyway... yeah | 01:33 |
comstud | if you need to get at the 'id', add a new method to common | 01:33 |
vishy | id == uuid? | 01:33 |
comstud | yeah it is | 01:33 |
vishy | i assume | 01:33 |
comstud | "meta": {"tenant_id": "openstack"}, "id": "e9f5a3b3-d172-4373-84b9-917ed307cb26", "label": "public"} | 01:34 |
comstud | it appears buried under meta | 01:34 |
comstud | er | 01:34 |
comstud | nevermind, missed a } | 01:34 |
*** pixelbeat has quit IRC | 01:34 | |
vishy | ok i'm going to add a call to get the unadulterated nw_info | 01:35 |
comstud | hmm.. wait | 01:35 |
comstud | are you positive common.get_networks_for_instance() doesn't give it to you without a new call? | 01:35 |
vishy | pretty sure | 01:36 |
vishy | it doesn't show it in the docstring | 01:36 |
vishy | nor is it accessed in the builder | 01:36 |
*** berendt has quit IRC | 01:36 | |
comstud | yeah i know it's not accessed | 01:36 |
comstud | sec, i'll tell you for sure | 01:36 |
vishy | as far as i can tell it isn't added in get_networks_for_instance_from_nw_info | 01:37 |
vishy | although i could just add it there | 01:37 |
comstud | well, hyrdate() does all of the magic | 01:37 |
comstud | hydrate | 01:37 |
comstud | that's what i'm wondering. if hydrate drops it | 01:37 |
vishy | oh i see | 01:37 |
*** zykes has joined #openstack-dev | 01:38 | |
*** nati has quit IRC | 01:42 | |
comstud | it's in there | 01:43 |
comstud | already | 01:43 |
comstud | >>> network_model.NetworkInfo.hydrate(i['network_info'])[0]['network']['id'] | 01:44 |
comstud | u'e9f5a3b3-d172-4373-84b9-917ed307cb26' | 01:44 |
comstud | i = instance_info_cache entry | 01:44 |
comstud | vishy: ^ | 01:44 |
comstud | so | 01:45 |
comstud | foo = get_networks_for_instance(context, instance) | 01:45 |
comstud | foo[0]['network']['id'] | 01:45 |
vishy | um | 01:46 |
comstud | gives you the network ID of the first vif | 01:46 |
vishy | have you read get_networks_for_instance() ? | 01:46 |
vishy | it don't work that way | 01:46 |
comstud | oh | 01:46 |
vishy | it returns the mangled version | 01:46 |
comstud | lol, sorry, i just woke up | 01:46 |
comstud | :) | 01:46 |
comstud | yeah, just add a new call | 01:47 |
vishy | check! | 01:47 |
comstud | although i guess i don't see a problem adding it to get_networks_for_instance_from_nw_info() | 01:47 |
comstud | 'id' that is | 01:47 |
vishy | comstud: one more question | 01:49 |
vishy | how come the return {} | 01:49 |
vishy | in the ec2utils version there is a cached_nwinfo = [] there | 01:49 |
comstud | i bet it's supposed to be [] eh | 01:49 |
comstud | oh | 01:50 |
comstud | because get_networks_for_instance() returns a dictionary? | 01:50 |
vishy | well it is an early return | 01:50 |
comstud | er | 01:50 |
vishy | not sure why the early return is necessary | 01:50 |
comstud | because get_networks_for_instance_from_nw_info() returns a dictionary? | 01:50 |
comstud | i had seen where 'network_info' was None | 01:51 |
comstud | in my DB | 01:51 |
comstud | ie, instance['info_cache']['network_info'] was None | 01:52 |
comstud | maybe hydrate handles that case okay | 01:52 |
comstud | but I dunno | 01:53 |
vishy | comstud: https://gist.github.com/1905214 | 01:53 |
vishy | does that seem reasonable? | 01:53 |
comstud | but why bother calling 2 extra methods when you don't need to?:) | 01:53 |
comstud | looking | 01:53 |
*** danwent has quit IRC | 01:54 | |
*** Ryan_Lane has quit IRC | 01:54 | |
comstud | yeah, that would work | 01:54 |
comstud | but you lose my performance improvement! | 01:54 |
comstud | :) | 01:55 |
vishy | hehe | 02:03 |
*** Ryan_Lane has joined #openstack-dev | 02:05 | |
*** hub_cap has joined #openstack-dev | 02:06 | |
hub_cap | hey guys, i just submited a quick bugfix to deprecated auth. there was a import goof, can someone peep it? | 02:07 |
hub_cap | https://review.openstack.org/4525 | 02:08 |
hub_cap | crickets :D | 02:16 |
*** jdurgin has quit IRC | 02:19 | |
*** adjohn has quit IRC | 02:25 | |
*** jog0_ has joined #openstack-dev | 02:26 | |
*** jog0_ has quit IRC | 02:27 | |
*** crobinso has quit IRC | 02:44 | |
*** dayou has quit IRC | 02:50 | |
*** dayou has joined #openstack-dev | 02:51 | |
*** crobinso has joined #openstack-dev | 02:57 | |
*** shevek_ has joined #openstack-dev | 02:59 | |
*** shevek_ has quit IRC | 03:07 | |
*** shevek_ has joined #openstack-dev | 03:13 | |
*** hub_cap has quit IRC | 03:15 | |
*** hub_cap has joined #openstack-dev | 03:20 | |
*** shevek_ has quit IRC | 03:21 | |
*** hub_cap has quit IRC | 03:22 | |
*** hub_cap has joined #openstack-dev | 03:23 | |
*** danwent has joined #openstack-dev | 03:25 | |
*** cp16net has quit IRC | 03:28 | |
*** danwent has quit IRC | 03:40 | |
*** jakedahn has joined #openstack-dev | 03:54 | |
*** jakedahn has quit IRC | 03:58 | |
*** martine has joined #openstack-dev | 04:02 | |
*** novas0x2a|laptop has quit IRC | 04:03 | |
*** hub_cap has quit IRC | 04:05 | |
*** Ryan_Lane has quit IRC | 04:09 | |
*** dtroyer has joined #openstack-dev | 04:11 | |
*** deshantm_ has joined #openstack-dev | 04:19 | |
*** deshantm has quit IRC | 04:20 | |
*** mdomsch has quit IRC | 04:31 | |
*** ROME has joined #openstack-dev | 04:41 | |
*** ROME has left #openstack-dev | 04:41 | |
*** martine has quit IRC | 04:45 | |
*** gyee has quit IRC | 04:56 | |
openstackgerrit | Verification of a change to openstack/keystone failed: Add Vary header (bug 928057) https://review.openstack.org/4460 | 04:57 |
uvirtbot | Launchpad bug 928057 in keystone "provide Vary header" [Medium,In progress] https://launchpad.net/bugs/928057 | 04:57 |
*** reed_ has joined #openstack-dev | 05:11 | |
*** reed has quit IRC | 05:12 | |
*** cweidenkeller has quit IRC | 05:14 | |
*** cweidenkeller has joined #openstack-dev | 05:15 | |
*** deshantm_ has quit IRC | 05:15 | |
*** mnewby has quit IRC | 05:18 | |
*** rickfoosusa has quit IRC | 05:20 | |
*** mjfork has quit IRC | 05:41 | |
*** nati has joined #openstack-dev | 05:45 | |
*** ncode has quit IRC | 05:57 | |
*** reed_ has quit IRC | 06:05 | |
*** dtroyer has quit IRC | 06:11 | |
*** bepernoot has joined #openstack-dev | 06:14 | |
*** nati has quit IRC | 06:26 | |
*** RobertLaptop has left #openstack-dev | 06:28 | |
*** zaitcev has quit IRC | 06:29 | |
*** crobinso has quit IRC | 06:44 | |
*** crobinso_ has quit IRC | 06:44 | |
*** littleidea has quit IRC | 06:52 | |
*** jakedahn has joined #openstack-dev | 06:56 | |
*** crobinso has joined #openstack-dev | 06:56 | |
*** crobinso_ has joined #openstack-dev | 06:58 | |
*** bepernoot has quit IRC | 07:06 | |
*** zigo has joined #openstack-dev | 07:18 | |
*** shevek_ has joined #openstack-dev | 07:24 | |
*** bepernoot has joined #openstack-dev | 07:51 | |
*** bepernoot has quit IRC | 08:03 | |
*** Ryan_Lane has joined #openstack-dev | 08:28 | |
*** Mandell has quit IRC | 08:53 | |
*** hashar has joined #openstack-dev | 08:56 | |
*** sleepsonthefloo has quit IRC | 09:13 | |
*** zigo has quit IRC | 10:16 | |
*** zigo has joined #openstack-dev | 10:19 | |
*** dubsquared1 has joined #openstack-dev | 10:50 | |
*** dubsquared has quit IRC | 10:52 | |
*** pixelbeat has joined #openstack-dev | 10:53 | |
*** GheRivero has quit IRC | 11:18 | |
*** mattray has joined #openstack-dev | 11:32 | |
*** danwent has joined #openstack-dev | 11:44 | |
*** zykes- has joined #openstack-dev | 12:02 | |
*** zykes has quit IRC | 12:05 | |
*** mancdaz1203 has quit IRC | 12:10 | |
*** mattray has quit IRC | 12:11 | |
*** danwent has quit IRC | 12:16 | |
*** berendt has joined #openstack-dev | 12:22 | |
*** hashar has quit IRC | 12:38 | |
*** zykes- has quit IRC | 12:43 | |
*** zykes- has joined #openstack-dev | 12:43 | |
*** zigo has quit IRC | 12:49 | |
*** rbasak has quit IRC | 13:04 | |
berendt | what's wrong with my network configuration if my nova-compute can't create new instances failing with the following: | 13:12 |
berendt | File "/usr/lib64/python2.6/site-packages/nova/network/model.py", line 240, in hydrate: vif = VIF(**vif) --> (nova.rpc.common): TRACE: TypeError: __init__() keywords must be strings | 13:12 |
berendt | (full traceback: http://paste.openstack.org/show/5001/) | 13:12 |
berendt | nova.conf and nova-manage network create call at http://paste.openstack.org/show/5002/ | 13:16 |
*** LinuxJedi has quit IRC | 13:21 | |
*** dayou has quit IRC | 13:23 | |
*** LinuxJedi has joined #openstack-dev | 13:32 | |
*** zykes__ has joined #openstack-dev | 13:43 | |
*** hashar has joined #openstack-dev | 13:46 | |
*** zykes- has quit IRC | 13:46 | |
berendt | i think something is broken.. i created a bug 940941 | 13:54 |
uvirtbot | Launchpad bug 940941 in nova "spawning of instance failed during network setup: error in method hydrate in nova/network/model.py" [Undecided,New] https://launchpad.net/bugs/940941 | 13:54 |
*** littleidea has joined #openstack-dev | 14:19 | |
*** littleidea has quit IRC | 14:25 | |
*** littleidea has joined #openstack-dev | 14:25 | |
*** hashar has quit IRC | 14:42 | |
*** berendt has quit IRC | 14:48 | |
*** crobinso_ has quit IRC | 14:50 | |
*** dtroyer has joined #openstack-dev | 14:56 | |
*** Gordonz has joined #openstack-dev | 14:58 | |
*** crobinso has quit IRC | 14:59 | |
*** littleidea has quit IRC | 15:10 | |
*** dayou has joined #openstack-dev | 15:41 | |
*** zykes has joined #openstack-dev | 15:43 | |
*** zykes__ has quit IRC | 15:44 | |
*** Gordonz has quit IRC | 15:44 | |
*** zykes- has joined #openstack-dev | 15:45 | |
*** zykes has quit IRC | 15:49 | |
*** armaan has joined #openstack-dev | 16:05 | |
*** armaan has quit IRC | 16:15 | |
*** nati has joined #openstack-dev | 16:19 | |
*** dubsquared1 has quit IRC | 16:29 | |
*** nati has quit IRC | 16:33 | |
*** nati has joined #openstack-dev | 16:34 | |
*** danwent has joined #openstack-dev | 16:38 | |
*** Gordonz has joined #openstack-dev | 16:44 | |
*** Mandell has joined #openstack-dev | 16:44 | |
*** nati has quit IRC | 16:52 | |
*** Mandell has quit IRC | 16:56 | |
*** nati has joined #openstack-dev | 17:04 | |
*** asdfasdf has joined #openstack-dev | 17:07 | |
*** nati has quit IRC | 17:09 | |
*** mikeyp has left #openstack-dev | 17:10 | |
openstackgerrit | Verification of a change to openstack/keystone failed: Set tenantName to 'admin' in get_admin_auth_token. https://review.openstack.org/4438 | 17:11 |
*** mjfork has joined #openstack-dev | 17:11 | |
*** littleidea has joined #openstack-dev | 17:12 | |
*** Gordonz has quit IRC | 17:15 | |
openstackgerrit | Verification of a change to openstack/keystone failed: Add Vary header (bug 928057) https://review.openstack.org/4460 | 17:16 |
uvirtbot | Launchpad bug 928057 in keystone "provide Vary header" [Medium,In progress] https://launchpad.net/bugs/928057 | 17:16 |
*** j05h has joined #openstack-dev | 17:27 | |
*** anotherjesse has joined #openstack-dev | 17:30 | |
anotherjesse | dtroyer: https://review.openstack.org/4520 made me wonder if devstack's euca exercise should be/is using the keystone euca access/secret cli? | 17:31 |
mtaylor | anotherjesse: morning | 17:34 |
dtroyer | anotherjesse: I think it is. it picks up DEMO_ACCESS and DEMO_KEY in from ec2rc via openrc | 17:34 |
dtroyer | anotherjesse: ec2rc is created by keystone_data.sh | 17:35 |
*** eglynn__ has joined #openstack-dev | 17:36 | |
*** sannes has joined #openstack-dev | 17:37 | |
*** eglynn_ has quit IRC | 17:38 | |
*** eglynn has joined #openstack-dev | 17:40 | |
*** eglynn__ has quit IRC | 17:40 | |
*** Gordonz has joined #openstack-dev | 17:41 | |
anotherjesse | dtroyer: but it isn't showing the user how to do it. | 17:45 |
anotherjesse | not a blocker issue - just think it would be instructive to show how to use keystone cli for it | 17:45 |
anotherjesse | mtaylor: morning sire | 17:45 |
dtroyer | anotherjesse: we can do that when https://review.openstack.org/4520 gets merged | 17:45 |
mtaylor | anotherjesse: I'm writing up an overview of what I've been trying to do in terms of what jenkins wants to do inside of each project | 17:48 |
chmouel | dtroyer, anotherjesse: I was thinking for testing of swift3/s3token is to point euca-upload-bundle to swift, but what do you think should it goes to its own excercise or bundle.sh | 17:48 |
mtaylor | anotherjesse: so that we can better set up a template in version control of "these are the things that we run on everything" | 17:49 |
mtaylor | anotherjesse: (and also so that it's documented) | 17:49 |
mtaylor | anotherjesse: wanted to run it by you when you have a spare sec | 17:49 |
mtaylor | anotherjesse: http://wiki.openstack.org/ProjectTestingInterface | 17:49 |
*** zykes has joined #openstack-dev | 17:52 | |
*** zykes- has quit IRC | 17:54 | |
*** bepernoot has joined #openstack-dev | 17:58 | |
anotherjesse | chmouel: good idea to your last email about euca-upload-bundle | 17:58 |
*** jakedahn has quit IRC | 17:58 | |
openstackgerrit | Verification of a change to openstack/quantum failed: plugin: introduce ryu plugin https://review.openstack.org/3618 | 18:06 |
*** zykes has quit IRC | 18:13 | |
*** zykes has joined #openstack-dev | 18:13 | |
openstackgerrit | Verification of a change to openstack/quantum failed: plugin: introduce ryu plugin https://review.openstack.org/3618 | 18:16 |
anotherjesse | mtaylor: the doc section - should probably mention there are at least 3 types of docs - project.openstack.org <- generated from sphinx - for developers. docs.openstack.org <- generated from openstack manuals project and for end users and operators | 18:17 |
anotherjesse | mtaylor: then there are the apis which are currently … well we should talk about that at the summit | 18:18 |
*** berendt has joined #openstack-dev | 18:19 | |
*** dtroyer has quit IRC | 18:22 | |
anotherjesse | mtaylor: perhaps just noting the sphinx docs are for developer docs, not all docs (currently) | 18:23 |
anotherjesse | mtaylor: perhaps recommending AUTHORS as a standard https://review.openstack.org/#change,4468 ? | 18:23 |
*** berendt has quit IRC | 18:26 | |
*** anotherjesse has quit IRC | 18:30 | |
*** eglynn_ has joined #openstack-dev | 18:33 | |
*** eglynn has quit IRC | 18:33 | |
*** eglynn__ has joined #openstack-dev | 18:40 | |
*** eglynn_ has quit IRC | 18:42 | |
*** j05h has quit IRC | 18:45 | |
*** Gordonz has quit IRC | 18:54 | |
*** littleidea has quit IRC | 19:04 | |
openstackgerrit | Verification of a change to openstack/keystone failed: Adds AUTHORS file generated from git log (and de-duplicated). https://review.openstack.org/4468 | 19:08 |
rmk | Bit confused about the direction of Keystone. Is Light a temporary replacement? | 19:11 |
*** bepernoot has quit IRC | 19:19 | |
*** littleidea has joined #openstack-dev | 19:22 | |
*** eglynn has joined #openstack-dev | 19:24 | |
mtaylor | rmk: no | 19:25 |
mtaylor | rmk: keystone's codebase has been fully replaced | 19:25 |
*** littleidea has quit IRC | 19:25 | |
rmk | OK so keystone as is will be deprecated then? | 19:25 |
rmk | I ask because I'm still seeing commits there | 19:25 |
mtaylor | keystonelight replaced keystone's trunk | 19:26 |
rmk | hhh | 19:26 |
rmk | ahh too | 19:26 |
mtaylor | so the work is now going on in the keystone master branch | 19:26 |
mtaylor | :) | 19:26 |
rmk | makes sense, thanks | 19:26 |
mtaylor | (the merge commit is really fun to look at in gitk btw, if you find that sort of stuff neat | 19:26 |
rmk | not particularly :) | 19:26 |
*** eglynn__ has quit IRC | 19:26 | |
rmk | Would you say it's worth switching to KSL now even for Diablo deployments? | 19:27 |
mtaylor | rmk: I think that's what people are doing in general | 19:29 |
mtaylor | rmk: BUT - I'm the wrong person to ask about that one | 19:30 |
rmk | Fair enough. | 19:30 |
*** asdfasdf has quit IRC | 19:31 | |
*** Mandell has joined #openstack-dev | 19:39 | |
*** bepernoot has joined #openstack-dev | 19:41 | |
*** bepernoot has quit IRC | 19:42 | |
*** danwent has quit IRC | 19:49 | |
*** Mandell_ has joined #openstack-dev | 19:54 | |
*** Mandell has quit IRC | 19:54 | |
*** ncode has joined #openstack-dev | 20:01 | |
*** nati has joined #openstack-dev | 20:02 | |
*** nati has quit IRC | 20:07 | |
*** hashar has joined #openstack-dev | 20:21 | |
*** hashar_ has joined #openstack-dev | 20:30 | |
*** hashar has quit IRC | 20:33 | |
*** hashar_ is now known as hashar | 20:33 | |
*** dtroyer has joined #openstack-dev | 20:36 | |
*** Mandell_ has quit IRC | 20:37 | |
*** littleidea has joined #openstack-dev | 20:43 | |
*** zykes has quit IRC | 20:44 | |
*** jeremyb has quit IRC | 20:44 | |
*** Drakiz has quit IRC | 20:44 | |
*** markwash_ has quit IRC | 20:44 | |
*** benner has quit IRC | 20:44 | |
*** aa has quit IRC | 20:44 | |
*** hazmat has quit IRC | 20:44 | |
*** zykes has joined #openstack-dev | 20:45 | |
*** jeremyb has joined #openstack-dev | 20:45 | |
*** hazmat has joined #openstack-dev | 20:45 | |
*** Drakiz has joined #openstack-dev | 20:45 | |
*** markwash_ has joined #openstack-dev | 20:45 | |
*** benner has joined #openstack-dev | 20:45 | |
*** aa has joined #openstack-dev | 20:45 | |
*** Mandell has joined #openstack-dev | 20:54 | |
*** jakedahn has joined #openstack-dev | 21:01 | |
*** bepernoot has joined #openstack-dev | 21:14 | |
*** dtroyer has quit IRC | 21:17 | |
*** bepernoot has quit IRC | 21:24 | |
*** sannes has quit IRC | 21:27 | |
*** bepernoot has joined #openstack-dev | 21:50 | |
*** jakedahn has quit IRC | 22:09 | |
*** dtroyer has joined #openstack-dev | 22:16 | |
*** littleidea has quit IRC | 22:17 | |
*** littleidea has joined #openstack-dev | 22:18 | |
*** bepernoot has quit IRC | 22:18 | |
*** berendt has joined #openstack-dev | 22:27 | |
*** jakedahn has joined #openstack-dev | 22:38 | |
*** j05h has joined #openstack-dev | 22:55 | |
*** hashar has quit IRC | 23:02 | |
*** spinningcog has quit IRC | 23:03 | |
*** spinningcog has joined #openstack-dev | 23:04 | |
*** littleidea has quit IRC | 23:15 | |
*** pixelbeat has quit IRC | 23:22 | |
*** jakedahn has quit IRC | 23:31 | |
*** dettymac has joined #openstack-dev | 23:33 | |
*** shevek_ has quit IRC | 23:43 | |
*** littleidea has joined #openstack-dev | 23:46 | |
*** zykes- has joined #openstack-dev | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!