Wednesday, 2012-09-26

*** lloydde has quit IRC00:00
*** maurosr has joined #openstack-dev00:01
*** colinmcnamara has joined #openstack-dev00:02
*** colinmcnamara has quit IRC00:05
*** maurosr has quit IRC00:05
jeblairif 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 71500:06
*** hemna has joined #openstack-dev00:08
mikaljeblair: hmmm, I need a faster air plane...00:08
*** maurosr has joined #openstack-dev00:08
jeblairmikal: i don't think even a citation x would get you here in time.  how fast is the airplane you have?00:09
mikaljeblair: well, it is paper and powered by rubber bands. So not very.00:10
mikalI need a suborbital thing00:10
WormManhmm, 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-dev00:11
WormManthat's ok, you all have to come down here next month anyway :)00:11
mikalHP is big. Could they move the baseball game to Australia?00:12
clarkbare there baseball diamonds in Australia?00:12
*** maurosr has quit IRC00:13
mikalclarkb: we could make one00:13
vishyjeblair: hmm giants game00:13
*** adjohn has quit IRC00:13
mikalClear out the thunderdome or something00:13
*** maurosr has joined #openstack-dev00:14
vishyjeblair: I should go say hi at least. I live 2 blocks from the stadium00:14
*** adjohn has joined #openstack-dev00:14
vishyjeblair: who all is here?00:14
mikalvishy: oh cool. I used to spend heaps of time at Google SF, which is just near there00:14
vishymikal: it is. My roommate works there :)00:14
mikalMy 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
arosen1vishy:  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
arosen1vishy: it seems that the call to sgh, trigger_instance_add_security_group_refresh doesn't happen in folsom.00:17
arosen1I'm trying to track that down.00:17
jgriffithvishy: sigh... I believe it may very well be the dd issue, it's the last thing in the logs00:17
*** zhuadl has quit IRC00:18
*** maurosr has quit IRC00:18
jgriffithvishy: Odd however as I used to only see issues with dd to the snapshots00:18
arosen1vishy:  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
vishyarosen1: yes it is on the instance_create00:19
*** maurosr has joined #openstack-dev00:19
vishyarosen1: in create_db_entry_for_new_instance in compute/api.py00:20
vishy 724         instance = self.db.instance_create(context, instance)00:20
vishythe security_groups are passed in00:20
*** ociuhandu has quit IRC00:20
*** krtaylor has joined #openstack-dev00:20
vishyarosen1: then they are parsed in instance_create in db/sqlalchemy/api.py00:21
vishyarosen1: around line 142200:21
vishyarosen1: does that help?00:21
jeblairvishy: mordred, LinuxJedi, probably brian aker... and probably other ppl i don't know.  i'm planning on going too.00:22
*** jaypipes has quit IRC00:23
*** statik has joined #openstack-dev00:23
*** maurosr has quit IRC00:24
vishyjeblair: cool. How long are you guys in SF?00:24
jeblairvishy: 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
rmkvishy: 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-dev00:26
*** martine has joined #openstack-dev00:28
*** littleidea has quit IRC00:29
vishylistDefined is different from _lookup_by_name00:30
vishyrmk: so it looks like it is actually correct00:30
*** maurosr has quit IRC00:31
vishyit is getting the running xml from running domains and defining it so it shows up in defined domains00:31
*** zaitcev has quit IRC00:31
*** maurosr has joined #openstack-dev00:32
rmkI didn't know you could have a running domain which wasn't defined00:32
rmkmust be a state you can only get into via live migration00:32
*** martine has quit IRC00:33
rmkvishy: 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 IRC00:33
*** s0mik has quit IRC00:33
vishyrmk: cool, makes it easy to fix then :)00:34
*** littleidea has joined #openstack-dev00:34
rmkYep 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
rmkI'm going to test som emigrations commenting out this conditional section just to see what libvirt thinks -- it's so different than everywhere else00:36
*** maurosr has quit IRC00:36
*** devananda is now known as deva_zzz00:37
arosen1vishy: 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-dev00:37
*** maurosr has joined #openstack-dev00:38
vishyarosen1: well there wasn't a need previously to trigger a refresh00:39
vishyarosen1: I don't see a problem with modifying it to go through that code path though00:39
vishyarosen1: the db code is using the automatic relations in sqlalchemy.00:40
vishyarosen1: so when you set instance_ref.security_groups it is automatically updating the security_group.instance_id behind the scenes00:41
arosen1vishy: when a vm is booted I get the following sgh call: trigger_security_group_members_refresh(self, context, group_ids);00:41
arosen1vishy: gotcah00:41
arosen1That doesn't tell me which instance joined or left the group though.00:41
*** maurosr has quit IRC00:42
*** s0mik has quit IRC00:42
vishyarosen1: that is coming from the network/manager00:44
vishyarosen1: in allocate_for_instance00:44
arosen1yea I found that one.00:44
vishyarosen1: although I'm not totally sure why we do it there...00:44
*** maurosr has joined #openstack-dev00:45
vishyarosen1: looks like it was added when support for source groups was added00:46
arosen1vishy:  so currently it seems add_to_instance / remove_from_instance in  compute/api.py is dead code.00:46
vishyarosen1: it is to update any rules that happen to have a a source group00:46
vishyarosen1: 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 api00:47
openstackgerritA change was merged to openstack/nova: Fixes remove_export for IetAdm  https://review.openstack.org/1361600:47
vishyarosen1: the code supports it, we just don't have an extension for it.00:47
arosen1vishy: as in nothing is calling that?00:49
vishyarosen1: that is my guess00:49
*** nunosantos has quit IRC00:49
*** maurosr has quit IRC00:49
arosen1so 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-dev00:50
arosen1vishy: i'll track down here tthose were called in essex and make a patch so that they'll be called in folsom.00:50
arosen1vishy:  thanks for your help btw :)00:50
vishyarosen1: yw. I'm not totally sure they were called in essex, but looking forward to the patch regardless. :)00:51
*** nunosantos_ has quit IRC00:51
*** maurosr has joined #openstack-dev00:52
vishyjgriffith: merge success on my end. RC-3 is good to go.00:52
jgriffithvishy: Yep, saw it00:52
jgriffithvishy: Now if mine just makes it I'll go home :)00:52
jgriffithvishy: 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 there00:53
*** littleidea has quit IRC00:53
vishyjgriffith: it looks like there was some trouble reproing the dd hang on the bug list there00:54
*** lloydde has joined #openstack-dev00:54
vishyjgriffith: we really need to get a fix in for that :/00:54
jgriffithvishy: I spoke with him in IRC and he said he had it00:54
*** bencherian has quit IRC00:54
jgriffithvishy: He was leaving out the --snapshot arg00:54
vishyjgriffith: ah cool. Hopefully there is a fix :)00:54
jgriffithvishy: I'll ping him again tomorrow and YES we reallydo00:54
jgriffithvishy: It's already fixed in the next kernel it looks like00:55
jgriffithvishy: I was hoping that would help narrow it down00:55
vishyjgriffith: I guess they will backport it to precise somehow?00:55
jgriffithvishy: That's what I was hoping00:55
jgriffithvishy: kernel patch, as I'm sure they won't do a major rev on the kernel00:56
jgriffithvishy: I can't come up with a good alternative to dd so I'll have to lean on them and hope something happens quickly00:56
*** maurosr has quit IRC00:56
jgriffithvishy: yay! the lastof my RC3 is in as well00:57
*** lloydde has quit IRC00:57
*** maurosr has joined #openstack-dev00:59
vishyjgriffith: woot!00:59
jgriffithvishy: No doubt!!!00:59
jgriffithvishy:  and a bit of a sighhh of relief as well00:59
jgriffith:)00:59
jgriffithvishy: Thanks for all of your help!01:01
jgriffithvishy: Now I get to focus on docs a bit01:01
jgriffithvishy: Catch ya later01:01
*** bencherian has joined #openstack-dev01:02
*** markmcclain has quit IRC01:03
*** winston-d has joined #openstack-dev01:03
*** maurosr has quit IRC01:04
*** Tross has quit IRC01:04
*** belliott_ has joined #openstack-dev01:04
*** Tross has joined #openstack-dev01:10
*** markmcclain has joined #openstack-dev01:12
*** Tross has quit IRC01:12
*** bencherian has quit IRC01:13
*** gongysh has quit IRC01:15
*** gongysh has joined #openstack-dev01:15
*** novas0x2a|laptop has quit IRC01:17
*** edygarcia has joined #openstack-dev01:18
*** jimfehlig1 has joined #openstack-dev01:22
*** bencherian has joined #openstack-dev01:24
*** dhellmann has quit IRC01:27
*** PotHix has quit IRC01:32
*** xchu has joined #openstack-dev01:36
*** TaylorBaby1985 has joined #openstack-dev01:36
*** garyk has quit IRC01:36
*** bencherian has quit IRC01:38
*** TaylorBaby1985 has quit IRC01:38
*** bencherian has joined #openstack-dev01:39
*** xtrusia has joined #openstack-dev01:39
*** aeperezt has quit IRC01:40
*** wenjianhn has joined #openstack-dev01:42
*** wenjianhn has quit IRC01:44
*** wenjianhn has joined #openstack-dev01:45
*** alunduil has joined #openstack-dev01:47
*** alunduil has quit IRC01:47
*** alunduil has joined #openstack-dev01:48
*** garyk has joined #openstack-dev01:48
*** Tross has joined #openstack-dev01:51
*** hemna has quit IRC01:51
*** hemna has joined #openstack-dev01:53
*** sdake has quit IRC01:57
*** littleidea has joined #openstack-dev01:57
*** sdake has joined #openstack-dev02:02
*** sc68cal_ has joined #openstack-dev02:08
*** sc68cal has quit IRC02:08
*** Ryan_Lane has quit IRC02:18
*** Mandell has quit IRC02:18
*** Tross has quit IRC02:20
*** littleidea has quit IRC02:21
*** pvo has quit IRC02:25
*** aeperezt has joined #openstack-dev02:27
*** troytoman-away has quit IRC02:27
*** pvo has joined #openstack-dev02:28
*** dabo has quit IRC02:28
*** sdake has quit IRC02:29
*** belliott_ has quit IRC02:31
*** littleidea has joined #openstack-dev02:33
*** troytoman-away has joined #openstack-dev02:33
*** dabo has joined #openstack-dev02:33
*** Tross has joined #openstack-dev02:35
*** pvo has quit IRC02:37
*** pvo has joined #openstack-dev02:38
*** troytoman-away has quit IRC02:38
*** dabo has quit IRC02:38
*** troytoman-away has joined #openstack-dev02:39
*** dabo has joined #openstack-dev02:39
*** sdake has joined #openstack-dev02:49
*** sdake has quit IRC02:50
*** stevebake_ has joined #openstack-dev02:53
*** belliott_ has joined #openstack-dev02:54
*** sdake has joined #openstack-dev02:55
*** s0mik has joined #openstack-dev02:57
*** winston-d has quit IRC02:58
*** belliott_ has quit IRC02:58
*** sdake has quit IRC03:00
*** sdake has joined #openstack-dev03:02
*** bencherian has quit IRC03:03
*** s0mik has quit IRC03:05
*** stevebake_ has quit IRC03:05
*** stevebake_ has joined #openstack-dev03:09
*** belliott_ has joined #openstack-dev03:09
*** adjohn has quit IRC03:10
*** Tross has quit IRC03:11
*** markmcclain has quit IRC03:11
*** matiu has quit IRC03:15
*** matiu has joined #openstack-dev03:15
*** koolhead17 has joined #openstack-dev03:17
*** stevebake_ has quit IRC03:21
*** koolhead17 has quit IRC03:32
*** p`p has quit IRC03:36
*** cakeblockd|b0ss has joined #openstack-dev03:36
*** Tross has joined #openstack-dev03:37
*** Tross has quit IRC03:40
*** samkottler is now known as samkottler|afk03:40
*** winston-d has joined #openstack-dev03:40
*** jemartin_ has joined #openstack-dev03:41
*** belliott_ has quit IRC03:42
*** jemartin has quit IRC03:44
*** jemartin_ is now known as jemartin03:44
*** koolhead17 has joined #openstack-dev03:46
*** winston-d has quit IRC03:46
*** jimfehlig1 has quit IRC03:46
*** Tross has joined #openstack-dev03:48
*** jtran has quit IRC03:49
*** sniperd has joined #openstack-dev03:50
*** winston-d has joined #openstack-dev03:58
*** Tross has quit IRC03:59
*** mlavalle has left #openstack-dev04:01
*** Tross has joined #openstack-dev04:04
*** adjohn has joined #openstack-dev04:04
*** harlowja has quit IRC04:09
*** wenjianhn has quit IRC04:26
*** Ryan_Lane has joined #openstack-dev04:28
*** eglynn_ has joined #openstack-dev04:31
*** jkoelker has quit IRC04:35
*** eglynn has quit IRC04:36
*** koolhead17 has quit IRC04:38
*** jkoelker has joined #openstack-dev04:46
*** spn__ has joined #openstack-dev04:47
*** sniperd has quit IRC04:48
*** aeperezt has quit IRC04:49
*** jkoelker has quit IRC04:51
*** jkoelker has joined #openstack-dev04:53
*** wenjianhn has joined #openstack-dev04:54
*** hattwick has quit IRC05:00
*** spn has quit IRC05:02
*** zhuadl has joined #openstack-dev05:03
*** hattwick has joined #openstack-dev05:12
*** gongysh has quit IRC05:18
*** andrewbogott is now known as andrewbogott_afk05:24
*** bencherian has joined #openstack-dev05:35
*** \etc\bin has joined #openstack-dev05:38
*** e1mer has quit IRC05:39
*** gargya has joined #openstack-dev05:40
*** spn__ has quit IRC05:40
*** reed has quit IRC05:43
*** almaisan-away is now known as al-maisan05:44
*** gargya has quit IRC05:49
*** cakeblockd|b0ss has quit IRC05:58
*** cakeblockd|b0ss has joined #openstack-dev05:58
*** spn has joined #openstack-dev05:59
*** spn has quit IRC05:59
*** spn has joined #openstack-dev05:59
* ttx yawns06:01
*** roge has joined #openstack-dev06:04
*** spn has quit IRC06:05
*** spn has joined #openstack-dev06:06
*** spn_ has quit IRC06:07
ttxbcwaldon: missing reviews on https://review.openstack.org/#/c/13666/06:07
ttxblocking Glance RC306:07
*** zhidong has quit IRC06:09
*** mrunge has joined #openstack-dev06:12
*** zaneb has joined #openstack-dev06:15
*** zhidong has joined #openstack-dev06:16
*** darjeeli_ has quit IRC06:19
*** gabrielhurley has quit IRC06:20
*** mindpixel has joined #openstack-dev06:25
*** adjohn has quit IRC06:28
*** littleidea has quit IRC06:41
*** gargya has joined #openstack-dev06:47
*** rafaduran has joined #openstack-dev06:49
*** edygarcia has quit IRC06:55
*** roge has quit IRC06:57
*** bencherian has quit IRC06:59
*** reidrac has joined #openstack-dev07:17
*** cakeblockd|b0ss is now known as p`p07:24
zykes-soren: ping07:28
*** salv-orlando has joined #openstack-dev07:45
*** apevec has joined #openstack-dev07:52
*** apevec has joined #openstack-dev07:52
*** popux has joined #openstack-dev07:53
*** zhuadl has quit IRC07:54
*** EmilienM has joined #openstack-dev07:57
*** alobbs has joined #openstack-dev07:58
*** ccorrigan has joined #openstack-dev08:02
*** derekh has joined #openstack-dev08:08
*** danwent has quit IRC08:09
*** aryan_ is now known as aryan08:11
*** zing has joined #openstack-dev08:18
*** darraghb has joined #openstack-dev08:19
*** gargya_ has joined #openstack-dev08:20
*** gargya has quit IRC08:21
*** gargya_ is now known as gargya08:21
*** spn has quit IRC08:34
*** pixelbeat has joined #openstack-dev08:42
*** markmc has joined #openstack-dev08:48
*** danpb has joined #openstack-dev08:49
*** gargya has quit IRC08:51
*** gargya has joined #openstack-dev08:53
*** winston-d has quit IRC08:57
openstackgerritA change was merged to openstack/openstack-common: LOG.exception() should only be used in exception handler  https://review.openstack.org/1364009:01
*** oneiroi has joined #openstack-dev09:04
*** oneiroi has joined #openstack-dev09:05
*** xchu has quit IRC09:09
*** dolphm has joined #openstack-dev09:15
*** AnilV4 has quit IRC09:26
*** EmilienM has quit IRC09:29
*** AnilV4 has joined #openstack-dev09:31
*** popux has quit IRC09:32
*** rha has quit IRC09:39
*** kyriakos has joined #openstack-dev09:57
*** rha has joined #openstack-dev09:57
*** rha has quit IRC09:57
*** rha has joined #openstack-dev09:57
*** mnewby has joined #openstack-dev10:03
*** rha has quit IRC10:11
*** darjeeling has joined #openstack-dev10:14
*** rha has joined #openstack-dev10:15
*** rha has quit IRC10:15
*** rha has joined #openstack-dev10:15
*** m4xmr has joined #openstack-dev10:20
*** zing has quit IRC10:31
*** zing has joined #openstack-dev10:31
*** popux has joined #openstack-dev10:32
*** mindpixel has quit IRC10:42
zykes-salv-orlando: ping10:45
zykes-can anyone tell me please how the vnc is supposed to work with folsom ?10:54
*** darjeeling has quit IRC10:55
*** salv-orlando_ has joined #openstack-dev10:57
*** salv-orlando has quit IRC10:57
*** salv-orlando_ is now known as salv-orlando10:57
*** dhellmann has joined #openstack-dev10:59
*** m4xmr has left #openstack-dev11:01
*** chrisfer has joined #openstack-dev11:05
*** torgomatic has quit IRC11:15
*** torgomatic has joined #openstack-dev11:15
*** roz has quit IRC11:27
*** roz has joined #openstack-dev11:29
*** waa has joined #openstack-dev11:32
*** G has joined #openstack-dev11:34
*** zhuadl has joined #openstack-dev11:38
ttxmarkwash (or anyone in glance-core): RC3-blocking review at https://review.openstack.org/#/c/13666/11:39
*** wenjianhn has quit IRC11:40
*** gargya has quit IRC11:58
*** gargya has joined #openstack-dev12:03
*** m4xmr has joined #openstack-dev12:05
*** sandywalsh has joined #openstack-dev12:06
*** sandywalsh_ has quit IRC12:07
*** maurosr has joined #openstack-dev12:12
*** alunduil has quit IRC12:16
*** maurosr has quit IRC12:17
*** darjeeling has joined #openstack-dev12:19
*** popux has quit IRC12:19
*** popux has joined #openstack-dev12:24
*** mrunge has quit IRC12:27
*** m4xmr has left #openstack-dev12:28
*** EmilienM has joined #openstack-dev12:30
*** mcolombo has joined #openstack-dev12:31
*** sdake has quit IRC12:33
*** sdake has joined #openstack-dev12:34
*** roge has joined #openstack-dev12:37
*** samkottler|afk is now known as samkottler12:41
*** m4xmr_ has joined #openstack-dev12:42
*** m4xmr_ is now known as m4xmr12:45
*** m4xmr has left #openstack-dev12:47
*** aeperezt has joined #openstack-dev12:49
*** EmilienM has quit IRC12:54
*** EmilienM has joined #openstack-dev12:55
*** EmilienM has quit IRC12:55
*** EmilienM has joined #openstack-dev12:55
*** dprince has joined #openstack-dev12:56
*** sandywalsh has quit IRC13:00
*** sandywalsh has joined #openstack-dev13:00
zykes-New bug nova / quantum > https://bugs.launchpad.net/nova/+bug/105683513:01
uvirtbotLaunchpad bug 1056835 in quantum "nova boot with a specific nic doesn't work." [Undecided,New]13:01
*** belliott_ has joined #openstack-dev13:03
*** nunosantos has joined #openstack-dev13:03
*** nunosantos_ has joined #openstack-dev13:05
salv-orlandozykes-: 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-orlandoI will check, confirm, and come back at you later on13: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-orlandowhat 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 similar13:14
*** alunduil has joined #openstack-dev13:15
*** littleidea has joined #openstack-dev13:15
*** alunduil has quit IRC13:17
salv-orlandowe surely will be addressing sg in open source plugins asap13:17
salv-orlandopossibly even before the summit.13:17
*** kbringard has joined #openstack-dev13:17
*** alunduil has joined #openstack-dev13:17
salv-orlandoThe first goal would be porting the iptables firewall driver to quantum and add namespace support13:17
salv-orlandothen 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 feedback13: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-orlandoI 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-orlandozykes-: works for me.13:24
salv-orlandoCould that not be quantum related for once? :)13:24
zykes-ah, crap13:24
salv-orlandoI pass --image <uuid> instead of name and I've tested without key name13:24
salv-orlandonova boot --image f452245d-eadd-46f3-afd8-f53fe277c786 --flavor 1 --nic port-id=f349003b-0025-423a-9855-e630912d4a54 testaccio13:24
zykes-wrong id, i passed network id instead :P13:24
*** markmc has quit IRC13:25
zykes-I set it to invalid13:25
*** tgall_foo has joined #openstack-dev13:25
*** tgall_foo has quit IRC13:25
*** tgall_foo has joined #openstack-dev13:25
*** tgall_foo has quit IRC13:26
*** tgall_foo has joined #openstack-dev13:28
*** tgall_foo has quit IRC13:29
*** tgall_foo has joined #openstack-dev13:29
*** halphass has joined #openstack-dev13:31
*** halphass has left #openstack-dev13:34
*** mrodden has joined #openstack-dev13:36
*** belliott_ has quit IRC13:36
*** EmilienM has quit IRC13:38
*** EmilienM has joined #openstack-dev13:38
*** eharney has joined #openstack-dev13:38
*** eharney is now known as Guest7869113:39
zykes-salv-orlando: my l3 agent compains about not finding a interface called qg-bf5c1093-d0 any clues13:41
salv-orlandonot really - but it seems bug 1051679?13:43
salv-orlando\13:43
uvirtbotLaunchpad bug 1051679 in quantum "Error running ip netns command with l3-agent" [Medium,Incomplete] https://launchpad.net/bugs/105167913:43
zykes-i'm not using namespaces13:43
salv-orlandok13:43
zykes-disabled all together :)13:43
*** sniperd has joined #openstack-dev13:44
salv-orlandoDid you change the name of the external bridge?13:44
salv-orlandoand then rebooted the l3 agent?13:44
zykes-My external bridge is called br-ex13:45
*** belliott_ has joined #openstack-dev13:48
*** bjweaver has joined #openstack-dev13:49
bjweaverWhat 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-dev13:51
zykes-http://paste.ubuntu.com/1228489/ < salv-orlando13:51
*** gongysh has joined #openstack-dev13:51
salv-orlandoit really is the same stack trace au bug1051679 :)13:52
salv-orlandoisn't it?13:52
salv-orlandogosh did I really say "stack trace"13:52
salv-orlandoOh 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-dev13:53
salv-orlandozykes-: this might mean the namespaces are not the root cause13:54
salv-orlandoCan I ask something more?13:55
*** tgall_foo has quit IRC14:02
ttxbcwaldon: please ack https://review.openstack.org/#/c/13666/ and find another reviewer :)14:06
*** mrodden1 has joined #openstack-dev14:06
*** tgall_foo has joined #openstack-dev14:06
*** tgall_foo has quit IRC14:06
*** tgall_foo has joined #openstack-dev14:06
*** n0ano has quit IRC14:07
*** Ruetobas has quit IRC14:07
*** mrodden has quit IRC14:08
*** japage has joined #openstack-dev14:09
*** Ruetobas has joined #openstack-dev14:10
*** edygarcia has joined #openstack-dev14:11
*** gargya has quit IRC14:11
*** gargya has joined #openstack-dev14:12
*** sc68cal_ is now known as sc68cal14:13
*** sc68cal has quit IRC14:13
*** sc68cal has joined #openstack-dev14:13
mordredmarkmc: morning14:14
markmcmordred, hey14:14
markmcmordred, you sound much more evil in your new costume14:14
mordredmarkmc: BWAHAHAHA14:14
mordredmarkmc: (that was supposed to be an evil laugh)14:15
markmcmordred, got it :)14:15
mordredmarkmc: so, some stuff broke in the latest git-review which has your commands reorg in it14:15
*** dhellmann is now known as dhellmann-afk14:15
*** eharney has joined #openstack-dev14:15
mordredmarkmc: 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
markmcmordred, sure, could you send me mail?14:16
* markmc on a call14:16
mordredmarkmc: yup. will do. thanks!14:16
markmcmordred, np14:16
*** mcolombo has quit IRC14:21
*** \etc\bin has quit IRC14:22
*** maurosr has joined #openstack-dev14:25
*** maurosr has quit IRC14:29
*** dhellmann-afk is now known as dhellmann14:29
*** sniperd_ has joined #openstack-dev14:31
*** dolphm has quit IRC14:31
*** maurosr has joined #openstack-dev14:31
*** sniperd has quit IRC14:32
*** dspano has joined #openstack-dev14:32
*** Gordonz has joined #openstack-dev14:36
*** Gordonz has quit IRC14:36
*** maurosr has quit IRC14:36
*** Gordonz has joined #openstack-dev14:36
*** bencherian has joined #openstack-dev14:38
*** maurosr has joined #openstack-dev14:40
*** dani4571 has joined #openstack-dev14:40
*** maurosr has quit IRC14:44
*** sniperd_ has quit IRC14:45
*** maurosr has joined #openstack-dev14:45
*** deva_zzz is now known as devananda14:45
*** bencherian has quit IRC14:48
*** maurosr has quit IRC14:50
*** statik has quit IRC14:50
*** edygarcia_ has joined #openstack-dev14:52
*** colinmcnamara has joined #openstack-dev14:53
*** edygarcia__ has joined #openstack-dev14:54
*** koolhead17 has joined #openstack-dev14:54
*** edygarcia has quit IRC14:56
*** edygarcia___ has joined #openstack-dev14:56
*** renier has quit IRC14:56
*** chrisfer has quit IRC14:56
*** edygarcia_ has quit IRC14:57
*** edygarcia__ has quit IRC14:59
*** dolphm has joined #openstack-dev15:00
*** mrodden has joined #openstack-dev15:00
*** maurosr has joined #openstack-dev15:01
*** datsun180b has joined #openstack-dev15:02
*** renier has joined #openstack-dev15:02
*** mrodden1 has quit IRC15:02
*** bjweaver has quit IRC15:02
*** reidrac has quit IRC15:04
*** statik has joined #openstack-dev15:04
*** statik has quit IRC15:06
*** torandu has quit IRC15:07
*** torandu has joined #openstack-dev15:09
*** salv-orlando_ has joined #openstack-dev15:11
*** salv-orlando has quit IRC15:11
*** salv-orlando_ is now known as salv-orlando15:11
*** danwent has joined #openstack-dev15:11
*** m4xmr has joined #openstack-dev15:12
*** metral has joined #openstack-dev15:13
*** ewindisch has quit IRC15:14
ttxdprince: care to review https://review.openstack.org/#/c/13666/ ? Blocking Glance RC315:15
*** ewindisch has joined #openstack-dev15:15
dprincettx: sure15:15
ttxdprince: thx15:15
*** ewindisch has quit IRC15:16
*** jaypipes has joined #openstack-dev15:19
*** cp16net is now known as cp16net|away15:20
*** colinmcnamara has quit IRC15:20
*** apevec has quit IRC15:22
*** colinmcnamara has joined #openstack-dev15:22
*** hemna has quit IRC15:23
*** dubsquared has joined #openstack-dev15:24
*** samkottler is now known as samkottler|brb15:25
*** markmcclain has joined #openstack-dev15:25
*** ewindisch has joined #openstack-dev15:25
*** danpb has quit IRC15:26
*** cp16net|away is now known as cp16net15:31
*** jcru has joined #openstack-dev15:31
*** markmcclain has quit IRC15:33
openstackgerritA change was merged to openstack/glance: Change type of rabbit_durable_queues to boolean.  https://review.openstack.org/1366615:34
*** danwent has quit IRC15:34
*** apevec has joined #openstack-dev15:35
*** apevec has joined #openstack-dev15:35
*** markmcclain has joined #openstack-dev15:36
*** al-maisan is now known as almaisan-away15:36
ttxbcwaldon: still clear to do Glance RC3 as soon as the backport lands ?15:37
*** statik has joined #openstack-dev15:37
bcwaldonttx: yessir15:38
*** markmcclain has quit IRC15:38
*** samkottler|brb is now known as samkottler15:40
*** popux has quit IRC15:41
*** colinmcnamara has quit IRC15:42
*** edygarcia___ has quit IRC15:43
markwashbcwaldon thoughts about uuid migration?15:44
markwashbcwaldon: ameade_ wants me to do some more docstrings, so I'm going to hit that15:44
bcwaldonmarkwash: I attempted to get an env up that I could test it with again15:44
bcwaldonmarkwash: I'm going to have to try that again15:45
markwashbcwaldon: let me know if you need any help getting postgres setup15:46
bcwaldonmarkwash: I'm probably just going to test mysql15:46
markwashbcwaldon: it was obnoxious but I remember15:46
zykes-salv-orlando: sure, ask away15:46
*** littleidea has quit IRC15:46
salv-orlandozykes-: is the problem intermittent or persistent?15:48
*** thingee_zz is now known as thingee15:49
zykes-I have rebooted the machine even15:49
zykes-and it doesn't work15:50
*** gargya has quit IRC15:51
*** andrewbogott_afk is now known as andrewbogott15:52
*** littleidea has joined #openstack-dev15:54
*** winston-d has joined #openstack-dev15:55
ttxbcwaldon: tagging a9f0a4c4dbac0c92c431150161915bd5459a42d0 as glance folsom-rc315:57
zykes-salv-orlando: what can the error be ?15:57
russellbgaryk: 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-orlandoI need the output of both ovs-vsctl list-ports and ovs-dpctl show for the bridge you're using as externals15:58
salv-orlandorussellb: no schema versioning yet15:58
*** kyriakos has quit IRC15:58
russellbk, guess that's fine for folsom, but between folsom and grizzly will be added if the schema changes?15:58
*** reed has joined #openstack-dev15:59
jgriffithcinder meeting in #openstack-meeting starting now16:00
*** rafaduran has quit IRC16:00
*** ghe has joined #openstack-dev16:00
*** ghe is now known as Ghe_Rivero16:00
*** danwent has joined #openstack-dev16:01
*** reed has quit IRC16:03
*** markmcclain has joined #openstack-dev16:04
ttxbcwaldon: Glance RC3 is out16:05
*** mrodden1 has joined #openstack-dev16:05
*** dubsquared has quit IRC16:06
bcwaldonttx: thanks!16:06
*** mrodden has quit IRC16:07
ttxwill be back later today for go/nogo discussions16:07
*** adjohn has joined #openstack-dev16:08
*** jdurgin has joined #openstack-dev16:10
salv-orlandorussellb: we'll have a full upgrade story, including schema changes16:12
russellbawesome thanks :)16:12
*** littleidea has quit IRC16:14
*** rnirmal has joined #openstack-dev16:17
zykes-http://paste.ubuntu.com/1228725/ < salv-orlando16:20
zykes-oh, nvm16:20
*** derekh has quit IRC16:21
zykes-http://paste.ubuntu.com/1228729/ < salv-orlando16:21
*** mmalesky has quit IRC16:22
*** jtran has joined #openstack-dev16:22
*** danpb has joined #openstack-dev16:22
*** m4xmr has quit IRC16:23
*** mmalesky_ has quit IRC16:24
*** utlemming has quit IRC16:28
garykrussellb: hi.16:29
russellbgaryk: hey, got the answer i was looking for, no worries16:29
garykrussellb: ok, great16:29
zykes-salv-orlando: hints ?16:31
*** edygarcia has joined #openstack-dev16:34
*** utlemming has joined #openstack-dev16:35
*** bencherian has joined #openstack-dev16:36
*** gongysh has quit IRC16:37
*** titankiller has joined #openstack-dev16:39
*** gongysh has joined #openstack-dev16:40
*** hemna has joined #openstack-dev16:40
*** gongysh_ has joined #openstack-dev16:43
*** winston-d has quit IRC16:44
*** gongysh has quit IRC16:47
*** Ghe_Rivero has quit IRC16:48
*** maploin has joined #openstack-dev16:49
*** maploin has quit IRC16:49
*** maploin has joined #openstack-dev16:49
*** heckj has joined #openstack-dev16:52
*** zaitcev has joined #openstack-dev16:55
*** salv-orlando has quit IRC16:56
*** harlowja has joined #openstack-dev16:57
*** mcolombo has joined #openstack-dev16:57
*** apevec has quit IRC17:00
*** Ghe_Rivero has joined #openstack-dev17:02
*** jemartin has quit IRC17:05
*** jemartin has joined #openstack-dev17:05
*** maurosr has quit IRC17:05
*** waa has quit IRC17:06
*** Mandell has joined #openstack-dev17:07
*** darraghb has quit IRC17:14
*** dhellmann is now known as dhellmann-afk17:14
*** maploin` has joined #openstack-dev17:14
*** s0mik has joined #openstack-dev17:16
*** maploin has quit IRC17:16
*** maurosr has joined #openstack-dev17:17
openstackgerritA change was merged to openstack/nova: xenapi: increase timeout for resetnetwork agent request  https://review.openstack.org/1371717:17
openstackgerritA change was merged to openstack/quantum: Add log setting options into quantum.conf.  https://review.openstack.org/1369017:18
*** thingee is now known as thingee_zz17:21
*** zing has quit IRC17:21
*** zing has joined #openstack-dev17:22
*** zing has quit IRC17:22
*** lloydde has joined #openstack-dev17:24
*** danpb has quit IRC17:26
*** littleidea has joined #openstack-dev17:27
*** maoy has joined #openstack-dev17:30
*** samkottler is now known as samkottler|afk17:30
*** soosiechoi has joined #openstack-dev17:31
*** chrisfer has joined #openstack-dev17:32
*** belliott_ has quit IRC17:32
jgriffithjaypipes: ping17:34
*** mdomsch has joined #openstack-dev17:34
*** mdomsch has quit IRC17:34
jaypipesjgriffith: pong17:37
*** belliott has quit IRC17:37
jgriffithjaypipes: Hey ya... I've been noticing an increase in volume failures in tempest17:37
jgriffithjaypipes: Trying to gather some data on timeouts17:38
jaypipesk17:38
jaypipesjgriffith: gotta a link for me?17:38
jgriffithjaypipes: Was wondering if there is an *archive* of the logs etc?17:38
*** belliott has joined #openstack-dev17:38
* jgriffith is unprepared.. no links17:38
jgriffith:(17:38
jaypipesjgriffith: logs.openstack.org17:38
jaypipesjgriffith: one sec, digging in...17:39
jgriffithjaypipes: Well duhhh :)17:39
*** dolphm has quit IRC17:39
jgriffithjaypipes: bahhh... let me grab my decoder ring :)17:39
jaypipesjgriffith: you concerned about the cinder one or the main one?17:39
jgriffithjaypipes: cinder17:40
jaypipesk17:40
jgriffithjaypipes: It's just a hunch, but I think we're timing out on deletes17:40
jgriffithjaypipes: Trying to figure out what may have caused it to slow.17:41
jaypipesjgriffith: I'm not seeing any errors...17:41
jgriffithjaypipes: Hmmm17:41
jgriffithjaypipes: Lemme see if I can find the ones I was looking at last night/this morning17:42
jaypipesjgriffith: k.17:42
*** almaisan-away is now known as al-maisan17:42
jaypipesjeblair, davidkranz: am I correct in seeing that the gate-tempest-devstack-vm job is only running smoke tests?17:42
jaypipeshttps://jenkins.openstack.org/view/Tempest/job/gate-tempest-devstack-vm/13040/console17:42
*** soosiechoi has quit IRC17:43
jeblairjaypipes: yes, that was for a change to nova, so only the smoke tests are run17:44
*** soosiechoi has joined #openstack-dev17:44
jaypipesjeblair: so we currently have zero gate jobs that run the entire tempest test suite?17:44
*** metral has quit IRC17:44
jeblairjaypipes: i believe changes to tempest run the whole suite17:45
*** metral has joined #openstack-dev17:45
*** belliott has quit IRC17:45
*** belliott has joined #openstack-dev17:46
*** dolphm has joined #openstack-dev17:47
*** al-maisan is now known as almaisan-away17:48
jgriffithjaypipes: Actually, it's devstack exercises and smokestack... never mind17:49
jgriffithjaypipes: My own testing is showing intermittent timeouts in tempest17:50
jgriffithjaypipes: I'll keep looking/gathering data17:50
jgriffithjaypipes: sorry for the distraction17:50
jaypipesjgriffith: k, I'm interested. keep me in the loop man.17:50
jgriffithjaypipes: will do17:50
*** belliott has quit IRC17:51
*** belliott has joined #openstack-dev17:52
*** dolphm has quit IRC17:57
*** glenc_ is now known as glenc17:58
*** maurosr has quit IRC17:58
*** maurosr has joined #openstack-dev17:58
*** mrodden has joined #openstack-dev17:59
*** rafaduran has joined #openstack-dev18:00
*** mrodden1 has quit IRC18:00
sdaguejaypipes: that lack of complete gating was one of the big reasons for the alternative framework discussion for tempest18:02
jaypipessdague: 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 suite18:03
sdaguejaypipes: right18:04
sdagueI 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 merge18:06
sdagueby "only" I actually mean, as an additional test18:06
sdagueto what's currently running18:06
arosen1Hey vishy you around?18:07
*** Ghe_Rivero has quit IRC18:08
*** belliott has quit IRC18:09
*** s0mik has quit IRC18:11
*** anniec has joined #openstack-dev18:11
*** s0mik has joined #openstack-dev18:13
*** reed has joined #openstack-dev18:21
*** roge has quit IRC18:22
*** krtaylor has quit IRC18:22
reedmarkmc: ping18:24
*** roge has joined #openstack-dev18:24
*** soosiechoi has quit IRC18:25
*** praefect has joined #openstack-dev18:26
*** soosiechoi has joined #openstack-dev18:29
*** edygarcia has quit IRC18:30
*** belliott has joined #openstack-dev18:31
*** soren has quit IRC18:31
*** edygarcia has joined #openstack-dev18:31
*** belliott has quit IRC18:32
heckjmarkmc: around?18:32
heckjheh -18:32
markmcreed, yep?18:32
heckjpopular ddue18:32
markmcheckj, I guess so :)18:32
markmccan only mean trouble18:32
*** soren has joined #openstack-dev18:32
*** ChanServ sets mode: +v soren18:32
reedmarkmc: did you try running your gitdm script already?18:32
*** belliott has joined #openstack-dev18:33
reedI'm looking for a validation to my numbers18:33
heckjmarkmc: 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
markmcreed, yep, just the git part not the gerrit and launchpad part18:33
markmcreed, I'll send you something later, how about that?18:33
*** n0ano has joined #openstack-dev18:33
reedsounds good, I'm running it myself here... is your github repo up to date?18:33
markmcreed, yeah, I updated some stuff last time I ran it18:34
reedok, pulling from it18:34
markmcheckj, yep, saw that - was thinking apevec would look at it; I will later if not18:34
heckjkk - sounds good, thanks - will leave as it stands18:35
reedmarkmc: a changeset in gitdm terms is not the same as a commit?18:35
markmcreed, changeset == commit AIUI18:35
*** s0mik has quit IRC18:35
openstackgerritA change was merged to openstack/python-keystoneclient: switching options to match authentication paths  https://review.openstack.org/1359018:35
reedAIUI?18:36
reedis swahili for 'hit me with a stone'?18:36
* heckj searches for good rocks18:36
sdaguereed: 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 instance18:36
heckjreed: heh - I can help with that if you need18:37
reedsdague, I think we did that already18:37
heckjgot a list I can review, can verify it pretty quickly18:37
*** dubsquared has joined #openstack-dev18:37
heckjreed: 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 goes18:37
reedheckj, https://github.com/markmc/openstack-gitdm/tree/master/openstack-config/groups18:37
markmcreed, ISTR AIUI stands for "As I Understand It" FWIW FYI KTHXBAI18:38
sdaguereed: ok, didn't see that in markmc's repo18:38
heckjreed - how would you like updates?18:38
reedheckj, pull requests to markmc on github is the fave way to edit it18:39
reedor patches, to markmc please18:39
heckjword -18:39
markmcheckj, also note https://github.com/markmc/openstack-gitdm/blob/master/openstack-config/domain-map18:39
markmcheckj, and https://github.com/markmc/openstack-gitdm/blob/master/openstack-config/domain-map18:39
markmcheckj, e.g. don't need to explicitly list all @nebula.com and @ansolabs.com addresses18:40
markmcheckj, and there's a bunch of nebula folks in https://github.com/markmc/openstack-gitdm/blob/master/openstack-config/email-map18:40
* markmc realizes he pasted the same URL twice :)18:40
sdaguemarkmc: ah, I was missing email-map :)18:42
reedmarkmc: how many hackers did you get in total?18:42
sdaguemarkmc: jaypipes is now at at&t18:43
markmcreed, around 30018:43
markmcsdague, good point, got a date?18:44
reedmarkmc: 305 with your script, 332 on my database :/18:44
reedclose... trying to see why the difference18:44
openstackgerritA change was merged to openstack/openstack-common: Extracted parse_host_port into network_utils.  https://review.openstack.org/1372418:44
sdagueumm... summer. jaypipes can maybe illuminate that18:44
jaypipesquoi?18:44
bcwaldonjeblair: ping18:44
reedI thought I put jaypipes in ATT group already18:44
* reed failed at that18:45
reedjaypipes, when did you move to ATT?18:45
reeddate, more or less18:45
*** soosiechoi has joined #openstack-dev18:45
notmynamereed: do you need anything from me on the swift side?18:46
*** soosiechoi has quit IRC18:47
reednotmyname, you also may want to review https://github.com/markmc/openstack-gitdm/tree/master/openstack-config and make sure that all affiliations are correct18:47
heckjreed, markmc: https://github.com/markmc/openstack-gitdm/pull/418:47
heckjmarkmc - saw that - looks like only one more was missed from my quick look for the rackspace/nebula change18:48
*** mrodden1 has joined #openstack-dev18:48
*** kbringard has quit IRC18:48
*** novas0x2a|laptop has joined #openstack-dev18:49
markmcheckj, thanks, merged18:49
markmcheckj, putting it the nebula group and email-map probably confuses things18:49
* markmc fixes18:49
*** titankiller has quit IRC18:51
notmynamereed: seems to be missing a swiftstack group. I think it should just have my email in it18:51
sdaguemarkmc: am I missing something, or is that still basing commits for essex?18:51
heckjmarkmc: ah - sorry, wasn't sure how to make that "right"18:51
markmcnotmyname, covered by domain-map and email-map18:52
*** mrodden has quit IRC18:52
heckjmarkmc: so use domain-map for folks who haven't moved around, email-map for those that have18:52
*** andrewbogott is now known as andrewbogott_afk18:52
markmcnotmyname, email-map shows your move to swiftstack18:52
*** andrewbogott_afk is now known as andrewbogott18:52
notmynamemarkmc: ah, gotcha. sorry, I don't know the order things are applied18:53
markmcnotmyname, and AFAICT others from swiftstack have been using @swiftstack.com18:53
notmynamemarkmc: after mailmap translations, yes18:53
markmcnotmyname, oh, also - aliases comes into play so spam@andcheese.org is aliased to sam@swiftstack.com and then caught by domain-map18:53
markmcnotmyname, right18:53
markmcheckj, right, petty much18:54
markmcsdague, I'll add a folsom dir later18:54
*** thingee_zz is now known as thingee18:54
sdaguemarkmc: cool, just curious. Might explain reed's mismatch, unless he had it seperately18:55
jaypipesreed: June 4th.18:57
* ttx sees no red flag yet, will be back in a couple hours.18:58
*** markmc has quit IRC18:59
*** andrewbogott is now known as andrewbogott_afk19:02
*** ewindisch has quit IRC19:04
*** gatuus has joined #openstack-dev19:05
jeblairbcwaldon: pong19:05
notmynamereed: I updated my move date in email-map19:05
reedsweet, send a pull request to markmc19:05
*** dubsquared has quit IRC19:07
notmynameya, I did the while github "edit this file" pull request thing19:07
*** dolphm has joined #openstack-dev19:10
*** maploin` has quit IRC19:11
vishyjgriffith: sad that this didn't make it: https://review.openstack.org/#/c/13327/19:11
vishyjgriffith: be nice to stable-folsom that asap19:11
jgriffithvishy: Yeah, talked with ttx briefly this morning about it19:12
*** heckj has quit IRC19:12
jgriffithvishy: I'll ping clay and get it moving again19:12
jgriffithclayg: ping :)19:12
jgriffithvishy: Or I can just sync things up myself... I'll see what clay wants to do on it19:13
*** ewindisch has joined #openstack-dev19:14
*** dubsquared has joined #openstack-dev19:14
*** dhellmann-afk is now known as dhellmann19:16
*** dolphm has quit IRC19:16
*** dubsquared has quit IRC19:17
*** dubsquared has joined #openstack-dev19:18
*** heckj has joined #openstack-dev19:18
*** krtaylor has joined #openstack-dev19:20
*** andrewbogott_afk is now known as andrewbogott19:22
claygjgriffith: been busy, whats up?19:22
arosen1Hi vishy I had a question for you if you have a sec.19:22
vishyarosen1: go19:22
jgriffithclayg: We were just talking about https://review.openstack.org/#/c/13327/19:23
claygjgriffith: vishy: oh... yeah...19:23
jgriffithclayg: Any interest on your part in reviving that?19:23
arosen1vishy:  I added the call to trigger_instance[add/remove]_security_group_refresh here https://review.openstack.org/#/c/13726/19:23
claygjgriffith: vishy: so I need that patch, i'm not going to forget about it, but we've been busy - end of the week maybe19:23
arosen1but 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
jgriffithclayg: That would mean pulling in the common/policy stuff19:23
arosen1vishy:  What do you think?19:23
jgriffithclayg: I think that's fine19:24
claygjgriffith: 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 dependency19:24
*** bencherian has quit IRC19:24
jgriffithclayg: Yes19:24
jgriffithclayg: should definitely be seperate patches IMO19:25
vishyarosen1: ugh circular import is nasty. I guess security_group_api should be in its own file19:25
claygok, sorry it's taking me so long, sorry if you felt i was ignoring ya'lls feedback19:25
jgriffithclayg: I forgot about it until ttx pointed it out this morning so no worries here19:25
vishyarosen1: 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
vishyarosen1: and if that is the case, should it be in the api on the nova-network side as well?19:26
arosen1vishy: compute/manager.py19:26
vishyarosen1: ah the compute manager19:27
vishyarosen1: sorry I saw network manager for some reason19:27
arosen1vishy:  yup the code should be in the nova-network side as well so it was in called in _allocate_network it would be19:27
arosen1np19:27
vishyarosen1: why in the compute manager then. As in what is your rationale?19:27
*** thovden has joined #openstack-dev19:28
arosen1vishy:  because cause when you boot a vm compute/manager.py calls  network_info = self._allocate_network(..19:28
arosen1Then you can associate the security group with the instance19:29
arosen1there19:29
reedplease help me out here: http://etherpad.openstack.org/whatsyourname19:29
vishyarosen1: I suppose that makes sense for the moment since compute is handling secgroups19:29
vishyarosen1: but I'm not so sure that is the right place when they move into quantum19:29
reedif you know who owns that nickname write it down please19:29
arosen1vishy:  I'm fine either way with adding the calls to network_manager too.19:30
openstackgerritA change was merged to openstack/nova: Fix issues deleting instances in RESIZED state  https://review.openstack.org/1370219:30
*** edygarcia_ has joined #openstack-dev19:31
zulvishy: ping have you seen this before? https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/647/console19:31
arosen1my thought was that if they were in manager.py then  we didn't need to call in quantum and nova-network.19:31
arosen1vishy: though I think your right I don't think compute/manager is really the right place19:32
arosen1either.19:32
*** markmcclain has quit IRC19:32
*** PotHix has joined #openstack-dev19:32
*** thovden has quit IRC19:33
*** edygarcia has quit IRC19:34
*** edygarcia_ is now known as edygarcia19:34
*** dprince has quit IRC19:34
adam_gzul: looks like an issue with older sqlalchemy. using 0.7.8 on precise fixes it19:37
zuladam_g: k backport it then19:37
*** littleidea has quit IRC19:37
zuladam_g: but it is odd then pin the sqlalchemy to 0.7.419:38
adam_ghuh?19:38
zuli 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 before19:39
zulsorry 0.7.319:40
*** littleidea has joined #openstack-dev19:41
sdaguezul: probably because it's SQLAlchemy>=0.7.3, so people currently testing are probably just on SQLAlchemy current19:42
zulgah19:42
adam_gzul: SQLAlchemy==0.7.8 is whats being pulled in on gating jobs19:42
zuladam_g: right nm i suck19:42
*** cp16net is now known as cp16net|away19:43
*** cp16net|away is now known as cp16net19:43
* zul goes for coffee19:43
*** primeministerp has quit IRC19:43
*** maurosr has quit IRC19:44
*** s0mik has joined #openstack-dev19:45
*** samkottler|afk is now known as samkottler19:48
*** kbringard has joined #openstack-dev19:49
*** kbringard has quit IRC19:53
*** maurosr has joined #openstack-dev20:00
*** milner has quit IRC20:01
vishyzul: I have seen bind peram issue testing on precise sqlalchemy20:01
vishyzul: the migration_91 test error is new but I assume it is the same issue with outdated sqlalchemy20:02
zulvishy: yeah i think we are going to update sqlalchemy to something a bit more modern20:02
*** soosiechoi has joined #openstack-dev20:02
*** maurosr has quit IRC20:04
*** bencherian has joined #openstack-dev20:04
*** maurosr has joined #openstack-dev20:05
*** markmcclain has joined #openstack-dev20:05
*** japage has quit IRC20:05
*** dubsquared has quit IRC20:06
*** maurosr has quit IRC20:09
*** stevebake has quit IRC20:11
*** stevebake has joined #openstack-dev20:11
*** e1mer has joined #openstack-dev20:11
jgriffithjaypipes: Ok... so running timings on my machine and we're NOWHERE near the timeouts20:12
jgriffithjaypipes: I'm going to start by pushing some timer code up into devstack and start watching things a bit20:13
jgriffithjaypipes: Then I'll take a look at doing the same sort of thing with tempest20:13
jaypipesjgriffith: sounds good.20:14
*** milner has joined #openstack-dev20:15
*** \etc\bin has joined #openstack-dev20:15
*** e1mer has quit IRC20:16
*** heckj has quit IRC20:18
* jgriffith thinking it would be interesting to gather statistics on jenkins/tempest runs20:18
*** xtrusia has quit IRC20:19
*** \etc\bin has quit IRC20:20
*** maurosr has joined #openstack-dev20:22
*** zing has joined #openstack-dev20:22
arosen1vishy:  added the calls for nova-network too.  (https://review.openstack.org/#/c/13726/)20:22
ttxvishy: hey20:24
rmkAnyone running the Horizon (Folsom) who can check whether this still happens: https://dl.dropbox.com/u/15034469/tmp/horizon-long_tenant_name-2.PNG20:24
*** maurosr has quit IRC20:27
*** ev0ldave has joined #openstack-dev20:28
vishyarosen1: did you look at putting it in network/api.py to be consistent with quantum?20:29
vishyis there some reason it can't go there?20:29
*** ev0ldave has quit IRC20:30
arosen1vishy:  do you mean add def trigger_instance_[add/remove]_security_group_refresh() to network/api.py?20:32
vishyyeah instead of the manager20:32
*** anniec has quit IRC20:33
*** ev0ldave has joined #openstack-dev20:35
*** rnirmal_ has joined #openstack-dev20:36
*** rnirmal_ has quit IRC20:36
arosen1vishy: k i'll make that change.20:36
*** rnirmal_ has joined #openstack-dev20:36
arosen1good call20:36
vishyarosen1: assuming there is no blockers i think it makes more sense20:36
*** kbringard has joined #openstack-dev20:39
*** rnirmal has quit IRC20:39
*** rnirmal_ is now known as rnirmal20:39
*** rnirmal has quit IRC20:40
*** thingee has quit IRC20:41
*** thingee has joined #openstack-dev20:41
*** jtran has quit IRC20:44
*** jtran_ has joined #openstack-dev20:44
*** metral has quit IRC20:44
arosen1vishy:  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-dev20:49
vishyarosen1: hmm good point20:49
vishyarosen1: the security group api really needs to be in its own file :)20:49
* ttx disappears, will be back at 0600 UTC tomorrow20:51
arosen1vishy:  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 IRC20:58
*** noob2 has joined #openstack-dev21:01
*** harlowja_ has joined #openstack-dev21:03
*** harlowja has quit IRC21:04
*** harlowja_ is now known as harlowja21:04
noob2noob 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 RC21:06
noob2are there instructions to roll this out from a tarball?21:06
bennernoob2: you can use devstack for example and specify branch imho21:07
noob2benner:  that sounds good :)21:07
arosen1vishy: I was wrong, you can't import that due to that circular dep.21:07
*** cp16net is now known as cp16net|away21:07
*** eglynn__ has joined #openstack-dev21:07
noob2benner: i haven't used it in awhile but i should fire up a vm and try that.  I think it can do multihost installs also21:08
*** cp16net|away is now known as cp16net21:08
*** eglynn_ has quit IRC21:08
arosen1vishy:  yea securitygroup class would have to be pulled out of compute/api.py21:08
*** zing has quit IRC21:14
*** ewindisch has quit IRC21:15
*** eglynn__ has quit IRC21:16
*** ewindisch has joined #openstack-dev21:18
*** eglynn__ has joined #openstack-dev21:19
*** s0mik has quit IRC21:20
*** ewindisch has quit IRC21:21
*** eglynn has joined #openstack-dev21:23
*** eglynn__ has quit IRC21:24
*** dubsquared has joined #openstack-dev21:25
*** s0mik has joined #openstack-dev21:26
*** dubsquared has quit IRC21:27
*** Gordonz has quit IRC21:28
*** noob2 has quit IRC21:29
*** dubsquared has joined #openstack-dev21:31
*** milner has quit IRC21:32
*** dspano has quit IRC21:34
_0x44mordred: 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 works21:38
mordredclarkb, jeblair ^^21:39
_0x44mordred: Awesome, I'll just consider that ticket approved.21:40
_0x44:)21:40
*** maoy has quit IRC21:40
mordredsigh21: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
mordredAttributeError: printt21:40
mordredfail21:40
*** eharney has quit IRC21:40
clarkb_0x44: what url?21:40
clarkb_0x44: quick spot checks show things working for me so I will need examples21:42
*** milner has joined #openstack-dev21:43
_0x44clarkb: Belay that, I'm a moron.21:43
*** littleidea has quit IRC21:43
_0x44I clicked the wrong link in the email, and ended up trying to HTTP to the SSH URL.21:44
*** dani4571 has quit IRC21:44
*** milner has quit IRC21:47
eglynndhellmann: 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 IRC21:52
*** mnewby has quit IRC21:54
*** kbringard has quit IRC21:55
*** krtaylor has quit IRC21:57
*** moula has joined #openstack-dev21:59
*** EmilienM has left #openstack-dev22:04
*** moula has quit IRC22:05
*** moula has joined #openstack-dev22:07
jgriffithvishy: working on release notes, do you want me to just edit the wiki or dump to the etherpad?22:07
jgriffithvishy: Was going to duplicate http://wiki.openstack.org/ReleaseNotes/Folsom#OpenStack_Block_Storage_.28Cinder.2922:07
*** moula has quit IRC22:08
jgriffithvishy: NM22:09
*** sniperd has joined #openstack-dev22:13
*** tgall_foo has quit IRC22:15
*** rafaduran has left #openstack-dev22:19
*** dubsquared has quit IRC22:20
*** cp16net is now known as cp16net|away22:26
*** edygarcia has quit IRC22:27
openstackgerritA change was merged to openstack/nova: Bump the version of SQLAlchemy in pip-requires  https://review.openstack.org/1373022:28
*** datsun180b has quit IRC22:28
*** andrewbogott is now known as andrewbogott_afk22:28
openstackgerritA change was merged to openstack/nova: Remove unnecessary check if migration_ref is not None  https://review.openstack.org/1373122:29
*** koolhead17 has quit IRC22:32
*** waa has joined #openstack-dev22:38
*** harlowja_ has joined #openstack-dev22:39
*** littleidea has joined #openstack-dev22:40
*** zaitcev has quit IRC22:41
*** alunduil has quit IRC22:42
*** harlowja has quit IRC22:44
*** harlowja_ is now known as harlowja22:44
*** littleidea has joined #openstack-dev22:44
*** cp16net|away is now known as cp16net22:44
*** ewindisch has joined #openstack-dev22:45
*** heckj has joined #openstack-dev22:49
*** ewindisch has quit IRC23:01
*** heckj has quit IRC23:02
*** zz_Kiall is now known as Kiall23:07
*** jaypipes has quit IRC23:08
*** Kiall is now known as zz_Kiall23:08
*** littleidea has quit IRC23:09
*** danwent has quit IRC23:11
*** reed has quit IRC23:12
openstackgerritA change was merged to openstack/nova: Replaced default hostname function from gethostname to getfqdn  https://review.openstack.org/1363623:13
*** bencherian has quit IRC23:17
*** soosiechoi has quit IRC23:18
*** jog0 has quit IRC23:21
*** torandu has quit IRC23:24
mordredharlowja: ping23:26
harlowjayo23:26
mordredharlowja: I just realized that this: https://bugs.launchpad.net/openstack-ci/+bug/1035966 had fallen through the cracks23:27
uvirtbotLaunchpad bug 1035966 in openstack-ci "Move 'anvil' to stackforge" [Medium,In progress]23:27
harlowjaits ok,23:27
mordredharlowja: partially because we had some staffing repurpose and stuff23:27
harlowjanp23:27
harlowjathats how it goes :-p23:27
mordredyes. yes it is :)23:27
mordredanywhoo - before I did any work on it, I wanted to check in with you23:28
harlowjacool, well i'm ok with doing it, but just want to see what the side-effects would be23:28
*** torandu has joined #openstack-dev23:29
*** bencherian has joined #openstack-dev23:29
*** torandu has quit IRC23:29
*** torandu has joined #openstack-dev23:30
mordredk. main side effects would be submitting code via gerrit instead of github, moving the org, and ... well, I think that's about it23:30
harlowjaya, let me just check with everyone in tommorows meeting if we are ready to handle this23:30
harlowjai don't think its a problem here, but u never know :-p23:30
harlowjapriorities and all that crap23:30
harlowjalol23:30
mordredpriorities. bah23:31
harlowjalol23:31
harlowjaya23:31
harlowjawhat about the readthedocs site, does that change or not?23:32
harlowjanot quite sure how that works, lol23:32
mordredwe don't really do readthedocs for anything else - but you might need to change the github config23:33
harlowjak23: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 IRC23:37
harlowjakk, i'll let u know tommorow about the go or no go, k?23:40
mordredharlowja: sounds great!23:44
harlowjacool, thx much23:44
*** Ruetobas has quit IRC23:51
*** mrodden1 has quit IRC23:52
*** jeremydei has quit IRC23:52
*** alunduil has joined #openstack-dev23:54
*** torandu has quit IRC23:55
*** Ruetobas has joined #openstack-dev23:56

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