*** lloydde has quit IRC | 00:00 | |
*** maurosr has joined #openstack-dev | 00:01 | |
*** colinmcnamara has joined #openstack-dev | 00:02 | |
*** colinmcnamara has quit IRC | 00:05 | |
*** maurosr has quit IRC | 00:05 | |
jeblair | if anyone in SF wants to hang out with HP openstack people at the giants game, they have some extra tix; meet mtaylor at the willie mays statue by 715 | 00:06 |
---|---|---|
*** hemna has joined #openstack-dev | 00:08 | |
mikal | jeblair: hmmm, I need a faster air plane... | 00:08 |
*** maurosr has joined #openstack-dev | 00:08 | |
jeblair | mikal: i don't think even a citation x would get you here in time. how fast is the airplane you have? | 00:09 |
mikal | jeblair: well, it is paper and powered by rubber bands. So not very. | 00:10 |
mikal | I need a suborbital thing | 00:10 |
WormMan | hmm, I don't think I could make it in what I have access to, even if I was at the airport now. | 00:11 |
*** zhuadl has joined #openstack-dev | 00:11 | |
WormMan | that's ok, you all have to come down here next month anyway :) | 00:11 |
mikal | HP is big. Could they move the baseball game to Australia? | 00:12 |
clarkb | are there baseball diamonds in Australia? | 00:12 |
*** maurosr has quit IRC | 00:13 | |
mikal | clarkb: we could make one | 00:13 |
vishy | jeblair: hmm giants game | 00:13 |
*** adjohn has quit IRC | 00:13 | |
mikal | Clear out the thunderdome or something | 00:13 |
*** maurosr has joined #openstack-dev | 00:14 | |
vishy | jeblair: I should go say hi at least. I live 2 blocks from the stadium | 00:14 |
*** adjohn has joined #openstack-dev | 00:14 | |
vishy | jeblair: who all is here? | 00:14 |
mikal | vishy: oh cool. I used to spend heaps of time at Google SF, which is just near there | 00:14 |
vishy | mikal: it is. My roommate works there :) | 00:14 |
mikal | My old Google boss lives in the block of apartments across the road from the stadium. He tells stories of bins being set on fire after games, etc. | 00:15 |
arosen1 | vishy: Do you by any chance happen to know how the entry in the security_group_instance_association table is made when you boot a vm with --security_group ? It doesn't seem that db/api.py instance_add_security_group() is what does it. | 00:16 |
arosen1 | vishy: it seems that the call to sgh, trigger_instance_add_security_group_refresh doesn't happen in folsom. | 00:17 |
arosen1 | I'm trying to track that down. | 00:17 |
jgriffith | vishy: sigh... I believe it may very well be the dd issue, it's the last thing in the logs | 00:17 |
*** zhuadl has quit IRC | 00:18 | |
*** maurosr has quit IRC | 00:18 | |
jgriffith | vishy: Odd however as I used to only see issues with dd to the snapshots | 00:18 |
arosen1 | vishy: it seems like that should be called from compute/api.py add_to_instance in class SecurityGroupAPI(base.Base): but that function is never called when a vm is booted. | 00:19 |
vishy | arosen1: yes it is on the instance_create | 00:19 |
*** maurosr has joined #openstack-dev | 00:19 | |
vishy | arosen1: in create_db_entry_for_new_instance in compute/api.py | 00:20 |
vishy | 724 instance = self.db.instance_create(context, instance) | 00:20 |
vishy | the security_groups are passed in | 00:20 |
*** ociuhandu has quit IRC | 00:20 | |
*** krtaylor has joined #openstack-dev | 00:20 | |
vishy | arosen1: then they are parsed in instance_create in db/sqlalchemy/api.py | 00:21 |
vishy | arosen1: around line 1422 | 00:21 |
vishy | arosen1: does that help? | 00:21 |
jeblair | vishy: mordred, LinuxJedi, probably brian aker... and probably other ppl i don't know. i'm planning on going too. | 00:22 |
*** jaypipes has quit IRC | 00:23 | |
*** statik has joined #openstack-dev | 00:23 | |
*** maurosr has quit IRC | 00:24 | |
vishy | jeblair: cool. How long are you guys in SF? | 00:24 |
jeblair | vishy: i think they're here for a meeting in santa clara most of the week. then monty's speaking at the puppet conf on friday, i'm speaking at the jenkins conf on sunday. | 00:25 |
rmk | vishy: https://github.com/openstack/nova/blob/master/nova/virt/libvirt/driver.py#L2600 -- This has me stumped (just got back to it). It does a domain list, to check if the instance in question is defined. If it's not, it ultimately calls dom.XMLDesc(0), which would spit out XML from a running domain. How could that ever work? | 00:26 |
*** maurosr has joined #openstack-dev | 00:26 | |
*** martine has joined #openstack-dev | 00:28 | |
*** littleidea has quit IRC | 00:29 | |
vishy | listDefined is different from _lookup_by_name | 00:30 |
vishy | rmk: so it looks like it is actually correct | 00:30 |
*** maurosr has quit IRC | 00:31 | |
vishy | it is getting the running xml from running domains and defining it so it shows up in defined domains | 00:31 |
*** zaitcev has quit IRC | 00:31 | |
*** maurosr has joined #openstack-dev | 00:32 | |
rmk | I didn't know you could have a running domain which wasn't defined | 00:32 |
rmk | must be a state you can only get into via live migration | 00:32 |
*** martine has quit IRC | 00:33 | |
rmk | vishy: If it works that way then only one part of this code is wrong -- that block_device_info isn't being passed to to_xml. | 00:33 |
*** jdurgin has quit IRC | 00:33 | |
*** s0mik has quit IRC | 00:33 | |
vishy | rmk: cool, makes it easy to fix then :) | 00:34 |
*** littleidea has joined #openstack-dev | 00:34 | |
rmk | Yep it already works properly for live migrations themselves. This is actually one of the few places where the on-disk xml is even updated. So, I'd say changing this isn't too critical. | 00:35 |
rmk | I'm going to test som emigrations commenting out this conditional section just to see what libvirt thinks -- it's so different than everywhere else | 00:36 |
*** maurosr has quit IRC | 00:36 | |
*** devananda is now known as deva_zzz | 00:37 | |
arosen1 | vishy: it seems like that the insert into the security_group_instance_association table is done via : instance_ref.security_groups = _get_sec_group_models(session, security_groups) (some how..). Why isn't instance_add_security_group() In this same file being used to do it? (It seems like add_to_instance in compute/api.py should be called when a vm boots, though I it's not called. | 00:37 |
*** s0mik has joined #openstack-dev | 00:37 | |
*** maurosr has joined #openstack-dev | 00:38 | |
vishy | arosen1: well there wasn't a need previously to trigger a refresh | 00:39 |
vishy | arosen1: I don't see a problem with modifying it to go through that code path though | 00:39 |
vishy | arosen1: the db code is using the automatic relations in sqlalchemy. | 00:40 |
vishy | arosen1: so when you set instance_ref.security_groups it is automatically updating the security_group.instance_id behind the scenes | 00:41 |
arosen1 | vishy: when a vm is booted I get the following sgh call: trigger_security_group_members_refresh(self, context, group_ids); | 00:41 |
arosen1 | vishy: gotcah | 00:41 |
arosen1 | That doesn't tell me which instance joined or left the group though. | 00:41 |
*** maurosr has quit IRC | 00:42 | |
*** s0mik has quit IRC | 00:42 | |
vishy | arosen1: that is coming from the network/manager | 00:44 |
vishy | arosen1: in allocate_for_instance | 00:44 |
arosen1 | yea I found that one. | 00:44 |
vishy | arosen1: although I'm not totally sure why we do it there... | 00:44 |
*** maurosr has joined #openstack-dev | 00:45 | |
vishy | arosen1: looks like it was added when support for source groups was added | 00:46 |
arosen1 | vishy: so currently it seems add_to_instance / remove_from_instance in compute/api.py is dead code. | 00:46 |
vishy | arosen1: it is to update any rules that happen to have a a source group | 00:46 |
vishy | arosen1: it isn't exposed to the api anywhere, but the purpose of it was to expose adding and removing groups at run time to the api | 00:47 |
openstackgerrit | A change was merged to openstack/nova: Fixes remove_export for IetAdm https://review.openstack.org/13616 | 00:47 |
vishy | arosen1: the code supports it, we just don't have an extension for it. | 00:47 |
arosen1 | vishy: as in nothing is calling that? | 00:49 |
vishy | arosen1: that is my guess | 00:49 |
*** nunosantos has quit IRC | 00:49 | |
*** maurosr has quit IRC | 00:49 | |
arosen1 | so right now: trigger_instance_remove_security_group_refresh / trigger_instance_add_security_group_refresh are never called (though they were in essex). | 00:49 |
*** danwent has joined #openstack-dev | 00:50 | |
arosen1 | vishy: i'll track down here tthose were called in essex and make a patch so that they'll be called in folsom. | 00:50 |
arosen1 | vishy: thanks for your help btw :) | 00:50 |
vishy | arosen1: yw. I'm not totally sure they were called in essex, but looking forward to the patch regardless. :) | 00:51 |
*** nunosantos_ has quit IRC | 00:51 | |
*** maurosr has joined #openstack-dev | 00:52 | |
vishy | jgriffith: merge success on my end. RC-3 is good to go. | 00:52 |
jgriffith | vishy: Yep, saw it | 00:52 |
jgriffith | vishy: Now if mine just makes it I'll go home :) | 00:52 |
jgriffith | vishy: So I ran a loop of 10 tempest runs, got the dd hang on the 8'th one so I'm pretty confident that's our problem there | 00:53 |
*** littleidea has quit IRC | 00:53 | |
vishy | jgriffith: it looks like there was some trouble reproing the dd hang on the bug list there | 00:54 |
*** lloydde has joined #openstack-dev | 00:54 | |
vishy | jgriffith: we really need to get a fix in for that :/ | 00:54 |
jgriffith | vishy: I spoke with him in IRC and he said he had it | 00:54 |
*** bencherian has quit IRC | 00:54 | |
jgriffith | vishy: He was leaving out the --snapshot arg | 00:54 |
vishy | jgriffith: ah cool. Hopefully there is a fix :) | 00:54 |
jgriffith | vishy: I'll ping him again tomorrow and YES we reallydo | 00:54 |
jgriffith | vishy: It's already fixed in the next kernel it looks like | 00:55 |
jgriffith | vishy: I was hoping that would help narrow it down | 00:55 |
vishy | jgriffith: I guess they will backport it to precise somehow? | 00:55 |
jgriffith | vishy: That's what I was hoping | 00:55 |
jgriffith | vishy: kernel patch, as I'm sure they won't do a major rev on the kernel | 00:56 |
jgriffith | vishy: I can't come up with a good alternative to dd so I'll have to lean on them and hope something happens quickly | 00:56 |
*** maurosr has quit IRC | 00:56 | |
jgriffith | vishy: yay! the lastof my RC3 is in as well | 00:57 |
*** lloydde has quit IRC | 00:57 | |
*** maurosr has joined #openstack-dev | 00:59 | |
vishy | jgriffith: woot! | 00:59 |
jgriffith | vishy: No doubt!!! | 00:59 |
jgriffith | vishy: and a bit of a sighhh of relief as well | 00:59 |
jgriffith | :) | 00:59 |
jgriffith | vishy: Thanks for all of your help! | 01:01 |
jgriffith | vishy: Now I get to focus on docs a bit | 01:01 |
jgriffith | vishy: Catch ya later | 01:01 |
*** bencherian has joined #openstack-dev | 01:02 | |
*** markmcclain has quit IRC | 01:03 | |
*** winston-d has joined #openstack-dev | 01:03 | |
*** maurosr has quit IRC | 01:04 | |
*** Tross has quit IRC | 01:04 | |
*** belliott_ has joined #openstack-dev | 01:04 | |
*** Tross has joined #openstack-dev | 01:10 | |
*** markmcclain has joined #openstack-dev | 01:12 | |
*** Tross has quit IRC | 01:12 | |
*** bencherian has quit IRC | 01:13 | |
*** gongysh has quit IRC | 01:15 | |
*** gongysh has joined #openstack-dev | 01:15 | |
*** novas0x2a|laptop has quit IRC | 01:17 | |
*** edygarcia has joined #openstack-dev | 01:18 | |
*** jimfehlig1 has joined #openstack-dev | 01:22 | |
*** bencherian has joined #openstack-dev | 01:24 | |
*** dhellmann has quit IRC | 01:27 | |
*** PotHix has quit IRC | 01:32 | |
*** xchu has joined #openstack-dev | 01:36 | |
*** TaylorBaby1985 has joined #openstack-dev | 01:36 | |
*** garyk has quit IRC | 01:36 | |
*** bencherian has quit IRC | 01:38 | |
*** TaylorBaby1985 has quit IRC | 01:38 | |
*** bencherian has joined #openstack-dev | 01:39 | |
*** xtrusia has joined #openstack-dev | 01:39 | |
*** aeperezt has quit IRC | 01:40 | |
*** wenjianhn has joined #openstack-dev | 01:42 | |
*** wenjianhn has quit IRC | 01:44 | |
*** wenjianhn has joined #openstack-dev | 01:45 | |
*** alunduil has joined #openstack-dev | 01:47 | |
*** alunduil has quit IRC | 01:47 | |
*** alunduil has joined #openstack-dev | 01:48 | |
*** garyk has joined #openstack-dev | 01:48 | |
*** Tross has joined #openstack-dev | 01:51 | |
*** hemna has quit IRC | 01:51 | |
*** hemna has joined #openstack-dev | 01:53 | |
*** sdake has quit IRC | 01:57 | |
*** littleidea has joined #openstack-dev | 01:57 | |
*** sdake has joined #openstack-dev | 02:02 | |
*** sc68cal_ has joined #openstack-dev | 02:08 | |
*** sc68cal has quit IRC | 02:08 | |
*** Ryan_Lane has quit IRC | 02:18 | |
*** Mandell has quit IRC | 02:18 | |
*** Tross has quit IRC | 02:20 | |
*** littleidea has quit IRC | 02:21 | |
*** pvo has quit IRC | 02:25 | |
*** aeperezt has joined #openstack-dev | 02:27 | |
*** troytoman-away has quit IRC | 02:27 | |
*** pvo has joined #openstack-dev | 02:28 | |
*** dabo has quit IRC | 02:28 | |
*** sdake has quit IRC | 02:29 | |
*** belliott_ has quit IRC | 02:31 | |
*** littleidea has joined #openstack-dev | 02:33 | |
*** troytoman-away has joined #openstack-dev | 02:33 | |
*** dabo has joined #openstack-dev | 02:33 | |
*** Tross has joined #openstack-dev | 02:35 | |
*** pvo has quit IRC | 02:37 | |
*** pvo has joined #openstack-dev | 02:38 | |
*** troytoman-away has quit IRC | 02:38 | |
*** dabo has quit IRC | 02:38 | |
*** troytoman-away has joined #openstack-dev | 02:39 | |
*** dabo has joined #openstack-dev | 02:39 | |
*** sdake has joined #openstack-dev | 02:49 | |
*** sdake has quit IRC | 02:50 | |
*** stevebake_ has joined #openstack-dev | 02:53 | |
*** belliott_ has joined #openstack-dev | 02:54 | |
*** sdake has joined #openstack-dev | 02:55 | |
*** s0mik has joined #openstack-dev | 02:57 | |
*** winston-d has quit IRC | 02:58 | |
*** belliott_ has quit IRC | 02:58 | |
*** sdake has quit IRC | 03:00 | |
*** sdake has joined #openstack-dev | 03:02 | |
*** bencherian has quit IRC | 03:03 | |
*** s0mik has quit IRC | 03:05 | |
*** stevebake_ has quit IRC | 03:05 | |
*** stevebake_ has joined #openstack-dev | 03:09 | |
*** belliott_ has joined #openstack-dev | 03:09 | |
*** adjohn has quit IRC | 03:10 | |
*** Tross has quit IRC | 03:11 | |
*** markmcclain has quit IRC | 03:11 | |
*** matiu has quit IRC | 03:15 | |
*** matiu has joined #openstack-dev | 03:15 | |
*** koolhead17 has joined #openstack-dev | 03:17 | |
*** stevebake_ has quit IRC | 03:21 | |
*** koolhead17 has quit IRC | 03:32 | |
*** p`p has quit IRC | 03:36 | |
*** cakeblockd|b0ss has joined #openstack-dev | 03:36 | |
*** Tross has joined #openstack-dev | 03:37 | |
*** Tross has quit IRC | 03:40 | |
*** samkottler is now known as samkottler|afk | 03:40 | |
*** winston-d has joined #openstack-dev | 03:40 | |
*** jemartin_ has joined #openstack-dev | 03:41 | |
*** belliott_ has quit IRC | 03:42 | |
*** jemartin has quit IRC | 03:44 | |
*** jemartin_ is now known as jemartin | 03:44 | |
*** koolhead17 has joined #openstack-dev | 03:46 | |
*** winston-d has quit IRC | 03:46 | |
*** jimfehlig1 has quit IRC | 03:46 | |
*** Tross has joined #openstack-dev | 03:48 | |
*** jtran has quit IRC | 03:49 | |
*** sniperd has joined #openstack-dev | 03:50 | |
*** winston-d has joined #openstack-dev | 03:58 | |
*** Tross has quit IRC | 03:59 | |
*** mlavalle has left #openstack-dev | 04:01 | |
*** Tross has joined #openstack-dev | 04:04 | |
*** adjohn has joined #openstack-dev | 04:04 | |
*** harlowja has quit IRC | 04:09 | |
*** wenjianhn has quit IRC | 04:26 | |
*** Ryan_Lane has joined #openstack-dev | 04:28 | |
*** eglynn_ has joined #openstack-dev | 04:31 | |
*** jkoelker has quit IRC | 04:35 | |
*** eglynn has quit IRC | 04:36 | |
*** koolhead17 has quit IRC | 04:38 | |
*** jkoelker has joined #openstack-dev | 04:46 | |
*** spn__ has joined #openstack-dev | 04:47 | |
*** sniperd has quit IRC | 04:48 | |
*** aeperezt has quit IRC | 04:49 | |
*** jkoelker has quit IRC | 04:51 | |
*** jkoelker has joined #openstack-dev | 04:53 | |
*** wenjianhn has joined #openstack-dev | 04:54 | |
*** hattwick has quit IRC | 05:00 | |
*** spn has quit IRC | 05:02 | |
*** zhuadl has joined #openstack-dev | 05:03 | |
*** hattwick has joined #openstack-dev | 05:12 | |
*** gongysh has quit IRC | 05:18 | |
*** andrewbogott is now known as andrewbogott_afk | 05:24 | |
*** bencherian has joined #openstack-dev | 05:35 | |
*** \etc\bin has joined #openstack-dev | 05:38 | |
*** e1mer has quit IRC | 05:39 | |
*** gargya has joined #openstack-dev | 05:40 | |
*** spn__ has quit IRC | 05:40 | |
*** reed has quit IRC | 05:43 | |
*** almaisan-away is now known as al-maisan | 05:44 | |
*** gargya has quit IRC | 05:49 | |
*** cakeblockd|b0ss has quit IRC | 05:58 | |
*** cakeblockd|b0ss has joined #openstack-dev | 05:58 | |
*** spn has joined #openstack-dev | 05:59 | |
*** spn has quit IRC | 05:59 | |
*** spn has joined #openstack-dev | 05:59 | |
* ttx yawns | 06:01 | |
*** roge has joined #openstack-dev | 06:04 | |
*** spn has quit IRC | 06:05 | |
*** spn has joined #openstack-dev | 06:06 | |
*** spn_ has quit IRC | 06:07 | |
ttx | bcwaldon: missing reviews on https://review.openstack.org/#/c/13666/ | 06:07 |
ttx | blocking Glance RC3 | 06:07 |
*** zhidong has quit IRC | 06:09 | |
*** mrunge has joined #openstack-dev | 06:12 | |
*** zaneb has joined #openstack-dev | 06:15 | |
*** zhidong has joined #openstack-dev | 06:16 | |
*** darjeeli_ has quit IRC | 06:19 | |
*** gabrielhurley has quit IRC | 06:20 | |
*** mindpixel has joined #openstack-dev | 06:25 | |
*** adjohn has quit IRC | 06:28 | |
*** littleidea has quit IRC | 06:41 | |
*** gargya has joined #openstack-dev | 06:47 | |
*** rafaduran has joined #openstack-dev | 06:49 | |
*** edygarcia has quit IRC | 06:55 | |
*** roge has quit IRC | 06:57 | |
*** bencherian has quit IRC | 06:59 | |
*** reidrac has joined #openstack-dev | 07:17 | |
*** cakeblockd|b0ss is now known as p`p | 07:24 | |
zykes- | soren: ping | 07:28 |
*** salv-orlando has joined #openstack-dev | 07:45 | |
*** apevec has joined #openstack-dev | 07:52 | |
*** apevec has joined #openstack-dev | 07:52 | |
*** popux has joined #openstack-dev | 07:53 | |
*** zhuadl has quit IRC | 07:54 | |
*** EmilienM has joined #openstack-dev | 07:57 | |
*** alobbs has joined #openstack-dev | 07:58 | |
*** ccorrigan has joined #openstack-dev | 08:02 | |
*** derekh has joined #openstack-dev | 08:08 | |
*** danwent has quit IRC | 08:09 | |
*** aryan_ is now known as aryan | 08:11 | |
*** zing has joined #openstack-dev | 08:18 | |
*** darraghb has joined #openstack-dev | 08:19 | |
*** gargya_ has joined #openstack-dev | 08:20 | |
*** gargya has quit IRC | 08:21 | |
*** gargya_ is now known as gargya | 08:21 | |
*** spn has quit IRC | 08:34 | |
*** pixelbeat has joined #openstack-dev | 08:42 | |
*** markmc has joined #openstack-dev | 08:48 | |
*** danpb has joined #openstack-dev | 08:49 | |
*** gargya has quit IRC | 08:51 | |
*** gargya has joined #openstack-dev | 08:53 | |
*** winston-d has quit IRC | 08:57 | |
openstackgerrit | A change was merged to openstack/openstack-common: LOG.exception() should only be used in exception handler https://review.openstack.org/13640 | 09:01 |
*** oneiroi has joined #openstack-dev | 09:04 | |
*** oneiroi has joined #openstack-dev | 09:05 | |
*** xchu has quit IRC | 09:09 | |
*** dolphm has joined #openstack-dev | 09:15 | |
*** AnilV4 has quit IRC | 09:26 | |
*** EmilienM has quit IRC | 09:29 | |
*** AnilV4 has joined #openstack-dev | 09:31 | |
*** popux has quit IRC | 09:32 | |
*** rha has quit IRC | 09:39 | |
*** kyriakos has joined #openstack-dev | 09:57 | |
*** rha has joined #openstack-dev | 09:57 | |
*** rha has quit IRC | 09:57 | |
*** rha has joined #openstack-dev | 09:57 | |
*** mnewby has joined #openstack-dev | 10:03 | |
*** rha has quit IRC | 10:11 | |
*** darjeeling has joined #openstack-dev | 10:14 | |
*** rha has joined #openstack-dev | 10:15 | |
*** rha has quit IRC | 10:15 | |
*** rha has joined #openstack-dev | 10:15 | |
*** m4xmr has joined #openstack-dev | 10:20 | |
*** zing has quit IRC | 10:31 | |
*** zing has joined #openstack-dev | 10:31 | |
*** popux has joined #openstack-dev | 10:32 | |
*** mindpixel has quit IRC | 10:42 | |
zykes- | salv-orlando: ping | 10:45 |
zykes- | can anyone tell me please how the vnc is supposed to work with folsom ? | 10:54 |
*** darjeeling has quit IRC | 10:55 | |
*** salv-orlando_ has joined #openstack-dev | 10:57 | |
*** salv-orlando has quit IRC | 10:57 | |
*** salv-orlando_ is now known as salv-orlando | 10:57 | |
*** dhellmann has joined #openstack-dev | 10:59 | |
*** m4xmr has left #openstack-dev | 11:01 | |
*** chrisfer has joined #openstack-dev | 11:05 | |
*** torgomatic has quit IRC | 11:15 | |
*** torgomatic has joined #openstack-dev | 11:15 | |
*** roz has quit IRC | 11:27 | |
*** roz has joined #openstack-dev | 11:29 | |
*** waa has joined #openstack-dev | 11:32 | |
*** G has joined #openstack-dev | 11:34 | |
*** zhuadl has joined #openstack-dev | 11:38 | |
ttx | markwash (or anyone in glance-core): RC3-blocking review at https://review.openstack.org/#/c/13666/ | 11:39 |
*** wenjianhn has quit IRC | 11:40 | |
*** gargya has quit IRC | 11:58 | |
*** gargya has joined #openstack-dev | 12:03 | |
*** m4xmr has joined #openstack-dev | 12:05 | |
*** sandywalsh has joined #openstack-dev | 12:06 | |
*** sandywalsh_ has quit IRC | 12:07 | |
*** maurosr has joined #openstack-dev | 12:12 | |
*** alunduil has quit IRC | 12:16 | |
*** maurosr has quit IRC | 12:17 | |
*** darjeeling has joined #openstack-dev | 12:19 | |
*** popux has quit IRC | 12:19 | |
*** popux has joined #openstack-dev | 12:24 | |
*** mrunge has quit IRC | 12:27 | |
*** m4xmr has left #openstack-dev | 12:28 | |
*** EmilienM has joined #openstack-dev | 12:30 | |
*** mcolombo has joined #openstack-dev | 12:31 | |
*** sdake has quit IRC | 12:33 | |
*** sdake has joined #openstack-dev | 12:34 | |
*** roge has joined #openstack-dev | 12:37 | |
*** samkottler|afk is now known as samkottler | 12:41 | |
*** m4xmr_ has joined #openstack-dev | 12:42 | |
*** m4xmr_ is now known as m4xmr | 12:45 | |
*** m4xmr has left #openstack-dev | 12:47 | |
*** aeperezt has joined #openstack-dev | 12:49 | |
*** EmilienM has quit IRC | 12:54 | |
*** EmilienM has joined #openstack-dev | 12:55 | |
*** EmilienM has quit IRC | 12:55 | |
*** EmilienM has joined #openstack-dev | 12:55 | |
*** dprince has joined #openstack-dev | 12:56 | |
*** sandywalsh has quit IRC | 13:00 | |
*** sandywalsh has joined #openstack-dev | 13:00 | |
zykes- | New bug nova / quantum > https://bugs.launchpad.net/nova/+bug/1056835 | 13:01 |
uvirtbot | Launchpad bug 1056835 in quantum "nova boot with a specific nic doesn't work." [Undecided,New] | 13:01 |
*** belliott_ has joined #openstack-dev | 13:03 | |
*** nunosantos has joined #openstack-dev | 13:03 | |
*** nunosantos_ has joined #openstack-dev | 13:05 | |
salv-orlando | zykes-: seen your bug report. I think something along those lines was already discussed in meeting / reported as bug. My understanding is that we won't addressing this in nova. If you want to bind a specific ip configure a port for your vid in quantum and pass --nic port-id=<quantum_port_id> | 13:09 |
salv-orlando | I will check, confirm, and come back at you later on | 13:10 |
zykes- | salv-orlando: goodness ;) | 13:11 |
zykes- | salv-orlando: what you think the chances are of getting to land Floating IP support in early GrizzlY ? | 13:11 |
salv-orlando | what kind of support for floating IP? Don't tell me the ones we have in Quantum are totally broken too for you :) | 13:13 |
zykes- | ehm, I mean SG support sorry and proper overlapping ips ;) | 13:14 |
zykes- | either that for me or to get Nicira or similar | 13:14 |
*** alunduil has joined #openstack-dev | 13:15 | |
*** littleidea has joined #openstack-dev | 13:15 | |
*** alunduil has quit IRC | 13:17 | |
salv-orlando | we surely will be addressing sg in open source plugins asap | 13:17 |
salv-orlando | possibly even before the summit. | 13:17 |
*** kbringard has joined #openstack-dev | 13:17 | |
*** alunduil has joined #openstack-dev | 13:17 | |
salv-orlando | The first goal would be porting the iptables firewall driver to quantum and add namespace support | 13:17 |
salv-orlando | then we'll se if for some plugins we can do something fancier. But the above would be a good first step. | 13:18 |
zykes- | I would be glad to help with testing and feedback | 13:18 |
zykes- | this whole thing means alot in order for me to get this show on the road ;) | 13:19 |
zykes- | nova boot --flavor m1.small --image ttylinux-amd64 --key-name default test --nic port-id=96e41ff1-abd3-4330-83c6-f5294311cc1f < this btw salv-orlando gives: ERROR: The server has either erred or is incapable of performing the requested operation. (HTTP 500) (Request-ID: req-9cedef35-1514-42d4-afe4-125e55eb0364) | 13:20 |
salv-orlando | I am pretty sure it used to work - I am busy with other stuff right now, I will check it later. | 13:21 |
zykes- | ok, thanks very much :) | 13:22 |
salv-orlando | zykes-: works for me. | 13:24 |
salv-orlando | Could that not be quantum related for once? :) | 13:24 |
zykes- | ah, crap | 13:24 |
salv-orlando | I pass --image <uuid> instead of name and I've tested without key name | 13:24 |
salv-orlando | nova boot --image f452245d-eadd-46f3-afd8-f53fe277c786 --flavor 1 --nic port-id=f349003b-0025-423a-9855-e630912d4a54 testaccio | 13:24 |
zykes- | wrong id, i passed network id instead :P | 13:24 |
*** markmc has quit IRC | 13:25 | |
zykes- | I set it to invalid | 13:25 |
*** tgall_foo has joined #openstack-dev | 13:25 | |
*** tgall_foo has quit IRC | 13:25 | |
*** tgall_foo has joined #openstack-dev | 13:25 | |
*** tgall_foo has quit IRC | 13:26 | |
*** tgall_foo has joined #openstack-dev | 13:28 | |
*** tgall_foo has quit IRC | 13:29 | |
*** tgall_foo has joined #openstack-dev | 13:29 | |
*** halphass has joined #openstack-dev | 13:31 | |
*** halphass has left #openstack-dev | 13:34 | |
*** mrodden has joined #openstack-dev | 13:36 | |
*** belliott_ has quit IRC | 13:36 | |
*** EmilienM has quit IRC | 13:38 | |
*** EmilienM has joined #openstack-dev | 13:38 | |
*** eharney has joined #openstack-dev | 13:38 | |
*** eharney is now known as Guest78691 | 13:39 | |
zykes- | salv-orlando: my l3 agent compains about not finding a interface called qg-bf5c1093-d0 any clues | 13:41 |
salv-orlando | not really - but it seems bug 1051679? | 13:43 |
salv-orlando | \ | 13:43 |
uvirtbot | Launchpad bug 1051679 in quantum "Error running ip netns command with l3-agent" [Medium,Incomplete] https://launchpad.net/bugs/1051679 | 13:43 |
zykes- | i'm not using namespaces | 13:43 |
salv-orlando | k | 13:43 |
zykes- | disabled all together :) | 13:43 |
*** sniperd has joined #openstack-dev | 13:44 | |
salv-orlando | Did you change the name of the external bridge? | 13:44 |
salv-orlando | and then rebooted the l3 agent? | 13:44 |
zykes- | My external bridge is called br-ex | 13:45 |
*** belliott_ has joined #openstack-dev | 13:48 | |
*** bjweaver has joined #openstack-dev | 13:49 | |
bjweaver | What is the latest version of essex? On launchpad I see 2012.1.2 but Ubuntu has a 2012.1.3 package version ? | 13:50 |
*** primeministerp has joined #openstack-dev | 13:51 | |
zykes- | http://paste.ubuntu.com/1228489/ < salv-orlando | 13:51 |
*** gongysh has joined #openstack-dev | 13:51 | |
salv-orlando | it really is the same stack trace au bug1051679 :) | 13:52 |
salv-orlando | isn't it? | 13:52 |
salv-orlando | gosh did I really say "stack trace" | 13:52 |
salv-orlando | Oh God of Python, please forgive me! | 13:52 |
zykes- | salv-orlando: except that I don't use namespaces ? ;) | 13:52 |
zykes- | "use_namespaces = False" | 13:53 |
*** markmc has joined #openstack-dev | 13:53 | |
salv-orlando | zykes-: this might mean the namespaces are not the root cause | 13:54 |
salv-orlando | Can I ask something more? | 13:55 |
*** tgall_foo has quit IRC | 14:02 | |
ttx | bcwaldon: please ack https://review.openstack.org/#/c/13666/ and find another reviewer :) | 14:06 |
*** mrodden1 has joined #openstack-dev | 14:06 | |
*** tgall_foo has joined #openstack-dev | 14:06 | |
*** tgall_foo has quit IRC | 14:06 | |
*** tgall_foo has joined #openstack-dev | 14:06 | |
*** n0ano has quit IRC | 14:07 | |
*** Ruetobas has quit IRC | 14:07 | |
*** mrodden has quit IRC | 14:08 | |
*** japage has joined #openstack-dev | 14:09 | |
*** Ruetobas has joined #openstack-dev | 14:10 | |
*** edygarcia has joined #openstack-dev | 14:11 | |
*** gargya has quit IRC | 14:11 | |
*** gargya has joined #openstack-dev | 14:12 | |
*** sc68cal_ is now known as sc68cal | 14:13 | |
*** sc68cal has quit IRC | 14:13 | |
*** sc68cal has joined #openstack-dev | 14:13 | |
mordred | markmc: morning | 14:14 |
markmc | mordred, hey | 14:14 |
markmc | mordred, you sound much more evil in your new costume | 14:14 |
mordred | markmc: BWAHAHAHA | 14:14 |
mordred | markmc: (that was supposed to be an evil laugh) | 14:15 |
markmc | mordred, got it :) | 14:15 |
mordred | markmc: so, some stuff broke in the latest git-review which has your commands reorg in it | 14:15 |
*** dhellmann is now known as dhellmann-afk | 14:15 | |
*** eharney has joined #openstack-dev | 14:15 | |
mordred | markmc: enough that we're pinning some CI stuff on 1.17 for now ... if you have a moment, could you look at a bug or two and see if there's an easy fix in your head? | 14:16 |
markmc | mordred, sure, could you send me mail? | 14:16 |
* markmc on a call | 14:16 | |
mordred | markmc: yup. will do. thanks! | 14:16 |
markmc | mordred, np | 14:16 |
*** mcolombo has quit IRC | 14:21 | |
*** \etc\bin has quit IRC | 14:22 | |
*** maurosr has joined #openstack-dev | 14:25 | |
*** maurosr has quit IRC | 14:29 | |
*** dhellmann-afk is now known as dhellmann | 14:29 | |
*** sniperd_ has joined #openstack-dev | 14:31 | |
*** dolphm has quit IRC | 14:31 | |
*** maurosr has joined #openstack-dev | 14:31 | |
*** sniperd has quit IRC | 14:32 | |
*** dspano has joined #openstack-dev | 14:32 | |
*** Gordonz has joined #openstack-dev | 14:36 | |
*** Gordonz has quit IRC | 14:36 | |
*** maurosr has quit IRC | 14:36 | |
*** Gordonz has joined #openstack-dev | 14:36 | |
*** bencherian has joined #openstack-dev | 14:38 | |
*** maurosr has joined #openstack-dev | 14:40 | |
*** dani4571 has joined #openstack-dev | 14:40 | |
*** maurosr has quit IRC | 14:44 | |
*** sniperd_ has quit IRC | 14:45 | |
*** maurosr has joined #openstack-dev | 14:45 | |
*** deva_zzz is now known as devananda | 14:45 | |
*** bencherian has quit IRC | 14:48 | |
*** maurosr has quit IRC | 14:50 | |
*** statik has quit IRC | 14:50 | |
*** edygarcia_ has joined #openstack-dev | 14:52 | |
*** colinmcnamara has joined #openstack-dev | 14:53 | |
*** edygarcia__ has joined #openstack-dev | 14:54 | |
*** koolhead17 has joined #openstack-dev | 14:54 | |
*** edygarcia has quit IRC | 14:56 | |
*** edygarcia___ has joined #openstack-dev | 14:56 | |
*** renier has quit IRC | 14:56 | |
*** chrisfer has quit IRC | 14:56 | |
*** edygarcia_ has quit IRC | 14:57 | |
*** edygarcia__ has quit IRC | 14:59 | |
*** dolphm has joined #openstack-dev | 15:00 | |
*** mrodden has joined #openstack-dev | 15:00 | |
*** maurosr has joined #openstack-dev | 15:01 | |
*** datsun180b has joined #openstack-dev | 15:02 | |
*** renier has joined #openstack-dev | 15:02 | |
*** mrodden1 has quit IRC | 15:02 | |
*** bjweaver has quit IRC | 15:02 | |
*** reidrac has quit IRC | 15:04 | |
*** statik has joined #openstack-dev | 15:04 | |
*** statik has quit IRC | 15:06 | |
*** torandu has quit IRC | 15:07 | |
*** torandu has joined #openstack-dev | 15:09 | |
*** salv-orlando_ has joined #openstack-dev | 15:11 | |
*** salv-orlando has quit IRC | 15:11 | |
*** salv-orlando_ is now known as salv-orlando | 15:11 | |
*** danwent has joined #openstack-dev | 15:11 | |
*** m4xmr has joined #openstack-dev | 15:12 | |
*** metral has joined #openstack-dev | 15:13 | |
*** ewindisch has quit IRC | 15:14 | |
ttx | dprince: care to review https://review.openstack.org/#/c/13666/ ? Blocking Glance RC3 | 15:15 |
*** ewindisch has joined #openstack-dev | 15:15 | |
dprince | ttx: sure | 15:15 |
ttx | dprince: thx | 15:15 |
*** ewindisch has quit IRC | 15:16 | |
*** jaypipes has joined #openstack-dev | 15:19 | |
*** cp16net is now known as cp16net|away | 15:20 | |
*** colinmcnamara has quit IRC | 15:20 | |
*** apevec has quit IRC | 15:22 | |
*** colinmcnamara has joined #openstack-dev | 15:22 | |
*** hemna has quit IRC | 15:23 | |
*** dubsquared has joined #openstack-dev | 15:24 | |
*** samkottler is now known as samkottler|brb | 15:25 | |
*** markmcclain has joined #openstack-dev | 15:25 | |
*** ewindisch has joined #openstack-dev | 15:25 | |
*** danpb has quit IRC | 15:26 | |
*** cp16net|away is now known as cp16net | 15:31 | |
*** jcru has joined #openstack-dev | 15:31 | |
*** markmcclain has quit IRC | 15:33 | |
openstackgerrit | A change was merged to openstack/glance: Change type of rabbit_durable_queues to boolean. https://review.openstack.org/13666 | 15:34 |
*** danwent has quit IRC | 15:34 | |
*** apevec has joined #openstack-dev | 15:35 | |
*** apevec has joined #openstack-dev | 15:35 | |
*** markmcclain has joined #openstack-dev | 15:36 | |
*** al-maisan is now known as almaisan-away | 15:36 | |
ttx | bcwaldon: still clear to do Glance RC3 as soon as the backport lands ? | 15:37 |
*** statik has joined #openstack-dev | 15:37 | |
bcwaldon | ttx: yessir | 15:38 |
*** markmcclain has quit IRC | 15:38 | |
*** samkottler|brb is now known as samkottler | 15:40 | |
*** popux has quit IRC | 15:41 | |
*** colinmcnamara has quit IRC | 15:42 | |
*** edygarcia___ has quit IRC | 15:43 | |
markwash | bcwaldon thoughts about uuid migration? | 15:44 |
markwash | bcwaldon: ameade_ wants me to do some more docstrings, so I'm going to hit that | 15:44 |
bcwaldon | markwash: I attempted to get an env up that I could test it with again | 15:44 |
bcwaldon | markwash: I'm going to have to try that again | 15:45 |
markwash | bcwaldon: let me know if you need any help getting postgres setup | 15:46 |
bcwaldon | markwash: I'm probably just going to test mysql | 15:46 |
markwash | bcwaldon: it was obnoxious but I remember | 15:46 |
zykes- | salv-orlando: sure, ask away | 15:46 |
*** littleidea has quit IRC | 15:46 | |
salv-orlando | zykes-: is the problem intermittent or persistent? | 15:48 |
*** thingee_zz is now known as thingee | 15:49 | |
zykes- | I have rebooted the machine even | 15:49 |
zykes- | and it doesn't work | 15:50 |
*** gargya has quit IRC | 15:51 | |
*** andrewbogott_afk is now known as andrewbogott | 15:52 | |
*** littleidea has joined #openstack-dev | 15:54 | |
*** winston-d has joined #openstack-dev | 15:55 | |
ttx | bcwaldon: tagging a9f0a4c4dbac0c92c431150161915bd5459a42d0 as glance folsom-rc3 | 15:57 |
zykes- | salv-orlando: what can the error be ? | 15:57 |
russellb | garyk: around? had some basic quantum questions. It looks like schema versioning isn't being done for quantum db usage yet? Is that right? | 15:57 |
russellb | (or anyone else that works on quantum) | 15:58 |
salv-orlando | I need the output of both ovs-vsctl list-ports and ovs-dpctl show for the bridge you're using as externals | 15:58 |
salv-orlando | russellb: no schema versioning yet | 15:58 |
*** kyriakos has quit IRC | 15:58 | |
russellb | k, guess that's fine for folsom, but between folsom and grizzly will be added if the schema changes? | 15:58 |
*** reed has joined #openstack-dev | 15:59 | |
jgriffith | cinder meeting in #openstack-meeting starting now | 16:00 |
*** rafaduran has quit IRC | 16:00 | |
*** ghe has joined #openstack-dev | 16:00 | |
*** ghe is now known as Ghe_Rivero | 16:00 | |
*** danwent has joined #openstack-dev | 16:01 | |
*** reed has quit IRC | 16:03 | |
*** markmcclain has joined #openstack-dev | 16:04 | |
ttx | bcwaldon: Glance RC3 is out | 16:05 |
*** mrodden1 has joined #openstack-dev | 16:05 | |
*** dubsquared has quit IRC | 16:06 | |
bcwaldon | ttx: thanks! | 16:06 |
*** mrodden has quit IRC | 16:07 | |
ttx | will be back later today for go/nogo discussions | 16:07 |
*** adjohn has joined #openstack-dev | 16:08 | |
*** jdurgin has joined #openstack-dev | 16:10 | |
salv-orlando | russellb: we'll have a full upgrade story, including schema changes | 16:12 |
russellb | awesome thanks :) | 16:12 |
*** littleidea has quit IRC | 16:14 | |
*** rnirmal has joined #openstack-dev | 16:17 | |
zykes- | http://paste.ubuntu.com/1228725/ < salv-orlando | 16:20 |
zykes- | oh, nvm | 16:20 |
*** derekh has quit IRC | 16:21 | |
zykes- | http://paste.ubuntu.com/1228729/ < salv-orlando | 16:21 |
*** mmalesky has quit IRC | 16:22 | |
*** jtran has joined #openstack-dev | 16:22 | |
*** danpb has joined #openstack-dev | 16:22 | |
*** m4xmr has quit IRC | 16:23 | |
*** mmalesky_ has quit IRC | 16:24 | |
*** utlemming has quit IRC | 16:28 | |
garyk | russellb: hi. | 16:29 |
russellb | garyk: hey, got the answer i was looking for, no worries | 16:29 |
garyk | russellb: ok, great | 16:29 |
zykes- | salv-orlando: hints ? | 16:31 |
*** edygarcia has joined #openstack-dev | 16:34 | |
*** utlemming has joined #openstack-dev | 16:35 | |
*** bencherian has joined #openstack-dev | 16:36 | |
*** gongysh has quit IRC | 16:37 | |
*** titankiller has joined #openstack-dev | 16:39 | |
*** gongysh has joined #openstack-dev | 16:40 | |
*** hemna has joined #openstack-dev | 16:40 | |
*** gongysh_ has joined #openstack-dev | 16:43 | |
*** winston-d has quit IRC | 16:44 | |
*** gongysh has quit IRC | 16:47 | |
*** Ghe_Rivero has quit IRC | 16:48 | |
*** maploin has joined #openstack-dev | 16:49 | |
*** maploin has quit IRC | 16:49 | |
*** maploin has joined #openstack-dev | 16:49 | |
*** heckj has joined #openstack-dev | 16:52 | |
*** zaitcev has joined #openstack-dev | 16:55 | |
*** salv-orlando has quit IRC | 16:56 | |
*** harlowja has joined #openstack-dev | 16:57 | |
*** mcolombo has joined #openstack-dev | 16:57 | |
*** apevec has quit IRC | 17:00 | |
*** Ghe_Rivero has joined #openstack-dev | 17:02 | |
*** jemartin has quit IRC | 17:05 | |
*** jemartin has joined #openstack-dev | 17:05 | |
*** maurosr has quit IRC | 17:05 | |
*** waa has quit IRC | 17:06 | |
*** Mandell has joined #openstack-dev | 17:07 | |
*** darraghb has quit IRC | 17:14 | |
*** dhellmann is now known as dhellmann-afk | 17:14 | |
*** maploin` has joined #openstack-dev | 17:14 | |
*** s0mik has joined #openstack-dev | 17:16 | |
*** maploin has quit IRC | 17:16 | |
*** maurosr has joined #openstack-dev | 17:17 | |
openstackgerrit | A change was merged to openstack/nova: xenapi: increase timeout for resetnetwork agent request https://review.openstack.org/13717 | 17:17 |
openstackgerrit | A change was merged to openstack/quantum: Add log setting options into quantum.conf. https://review.openstack.org/13690 | 17:18 |
*** thingee is now known as thingee_zz | 17:21 | |
*** zing has quit IRC | 17:21 | |
*** zing has joined #openstack-dev | 17:22 | |
*** zing has quit IRC | 17:22 | |
*** lloydde has joined #openstack-dev | 17:24 | |
*** danpb has quit IRC | 17:26 | |
*** littleidea has joined #openstack-dev | 17:27 | |
*** maoy has joined #openstack-dev | 17:30 | |
*** samkottler is now known as samkottler|afk | 17:30 | |
*** soosiechoi has joined #openstack-dev | 17:31 | |
*** chrisfer has joined #openstack-dev | 17:32 | |
*** belliott_ has quit IRC | 17:32 | |
jgriffith | jaypipes: ping | 17:34 |
*** mdomsch has joined #openstack-dev | 17:34 | |
*** mdomsch has quit IRC | 17:34 | |
jaypipes | jgriffith: pong | 17:37 |
*** belliott has quit IRC | 17:37 | |
jgriffith | jaypipes: Hey ya... I've been noticing an increase in volume failures in tempest | 17:37 |
jgriffith | jaypipes: Trying to gather some data on timeouts | 17:38 |
jaypipes | k | 17:38 |
jaypipes | jgriffith: gotta a link for me? | 17:38 |
jgriffith | jaypipes: Was wondering if there is an *archive* of the logs etc? | 17:38 |
*** belliott has joined #openstack-dev | 17:38 | |
* jgriffith is unprepared.. no links | 17:38 | |
jgriffith | :( | 17:38 |
jaypipes | jgriffith: logs.openstack.org | 17:38 |
jaypipes | jgriffith: one sec, digging in... | 17:39 |
jgriffith | jaypipes: Well duhhh :) | 17:39 |
*** dolphm has quit IRC | 17:39 | |
jgriffith | jaypipes: bahhh... let me grab my decoder ring :) | 17:39 |
jaypipes | jgriffith: you concerned about the cinder one or the main one? | 17:39 |
jgriffith | jaypipes: cinder | 17:40 |
jaypipes | k | 17:40 |
jgriffith | jaypipes: It's just a hunch, but I think we're timing out on deletes | 17:40 |
jgriffith | jaypipes: Trying to figure out what may have caused it to slow. | 17:41 |
jaypipes | jgriffith: I'm not seeing any errors... | 17:41 |
jgriffith | jaypipes: Hmmm | 17:41 |
jgriffith | jaypipes: Lemme see if I can find the ones I was looking at last night/this morning | 17:42 |
jaypipes | jgriffith: k. | 17:42 |
*** almaisan-away is now known as al-maisan | 17:42 | |
jaypipes | jeblair, davidkranz: am I correct in seeing that the gate-tempest-devstack-vm job is only running smoke tests? | 17:42 |
jaypipes | https://jenkins.openstack.org/view/Tempest/job/gate-tempest-devstack-vm/13040/console | 17:42 |
*** soosiechoi has quit IRC | 17:43 | |
jeblair | jaypipes: yes, that was for a change to nova, so only the smoke tests are run | 17:44 |
*** soosiechoi has joined #openstack-dev | 17:44 | |
jaypipes | jeblair: so we currently have zero gate jobs that run the entire tempest test suite? | 17:44 |
*** metral has quit IRC | 17:44 | |
jeblair | jaypipes: i believe changes to tempest run the whole suite | 17:45 |
*** metral has joined #openstack-dev | 17:45 | |
*** belliott has quit IRC | 17:45 | |
*** belliott has joined #openstack-dev | 17:46 | |
*** dolphm has joined #openstack-dev | 17:47 | |
*** al-maisan is now known as almaisan-away | 17:48 | |
jgriffith | jaypipes: Actually, it's devstack exercises and smokestack... never mind | 17:49 |
jgriffith | jaypipes: My own testing is showing intermittent timeouts in tempest | 17:50 |
jgriffith | jaypipes: I'll keep looking/gathering data | 17:50 |
jgriffith | jaypipes: sorry for the distraction | 17:50 |
jaypipes | jgriffith: k, I'm interested. keep me in the loop man. | 17:50 |
jgriffith | jaypipes: will do | 17:50 |
*** belliott has quit IRC | 17:51 | |
*** belliott has joined #openstack-dev | 17:52 | |
*** dolphm has quit IRC | 17:57 | |
*** glenc_ is now known as glenc | 17:58 | |
*** maurosr has quit IRC | 17:58 | |
*** maurosr has joined #openstack-dev | 17:58 | |
*** mrodden has joined #openstack-dev | 17:59 | |
*** rafaduran has joined #openstack-dev | 18:00 | |
*** mrodden1 has quit IRC | 18:00 | |
sdague | jaypipes: that lack of complete gating was one of the big reasons for the alternative framework discussion for tempest | 18:02 |
jaypipes | sdague: yeah, remembering now... but that was a discussion about the gating of Nova/Keystone/Glance, not Tempest itself, which, as jeblair points out above is still gated on the entire Tempest test suite | 18:03 |
sdague | jaypipes: right | 18:04 |
sdague | I have an interesting idea, what if we only run full tempest as informational on patch upload. That would get tempest running fully on the code per patch, but do it prior to reviews, so it wouldn't back up the merge | 18:06 |
sdague | by "only" I actually mean, as an additional test | 18:06 |
sdague | to what's currently running | 18:06 |
arosen1 | Hey vishy you around? | 18:07 |
*** Ghe_Rivero has quit IRC | 18:08 | |
*** belliott has quit IRC | 18:09 | |
*** s0mik has quit IRC | 18:11 | |
*** anniec has joined #openstack-dev | 18:11 | |
*** s0mik has joined #openstack-dev | 18:13 | |
*** reed has joined #openstack-dev | 18:21 | |
*** roge has quit IRC | 18:22 | |
*** krtaylor has quit IRC | 18:22 | |
reed | markmc: ping | 18:24 |
*** roge has joined #openstack-dev | 18:24 | |
*** soosiechoi has quit IRC | 18:25 | |
*** praefect has joined #openstack-dev | 18:26 | |
*** soosiechoi has joined #openstack-dev | 18:29 | |
*** edygarcia has quit IRC | 18:30 | |
*** belliott has joined #openstack-dev | 18:31 | |
*** soren has quit IRC | 18:31 | |
*** edygarcia has joined #openstack-dev | 18:31 | |
*** belliott has quit IRC | 18:32 | |
heckj | markmc: around? | 18:32 |
heckj | heh - | 18:32 |
markmc | reed, yep? | 18:32 |
heckj | popular ddue | 18:32 |
markmc | heckj, I guess so :) | 18:32 |
markmc | can only mean trouble | 18:32 |
*** soren has joined #openstack-dev | 18:32 | |
*** ChanServ sets mode: +v soren | 18:32 | |
reed | markmc: did you try running your gitdm script already? | 18:32 |
*** belliott has joined #openstack-dev | 18:33 | |
reed | I'm looking for a validation to my numbers | 18:33 |
heckj | markmc: have an essex backport of a bugfix for keystone that we just slapped into RC2 for the folsom release - it's prepped and ready for an essex backport as well. Wanted to check and see if you wanted eyes on it before I approve against that branch: https://review.openstack.org/#/c/13718/ | 18:33 |
markmc | reed, yep, just the git part not the gerrit and launchpad part | 18:33 |
markmc | reed, I'll send you something later, how about that? | 18:33 |
*** n0ano has joined #openstack-dev | 18:33 | |
reed | sounds good, I'm running it myself here... is your github repo up to date? | 18:33 |
markmc | reed, yeah, I updated some stuff last time I ran it | 18:34 |
reed | ok, pulling from it | 18:34 |
markmc | heckj, yep, saw that - was thinking apevec would look at it; I will later if not | 18:34 |
heckj | kk - sounds good, thanks - will leave as it stands | 18:35 |
reed | markmc: a changeset in gitdm terms is not the same as a commit? | 18:35 |
markmc | reed, changeset == commit AIUI | 18:35 |
*** s0mik has quit IRC | 18:35 | |
openstackgerrit | A change was merged to openstack/python-keystoneclient: switching options to match authentication paths https://review.openstack.org/13590 | 18:35 |
reed | AIUI? | 18:36 |
reed | is swahili for 'hit me with a stone'? | 18:36 |
* heckj searches for good rocks | 18:36 | |
sdague | reed: you might want to verify some of the people to orgs mappings. I don't think the current listing takes into account folks moving to nebula, for instance | 18:36 |
heckj | reed: heh - I can help with that if you need | 18:37 |
reed | sdague, I think we did that already | 18:37 |
heckj | got a list I can review, can verify it pretty quickly | 18:37 |
*** dubsquared has joined #openstack-dev | 18:37 | |
heckj | reed: that was supposed to be "if you have a list I can review, I can verify it pretty quickly" - at least as far as nebula employees goes | 18:37 |
reed | heckj, https://github.com/markmc/openstack-gitdm/tree/master/openstack-config/groups | 18:37 |
markmc | reed, ISTR AIUI stands for "As I Understand It" FWIW FYI KTHXBAI | 18:38 |
sdague | reed: ok, didn't see that in markmc's repo | 18:38 |
heckj | reed - how would you like updates? | 18:38 |
reed | heckj, pull requests to markmc on github is the fave way to edit it | 18:39 |
reed | or patches, to markmc please | 18:39 |
heckj | word - | 18:39 |
markmc | heckj, also note https://github.com/markmc/openstack-gitdm/blob/master/openstack-config/domain-map | 18:39 |
markmc | heckj, and https://github.com/markmc/openstack-gitdm/blob/master/openstack-config/domain-map | 18:39 |
markmc | heckj, e.g. don't need to explicitly list all @nebula.com and @ansolabs.com addresses | 18:40 |
markmc | heckj, and there's a bunch of nebula folks in https://github.com/markmc/openstack-gitdm/blob/master/openstack-config/email-map | 18:40 |
* markmc realizes he pasted the same URL twice :) | 18:40 | |
sdague | markmc: ah, I was missing email-map :) | 18:42 |
reed | markmc: how many hackers did you get in total? | 18:42 |
sdague | markmc: jaypipes is now at at&t | 18:43 |
markmc | reed, around 300 | 18:43 |
markmc | sdague, good point, got a date? | 18:44 |
reed | markmc: 305 with your script, 332 on my database :/ | 18:44 |
reed | close... trying to see why the difference | 18:44 |
openstackgerrit | A change was merged to openstack/openstack-common: Extracted parse_host_port into network_utils. https://review.openstack.org/13724 | 18:44 |
sdague | umm... summer. jaypipes can maybe illuminate that | 18:44 |
jaypipes | quoi? | 18:44 |
bcwaldon | jeblair: ping | 18:44 |
reed | I thought I put jaypipes in ATT group already | 18:44 |
* reed failed at that | 18:45 | |
reed | jaypipes, when did you move to ATT? | 18:45 |
reed | date, more or less | 18:45 |
*** soosiechoi has joined #openstack-dev | 18:45 | |
notmyname | reed: do you need anything from me on the swift side? | 18:46 |
*** soosiechoi has quit IRC | 18:47 | |
reed | notmyname, you also may want to review https://github.com/markmc/openstack-gitdm/tree/master/openstack-config and make sure that all affiliations are correct | 18:47 |
heckj | reed, markmc: https://github.com/markmc/openstack-gitdm/pull/4 | 18:47 |
heckj | markmc - saw that - looks like only one more was missed from my quick look for the rackspace/nebula change | 18:48 |
*** mrodden1 has joined #openstack-dev | 18:48 | |
*** kbringard has quit IRC | 18:48 | |
*** novas0x2a|laptop has joined #openstack-dev | 18:49 | |
markmc | heckj, thanks, merged | 18:49 |
markmc | heckj, putting it the nebula group and email-map probably confuses things | 18:49 |
* markmc fixes | 18:49 | |
*** titankiller has quit IRC | 18:51 | |
notmyname | reed: seems to be missing a swiftstack group. I think it should just have my email in it | 18:51 |
sdague | markmc: am I missing something, or is that still basing commits for essex? | 18:51 |
heckj | markmc: ah - sorry, wasn't sure how to make that "right" | 18:51 |
markmc | notmyname, covered by domain-map and email-map | 18:52 |
*** mrodden has quit IRC | 18:52 | |
heckj | markmc: so use domain-map for folks who haven't moved around, email-map for those that have | 18:52 |
*** andrewbogott is now known as andrewbogott_afk | 18:52 | |
markmc | notmyname, email-map shows your move to swiftstack | 18:52 |
*** andrewbogott_afk is now known as andrewbogott | 18:52 | |
notmyname | markmc: ah, gotcha. sorry, I don't know the order things are applied | 18:53 |
markmc | notmyname, and AFAICT others from swiftstack have been using @swiftstack.com | 18:53 |
notmyname | markmc: after mailmap translations, yes | 18:53 |
markmc | notmyname, oh, also - aliases comes into play so spam@andcheese.org is aliased to sam@swiftstack.com and then caught by domain-map | 18:53 |
markmc | notmyname, right | 18:53 |
markmc | heckj, right, petty much | 18:54 |
markmc | sdague, I'll add a folsom dir later | 18:54 |
*** thingee_zz is now known as thingee | 18:54 | |
sdague | markmc: cool, just curious. Might explain reed's mismatch, unless he had it seperately | 18:55 |
jaypipes | reed: June 4th. | 18:57 |
* ttx sees no red flag yet, will be back in a couple hours. | 18:58 | |
*** markmc has quit IRC | 18:59 | |
*** andrewbogott is now known as andrewbogott_afk | 19:02 | |
*** ewindisch has quit IRC | 19:04 | |
*** gatuus has joined #openstack-dev | 19:05 | |
jeblair | bcwaldon: pong | 19:05 |
notmyname | reed: I updated my move date in email-map | 19:05 |
reed | sweet, send a pull request to markmc | 19:05 |
*** dubsquared has quit IRC | 19:07 | |
notmyname | ya, I did the while github "edit this file" pull request thing | 19:07 |
*** dolphm has joined #openstack-dev | 19:10 | |
*** maploin` has quit IRC | 19:11 | |
vishy | jgriffith: sad that this didn't make it: https://review.openstack.org/#/c/13327/ | 19:11 |
vishy | jgriffith: be nice to stable-folsom that asap | 19:11 |
jgriffith | vishy: Yeah, talked with ttx briefly this morning about it | 19:12 |
*** heckj has quit IRC | 19:12 | |
jgriffith | vishy: I'll ping clay and get it moving again | 19:12 |
jgriffith | clayg: ping :) | 19:12 |
jgriffith | vishy: Or I can just sync things up myself... I'll see what clay wants to do on it | 19:13 |
*** ewindisch has joined #openstack-dev | 19:14 | |
*** dubsquared has joined #openstack-dev | 19:14 | |
*** dhellmann-afk is now known as dhellmann | 19:16 | |
*** dolphm has quit IRC | 19:16 | |
*** dubsquared has quit IRC | 19:17 | |
*** dubsquared has joined #openstack-dev | 19:18 | |
*** heckj has joined #openstack-dev | 19:18 | |
*** krtaylor has joined #openstack-dev | 19:20 | |
*** andrewbogott_afk is now known as andrewbogott | 19:22 | |
clayg | jgriffith: been busy, whats up? | 19:22 |
arosen1 | Hi vishy I had a question for you if you have a sec. | 19:22 |
vishy | arosen1: go | 19:22 |
jgriffith | clayg: We were just talking about https://review.openstack.org/#/c/13327/ | 19:23 |
clayg | jgriffith: vishy: oh... yeah... | 19:23 |
jgriffith | clayg: Any interest on your part in reviving that? | 19:23 |
arosen1 | vishy: I added the call to trigger_instance[add/remove]_security_group_refresh here https://review.openstack.org/#/c/13726/ | 19:23 |
clayg | jgriffith: vishy: so I need that patch, i'm not going to forget about it, but we've been busy - end of the week maybe | 19:23 |
arosen1 | but I think it really should be done in compute/manager.py (def _allocate_network(self, context, instance, requested_networks):/ def _deallocate_network(self, context, instance): ) | 19:23 |
jgriffith | clayg: That would mean pulling in the common/policy stuff | 19:23 |
arosen1 | vishy: What do you think? | 19:23 |
jgriffith | clayg: I think that's fine | 19:24 |
clayg | jgriffith: vishy: I was planning on creating a seperate branch to pull in common/policy and resubmitting this patch for the contex_is_admin policy with the common merge as a dependency | 19:24 |
*** bencherian has quit IRC | 19:24 | |
jgriffith | clayg: Yes | 19:24 |
jgriffith | clayg: should definitely be seperate patches IMO | 19:25 |
vishy | arosen1: ugh circular import is nasty. I guess security_group_api should be in its own file | 19:25 |
clayg | ok, sorry it's taking me so long, sorry if you felt i was ignoring ya'lls feedback | 19:25 |
jgriffith | clayg: I forgot about it until ttx pointed it out this morning so no worries here | 19:25 |
vishy | arosen1: why in the manager? I mean quantum doesn't use the manager so it would have to be in the quantumv2 api on that side. | 19:25 |
vishy | arosen1: and if that is the case, should it be in the api on the nova-network side as well? | 19:26 |
arosen1 | vishy: compute/manager.py | 19:26 |
vishy | arosen1: ah the compute manager | 19:27 |
vishy | arosen1: sorry I saw network manager for some reason | 19:27 |
arosen1 | vishy: yup the code should be in the nova-network side as well so it was in called in _allocate_network it would be | 19:27 |
arosen1 | np | 19:27 |
vishy | arosen1: why in the compute manager then. As in what is your rationale? | 19:27 |
*** thovden has joined #openstack-dev | 19:28 | |
arosen1 | vishy: because cause when you boot a vm compute/manager.py calls network_info = self._allocate_network(.. | 19:28 |
arosen1 | Then you can associate the security group with the instance | 19:29 |
arosen1 | there | 19:29 |
reed | please help me out here: http://etherpad.openstack.org/whatsyourname | 19:29 |
vishy | arosen1: I suppose that makes sense for the moment since compute is handling secgroups | 19:29 |
vishy | arosen1: but I'm not so sure that is the right place when they move into quantum | 19:29 |
reed | if you know who owns that nickname write it down please | 19:29 |
arosen1 | vishy: I'm fine either way with adding the calls to network_manager too. | 19:30 |
openstackgerrit | A change was merged to openstack/nova: Fix issues deleting instances in RESIZED state https://review.openstack.org/13702 | 19:30 |
*** edygarcia_ has joined #openstack-dev | 19:31 | |
zul | vishy: ping have you seen this before? https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/647/console | 19:31 |
arosen1 | my thought was that if they were in manager.py then we didn't need to call in quantum and nova-network. | 19:31 |
arosen1 | vishy: though I think your right I don't think compute/manager is really the right place | 19:32 |
arosen1 | either. | 19:32 |
*** markmcclain has quit IRC | 19:32 | |
*** PotHix has joined #openstack-dev | 19:32 | |
*** thovden has quit IRC | 19:33 | |
*** edygarcia has quit IRC | 19:34 | |
*** edygarcia_ is now known as edygarcia | 19:34 | |
*** dprince has quit IRC | 19:34 | |
adam_g | zul: looks like an issue with older sqlalchemy. using 0.7.8 on precise fixes it | 19:37 |
zul | adam_g: k backport it then | 19:37 |
*** littleidea has quit IRC | 19:37 | |
zul | adam_g: but it is odd then pin the sqlalchemy to 0.7.4 | 19:38 |
adam_g | huh? | 19:38 |
zul | i was looking in tools/pip-requires for nova and the version they test (in theory) in there ci is sqlalchemy 0.7.4 so why didnt this come up before | 19:39 |
zul | sorry 0.7.3 | 19:40 |
*** littleidea has joined #openstack-dev | 19:41 | |
sdague | zul: probably because it's SQLAlchemy>=0.7.3, so people currently testing are probably just on SQLAlchemy current | 19:42 |
zul | gah | 19:42 |
adam_g | zul: SQLAlchemy==0.7.8 is whats being pulled in on gating jobs | 19:42 |
zul | adam_g: right nm i suck | 19:42 |
*** cp16net is now known as cp16net|away | 19:43 | |
*** cp16net|away is now known as cp16net | 19:43 | |
* zul goes for coffee | 19:43 | |
*** primeministerp has quit IRC | 19:43 | |
*** maurosr has quit IRC | 19:44 | |
*** s0mik has joined #openstack-dev | 19:45 | |
*** samkottler|afk is now known as samkottler | 19:48 | |
*** kbringard has joined #openstack-dev | 19:49 | |
*** kbringard has quit IRC | 19:53 | |
*** maurosr has joined #openstack-dev | 20:00 | |
*** milner has quit IRC | 20:01 | |
vishy | zul: I have seen bind peram issue testing on precise sqlalchemy | 20:01 |
vishy | zul: the migration_91 test error is new but I assume it is the same issue with outdated sqlalchemy | 20:02 |
zul | vishy: yeah i think we are going to update sqlalchemy to something a bit more modern | 20:02 |
*** soosiechoi has joined #openstack-dev | 20:02 | |
*** maurosr has quit IRC | 20:04 | |
*** bencherian has joined #openstack-dev | 20:04 | |
*** maurosr has joined #openstack-dev | 20:05 | |
*** markmcclain has joined #openstack-dev | 20:05 | |
*** japage has quit IRC | 20:05 | |
*** dubsquared has quit IRC | 20:06 | |
*** maurosr has quit IRC | 20:09 | |
*** stevebake has quit IRC | 20:11 | |
*** stevebake has joined #openstack-dev | 20:11 | |
*** e1mer has joined #openstack-dev | 20:11 | |
jgriffith | jaypipes: Ok... so running timings on my machine and we're NOWHERE near the timeouts | 20:12 |
jgriffith | jaypipes: I'm going to start by pushing some timer code up into devstack and start watching things a bit | 20:13 |
jgriffith | jaypipes: Then I'll take a look at doing the same sort of thing with tempest | 20:13 |
jaypipes | jgriffith: sounds good. | 20:14 |
*** milner has joined #openstack-dev | 20:15 | |
*** \etc\bin has joined #openstack-dev | 20:15 | |
*** e1mer has quit IRC | 20:16 | |
*** heckj has quit IRC | 20:18 | |
* jgriffith thinking it would be interesting to gather statistics on jenkins/tempest runs | 20:18 | |
*** xtrusia has quit IRC | 20:19 | |
*** \etc\bin has quit IRC | 20:20 | |
*** maurosr has joined #openstack-dev | 20:22 | |
*** zing has joined #openstack-dev | 20:22 | |
arosen1 | vishy: added the calls for nova-network too. (https://review.openstack.org/#/c/13726/) | 20:22 |
ttx | vishy: hey | 20:24 |
rmk | Anyone running the Horizon (Folsom) who can check whether this still happens: https://dl.dropbox.com/u/15034469/tmp/horizon-long_tenant_name-2.PNG | 20:24 |
*** maurosr has quit IRC | 20:27 | |
*** ev0ldave has joined #openstack-dev | 20:28 | |
vishy | arosen1: did you look at putting it in network/api.py to be consistent with quantum? | 20:29 |
vishy | is there some reason it can't go there? | 20:29 |
*** ev0ldave has quit IRC | 20:30 | |
arosen1 | vishy: do you mean add def trigger_instance_[add/remove]_security_group_refresh() to network/api.py? | 20:32 |
vishy | yeah instead of the manager | 20:32 |
*** anniec has quit IRC | 20:33 | |
*** ev0ldave has joined #openstack-dev | 20:35 | |
*** rnirmal_ has joined #openstack-dev | 20:36 | |
*** rnirmal_ has quit IRC | 20:36 | |
arosen1 | vishy: k i'll make that change. | 20:36 |
*** rnirmal_ has joined #openstack-dev | 20:36 | |
arosen1 | good call | 20:36 |
vishy | arosen1: assuming there is no blockers i think it makes more sense | 20:36 |
*** kbringard has joined #openstack-dev | 20:39 | |
*** rnirmal has quit IRC | 20:39 | |
*** rnirmal_ is now known as rnirmal | 20:39 | |
*** rnirmal has quit IRC | 20:40 | |
*** thingee has quit IRC | 20:41 | |
*** thingee has joined #openstack-dev | 20:41 | |
*** jtran has quit IRC | 20:44 | |
*** jtran_ has joined #openstack-dev | 20:44 | |
*** metral has quit IRC | 20:44 | |
arosen1 | vishy: if i do that I'll have to import nova.compute there in order to call security_group_api.trigger_handler (I don't think we want to do that)? | 20:48 |
*** chenxu has joined #openstack-dev | 20:49 | |
vishy | arosen1: hmm good point | 20:49 |
vishy | arosen1: the security group api really needs to be in its own file :) | 20:49 |
* ttx disappears, will be back at 0600 UTC tomorrow | 20:51 | |
arosen1 | vishy: If it was it's own file or not it would actually work the same in this instance. (I'd just need to import it just like how i have to import compute here). | 20:51 |
*** alobbs has quit IRC | 20:58 | |
*** noob2 has joined #openstack-dev | 21:01 | |
*** harlowja_ has joined #openstack-dev | 21:03 | |
*** harlowja has quit IRC | 21:04 | |
*** harlowja_ is now known as harlowja | 21:04 | |
noob2 | noob type question for you guys. what are your setups that you're using to test the release candidates ? i'm on fedora 17 and would like to try the latest RC | 21:06 |
noob2 | are there instructions to roll this out from a tarball? | 21:06 |
benner | noob2: you can use devstack for example and specify branch imho | 21:07 |
noob2 | benner: that sounds good :) | 21:07 |
arosen1 | vishy: I was wrong, you can't import that due to that circular dep. | 21:07 |
*** cp16net is now known as cp16net|away | 21:07 | |
*** eglynn__ has joined #openstack-dev | 21:07 | |
noob2 | benner: i haven't used it in awhile but i should fire up a vm and try that. I think it can do multihost installs also | 21:08 |
*** cp16net|away is now known as cp16net | 21:08 | |
*** eglynn_ has quit IRC | 21:08 | |
arosen1 | vishy: yea securitygroup class would have to be pulled out of compute/api.py | 21:08 |
*** zing has quit IRC | 21:14 | |
*** ewindisch has quit IRC | 21:15 | |
*** eglynn__ has quit IRC | 21:16 | |
*** ewindisch has joined #openstack-dev | 21:18 | |
*** eglynn__ has joined #openstack-dev | 21:19 | |
*** s0mik has quit IRC | 21:20 | |
*** ewindisch has quit IRC | 21:21 | |
*** eglynn has joined #openstack-dev | 21:23 | |
*** eglynn__ has quit IRC | 21:24 | |
*** dubsquared has joined #openstack-dev | 21:25 | |
*** s0mik has joined #openstack-dev | 21:26 | |
*** dubsquared has quit IRC | 21:27 | |
*** Gordonz has quit IRC | 21:28 | |
*** noob2 has quit IRC | 21:29 | |
*** dubsquared has joined #openstack-dev | 21:31 | |
*** milner has quit IRC | 21:32 | |
*** dspano has quit IRC | 21:34 | |
_0x44 | mordred: Hey, there seems to be a problem with the gerrit site. I'm getting "SSH-2.0-..." and the site never loads. | 21:38 |
mordred | _0x44: we didn't tell you? that's the new way it works | 21:38 |
mordred | clarkb, jeblair ^^ | 21:39 |
_0x44 | mordred: Awesome, I'll just consider that ticket approved. | 21:40 |
_0x44 | :) | 21:40 |
*** maoy has quit IRC | 21:40 | |
mordred | sigh | 21:40 |
mordred | pt.printt(sortby=fields[0]) | 21:40 |
mordred | File "/usr/local/lib/python2.7/dist-packages/prettytable-0.6-py2.7.egg/prettytable.py", line 163, in __getattr__ | 21:40 |
mordred | AttributeError: printt | 21:40 |
mordred | fail | 21:40 |
*** eharney has quit IRC | 21:40 | |
clarkb | _0x44: what url? | 21:40 |
clarkb | _0x44: quick spot checks show things working for me so I will need examples | 21:42 |
*** milner has joined #openstack-dev | 21:43 | |
_0x44 | clarkb: Belay that, I'm a moron. | 21:43 |
*** littleidea has quit IRC | 21:43 | |
_0x44 | I clicked the wrong link in the email, and ended up trying to HTTP to the SSH URL. | 21:44 |
*** dani4571 has quit IRC | 21:44 | |
*** milner has quit IRC | 21:47 | |
eglynn | dhellmann: super-quick ceilometer question if you got a sec? | 21:47 |
mordred | _0x44: actually pretty cool that it partially worked... | 21:51 |
*** jcru has quit IRC | 21:52 | |
*** mnewby has quit IRC | 21:54 | |
*** kbringard has quit IRC | 21:55 | |
*** krtaylor has quit IRC | 21:57 | |
*** moula has joined #openstack-dev | 21:59 | |
*** EmilienM has left #openstack-dev | 22:04 | |
*** moula has quit IRC | 22:05 | |
*** moula has joined #openstack-dev | 22:07 | |
jgriffith | vishy: working on release notes, do you want me to just edit the wiki or dump to the etherpad? | 22:07 |
jgriffith | vishy: Was going to duplicate http://wiki.openstack.org/ReleaseNotes/Folsom#OpenStack_Block_Storage_.28Cinder.29 | 22:07 |
*** moula has quit IRC | 22:08 | |
jgriffith | vishy: NM | 22:09 |
*** sniperd has joined #openstack-dev | 22:13 | |
*** tgall_foo has quit IRC | 22:15 | |
*** rafaduran has left #openstack-dev | 22:19 | |
*** dubsquared has quit IRC | 22:20 | |
*** cp16net is now known as cp16net|away | 22:26 | |
*** edygarcia has quit IRC | 22:27 | |
openstackgerrit | A change was merged to openstack/nova: Bump the version of SQLAlchemy in pip-requires https://review.openstack.org/13730 | 22:28 |
*** datsun180b has quit IRC | 22:28 | |
*** andrewbogott is now known as andrewbogott_afk | 22:28 | |
openstackgerrit | A change was merged to openstack/nova: Remove unnecessary check if migration_ref is not None https://review.openstack.org/13731 | 22:29 |
*** koolhead17 has quit IRC | 22:32 | |
*** waa has joined #openstack-dev | 22:38 | |
*** harlowja_ has joined #openstack-dev | 22:39 | |
*** littleidea has joined #openstack-dev | 22:40 | |
*** zaitcev has quit IRC | 22:41 | |
*** alunduil has quit IRC | 22:42 | |
*** harlowja has quit IRC | 22:44 | |
*** harlowja_ is now known as harlowja | 22:44 | |
*** littleidea has joined #openstack-dev | 22:44 | |
*** cp16net|away is now known as cp16net | 22:44 | |
*** ewindisch has joined #openstack-dev | 22:45 | |
*** heckj has joined #openstack-dev | 22:49 | |
*** ewindisch has quit IRC | 23:01 | |
*** heckj has quit IRC | 23:02 | |
*** zz_Kiall is now known as Kiall | 23:07 | |
*** jaypipes has quit IRC | 23:08 | |
*** Kiall is now known as zz_Kiall | 23:08 | |
*** littleidea has quit IRC | 23:09 | |
*** danwent has quit IRC | 23:11 | |
*** reed has quit IRC | 23:12 | |
openstackgerrit | A change was merged to openstack/nova: Replaced default hostname function from gethostname to getfqdn https://review.openstack.org/13636 | 23:13 |
*** bencherian has quit IRC | 23:17 | |
*** soosiechoi has quit IRC | 23:18 | |
*** jog0 has quit IRC | 23:21 | |
*** torandu has quit IRC | 23:24 | |
mordred | harlowja: ping | 23:26 |
harlowja | yo | 23:26 |
mordred | harlowja: I just realized that this: https://bugs.launchpad.net/openstack-ci/+bug/1035966 had fallen through the cracks | 23:27 |
uvirtbot | Launchpad bug 1035966 in openstack-ci "Move 'anvil' to stackforge" [Medium,In progress] | 23:27 |
harlowja | its ok, | 23:27 |
mordred | harlowja: partially because we had some staffing repurpose and stuff | 23:27 |
harlowja | np | 23:27 |
harlowja | thats how it goes :-p | 23:27 |
mordred | yes. yes it is :) | 23:27 |
mordred | anywhoo - before I did any work on it, I wanted to check in with you | 23:28 |
harlowja | cool, well i'm ok with doing it, but just want to see what the side-effects would be | 23:28 |
*** torandu has joined #openstack-dev | 23:29 | |
*** bencherian has joined #openstack-dev | 23:29 | |
*** torandu has quit IRC | 23:29 | |
*** torandu has joined #openstack-dev | 23:30 | |
mordred | k. main side effects would be submitting code via gerrit instead of github, moving the org, and ... well, I think that's about it | 23:30 |
harlowja | ya, let me just check with everyone in tommorows meeting if we are ready to handle this | 23:30 |
harlowja | i don't think its a problem here, but u never know :-p | 23:30 |
harlowja | priorities and all that crap | 23:30 |
harlowja | lol | 23:30 |
mordred | priorities. bah | 23:31 |
harlowja | lol | 23:31 |
harlowja | ya | 23:31 |
harlowja | what about the readthedocs site, does that change or not? | 23:32 |
harlowja | not quite sure how that works, lol | 23:32 |
mordred | we don't really do readthedocs for anything else - but you might need to change the github config | 23:33 |
harlowja | k | 23:33 |
mordred | (I might use this as an excuse to think about how readthedocs might work for other things too) | 23:33 |
*** ev0ldave has quit IRC | 23:37 | |
harlowja | kk, i'll let u know tommorow about the go or no go, k? | 23:40 |
mordred | harlowja: sounds great! | 23:44 |
harlowja | cool, thx much | 23:44 |
*** Ruetobas has quit IRC | 23:51 | |
*** mrodden1 has quit IRC | 23:52 | |
*** jeremydei has quit IRC | 23:52 | |
*** alunduil has joined #openstack-dev | 23:54 | |
*** torandu has quit IRC | 23:55 | |
*** Ruetobas has joined #openstack-dev | 23:56 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!