*** adjohn has quit IRC | 00:02 | |
*** adjohn has joined #openstack-dev | 00:02 | |
*** anotherjesse is now known as anotherjesse_zz | 00:02 | |
vishy | bcwaldon: areyou fixing that? | 00:10 |
---|---|---|
vishy | looks like we missed a spot converting int to str | 00:11 |
*** dachary has quit IRC | 00:12 | |
*** dolphm_ has quit IRC | 00:13 | |
*** deshantm has joined #openstack-dev | 00:14 | |
*** dolphm has joined #openstack-dev | 00:18 | |
* jeblair heads to wikimedia in SF for the meetup | 00:19 | |
*** littleidea has joined #openstack-dev | 00:26 | |
*** vizsla has joined #openstack-dev | 00:26 | |
*** ayoung has joined #openstack-dev | 00:27 | |
*** ayoung has quit IRC | 00:27 | |
bcwaldon | vishy: I havent claimed it | 00:31 |
*** dolphm has quit IRC | 00:31 | |
bcwaldon | vishy: we're just presenting it as a string, btw, so we convert in and out | 00:32 |
*** bhall has quit IRC | 00:32 | |
bcwaldon | vishy: I'm thinking it has something to do with snapshotId on Volume, btw | 00:33 |
sdake | anyone know of a keystone + nova image-list not working problem? | 00:35 |
sdake | getting error 500, looks like auth not passed to glance api properly | 00:36 |
*** heckj has quit IRC | 00:42 | |
zaitcev | Me and Monty bikeshed a 5-liner patch to smithereens. | 00:44 |
zaitcev | Meh, I thought I'd do something useful today. | 00:44 |
*** littleidea has quit IRC | 00:47 | |
*** fattarsi has quit IRC | 00:49 | |
*** dolphm has joined #openstack-dev | 00:56 | |
rohit404 | dolphm: ping | 00:57 |
dolphm | rohit404: pong | 00:57 |
*** vincentricci has quit IRC | 00:58 | |
rohit404 | trying to understand the get token mechansim...https://github.com/openstack/nova/blob/master/nova/api/ec2/__init__.py#L219...this is for specifically getting ec2 tokens...i want to get admin tokens...do i need all the parameters popuated in creds | 00:59 |
dolphm | chmouel: ping ^^ | 01:01 |
rohit404 | just to give a bit of more background...quantum manager sits within nova space..i need to make a call to keystone to get a token and then pass that token to quantum when making a quantum api request from quantum manager (in nova) | 01:02 |
dolphm | rohit404: i'm pretty sure you need access and signature, but i'm not familiar with the rest | 01:03 |
dolphm | rohit404: the credentials you provide definitely need to be mapped to a user with the admin role though | 01:04 |
*** Ryan_Lane has quit IRC | 01:04 | |
rohit404 | dolphm: i could just provide the admin user and pass in credentials no ? | 01:04 |
*** andrewsmedina has quit IRC | 01:05 | |
dolphm | rohit404: do you want to use ec2 creds or username/pass? | 01:07 |
rohit404 | dolphm: username/pass..no ec2 creds | 01:07 |
dolphm | rohit404: then you're looking at the wrong example! | 01:07 |
rohit404 | dolphm: lol | 01:08 |
dolphm | rohit404: this is the underlying auth call for username/pass http://keystone.openstack.org/api_curl_examples.html#id4 | 01:08 |
*** openstackgerrit has quit IRC | 01:08 | |
*** johnpostlethwait has quit IRC | 01:08 | |
dolphm | rohit404: but you want to use keystoneclient, right? | 01:08 |
*** maplebed has quit IRC | 01:09 | |
*** openstackgerrit has joined #openstack-dev | 01:10 | |
rohit404 | dolphm: so i am trying to figure that out...what i understand is if i need to make a call from nova then i cant use keystoneclient | 01:10 |
dolphm | rohit404: keystoneclient will make that call for you when you instatiate it | 01:11 |
dolphm | instantiate* | 01:11 |
dolphm | rohit404: from keystoneclient.v2_0 import client | 01:12 |
dolphm | rohit404: client.Client(username='asdf', password='asdf', auth_url='http://localhost:5000/v2.0/') | 01:12 |
*** Ryan_Lane has joined #openstack-dev | 01:12 | |
dolphm | rohit404: and if you just need the token back, c.auth_token | 01:13 |
*** _adjohn has joined #openstack-dev | 01:13 | |
dolphm | rohit404: c = client.Client() | 01:13 |
rohit404 | dolphm: i saw the keystoneclient.v2_0 example in there...i put that aside coz i didnt see any nova code making use of it | 01:14 |
dolphm | rohit404: nova should start making use of it | 01:15 |
dolphm | rohit404: keystone middleware as well | 01:15 |
dolphm | rohit404: so, for a more complete example... | 01:15 |
dolphm | rohit404: here's an admin (SERVICE_TOKEN, SERVICE_ENDPOINT) session on the command line to set things up http://paste.openstack.org/raw/12051/ | 01:16 |
dolphm | rohit404: and then the python session for the user would look like this http://paste.openstack.org/raw/12055/ | 01:16 |
*** adjohn has quit IRC | 01:17 | |
*** _adjohn is now known as adjohn | 01:17 | |
*** gyee has quit IRC | 01:17 | |
rohit404 | dolphm: that's neat...the example is perfect to get me going...let me give that a shot | 01:18 |
dolphm | rohit404: actually, i missed passing in the tenant_name to the client, e.g. Client(.., tenant_name='ec2er', ..) | 01:18 |
dolphm | tenant_id works as well, whatever nova works with | 01:19 |
rohit404 | dolphm: is the tenant_id required ? | 01:20 |
dolphm | rohit404: it's not *required* to auth, but you'll probably want to specify the tenant so that quantum knows what tenant it's operating on | 01:21 |
rohit404 | dolphm: currently quantum doesnt have its own middleware and i pointed it to use generic auth_token.py.. | 01:22 |
dolphm | rohit404: if you don't specify a tenant, the provided token will be scoped to the user's default tenant (keystone create-user --name <username> --pass <password --tenant_id <default tenant-id>) | 01:22 |
rohit404 | with that if i generate a token using keystone, i can use that token against all tenants | 01:22 |
rohit404 | so its a globally scoped token i guess | 01:23 |
*** andrewsmedina has joined #openstack-dev | 01:23 | |
*** Ryan_Lane has quit IRC | 01:24 | |
dolphm | rohit404: the opposite is true -- it wouldn't be scoped at all | 01:24 |
rohit404 | dolphm: ah ! | 01:25 |
rohit404 | so something like this on the admin url...http://paste.openstack.org/show/12056/ | 01:27 |
dolphm | rohit404: yep, that's pretty much what you're doing, but it would work on either endpoint (5000 or 35357) | 01:28 |
rohit404 | dolphm : so the service one doesnt need tenant specified ? | 01:29 |
*** ywu has joined #openstack-dev | 01:29 | |
dolphm | rohit404: i think the convention now is to use a 'service' tenant | 01:29 |
rohit404 | yeah, the service tenant is used when there are no users in the system..i think i read that somewhere | 01:31 |
dolphm | rohit404: thats the SERVICE_TOKEN (configured in keystone.conf) | 01:31 |
rohit404 | ooo...so there is a 'service' tenant | 01:31 |
dolphm | rohit404: which should perhaps be renamed to STATIC_TOKEN or something | 01:31 |
dolphm | rohit404: yeah | 01:32 |
rohit404 | i see... | 01:32 |
rohit404 | so with 5000 you need to use that tenant | 01:32 |
dolphm | rohit404: that's true for either port | 01:34 |
dolphm | rohit404: the only difference between 5000 and 35357 is what operations are available, not their behaviors | 01:35 |
*** dubsquared has left #openstack-dev | 01:35 | |
rohit404 | dolphm: yup, saw the api guide | 01:35 |
dolphm | rohit404: there's a debate over GET /tenants, but i'll digress :P | 01:35 |
rohit404 | dolphm: lol | 01:35 |
*** PotHix has quit IRC | 01:36 | |
*** adjohn has quit IRC | 01:36 | |
rohit404 | so i think i can use the service tenant with a valid user name and password to get a token from either end point and pass that to quantum to validate | 01:37 |
rohit404 | and keystoneclient shd do the trick to get the token from keystone | 01:37 |
rohit404 | and i can add the token in X-AUTH in the request headers to quantum | 01:38 |
dolphm | rohit404: yep! | 01:38 |
dolphm | (X-Auth-Token) | 01:38 |
rohit404 | yup...fat fingers | 01:39 |
dolphm | just checking :) | 01:39 |
rohit404 | well, thanks a lot sir..appreciate the patience...hopefully i can do good with this understanding now..wish me luck | 01:39 |
dolphm | rohit404: /salute good sir | 01:40 |
*** zaitcev has quit IRC | 01:41 | |
*** novas0x2a|laptop has quit IRC | 01:44 | |
*** jdurgin has quit IRC | 01:45 | |
*** PotHix has joined #openstack-dev | 01:46 | |
*** spiffxp has joined #openstack-dev | 01:47 | |
*** zaitcev has joined #openstack-dev | 01:50 | |
*** mszilagyi has quit IRC | 01:50 | |
*** mnewby has quit IRC | 01:52 | |
*** jakedahn has left #openstack-dev | 01:53 | |
*** pixelbeat has quit IRC | 01:54 | |
*** PotHix has quit IRC | 02:02 | |
*** asalkeld has quit IRC | 02:06 | |
*** PotHix has joined #openstack-dev | 02:08 | |
*** Ryan_Lane has joined #openstack-dev | 02:09 | |
*** asalkeld has joined #openstack-dev | 02:09 | |
*** hugokuo has joined #openstack-dev | 02:11 | |
*** shevek_ has quit IRC | 02:12 | |
*** asalkeld has quit IRC | 02:12 | |
*** asalkeld has joined #openstack-dev | 02:13 | |
*** danwent has quit IRC | 02:18 | |
*** dolphm has quit IRC | 02:18 | |
*** PotHix has quit IRC | 02:21 | |
*** dwalleck has joined #openstack-dev | 02:22 | |
*** PotHix has joined #openstack-dev | 02:25 | |
rohit404 | dolphm: i think i got it work :) | 02:25 |
*** zigo has joined #openstack-dev | 02:27 | |
*** adjohn has joined #openstack-dev | 02:44 | |
*** PotHix has quit IRC | 02:45 | |
*** rohit404 has quit IRC | 02:48 | |
*** mszilagyi has joined #openstack-dev | 02:50 | |
*** ywu has quit IRC | 03:00 | |
*** dolphm has joined #openstack-dev | 03:01 | |
*** dtroyer is now known as dtroyer_zzz | 03:10 | |
*** dolphm has quit IRC | 03:16 | |
*** jdg_ has joined #openstack-dev | 03:27 | |
*** hugokuo has quit IRC | 03:28 | |
*** hugokuo has joined #openstack-dev | 03:29 | |
*** adjohn has quit IRC | 03:31 | |
*** zigo has quit IRC | 03:33 | |
*** jdg__ has joined #openstack-dev | 03:35 | |
*** deshantm has quit IRC | 03:37 | |
*** jdg__ has quit IRC | 03:38 | |
*** jdg_ has quit IRC | 03:39 | |
*** jdg_ has joined #openstack-dev | 03:41 | |
*** mycloud has joined #openstack-dev | 03:42 | |
*** thingee has joined #openstack-dev | 03:45 | |
*** vizsla has quit IRC | 03:48 | |
*** jdg_ has quit IRC | 03:55 | |
*** mnewby has joined #openstack-dev | 03:57 | |
*** jshepher has joined #openstack-dev | 03:57 | |
*** paulstallworth has quit IRC | 04:06 | |
*** dwalleck has quit IRC | 04:14 | |
*** Susanne-Balle has quit IRC | 04:15 | |
*** Susanne-Balle has joined #openstack-dev | 04:17 | |
*** hub_cap has quit IRC | 04:18 | |
*** rohit404 has joined #openstack-dev | 04:21 | |
*** littleidea has joined #openstack-dev | 04:29 | |
*** dolphm has joined #openstack-dev | 04:29 | |
*** jshepher has quit IRC | 04:45 | |
*** dolphm has quit IRC | 04:50 | |
*** zaitcev has quit IRC | 04:52 | |
*** shevek_ has joined #openstack-dev | 04:58 | |
*** hattwick has quit IRC | 05:02 | |
*** Vek has quit IRC | 05:04 | |
*** littleidea has quit IRC | 05:05 | |
*** sdake has quit IRC | 05:09 | |
*** asalkeld has quit IRC | 05:13 | |
*** littleidea has joined #openstack-dev | 05:15 | |
hugokuo | test | 05:16 |
*** martine has joined #openstack-dev | 05:19 | |
*** comstud has quit IRC | 05:19 | |
*** dtroyer_zzz is now known as dtroyer | 05:20 | |
*** spiffxp has quit IRC | 05:22 | |
hugokuo | ee | 05:26 |
*** andrewsmedina has quit IRC | 05:29 | |
*** danwent has joined #openstack-dev | 05:41 | |
*** shang has joined #openstack-dev | 05:41 | |
*** martine has quit IRC | 05:43 | |
redbo | mtaylor,jeblair,LinuxJedi: is there a step 2 to getting my gerrit account working? launchpad assures me my account's openid setup is exceptionally correct now. | 05:50 |
redbo | though I suspect they deleted the id that was working and left the one that's broken | 05:51 |
*** armaan has joined #openstack-dev | 05:53 | |
redbo | Or something like that. I only have a vague idea of how this is supposed to work. | 05:53 |
*** adjohn has joined #openstack-dev | 06:03 | |
*** sdake has joined #openstack-dev | 06:04 | |
*** dtroyer is now known as dtroyer_zzz | 06:07 | |
*** danwent has quit IRC | 06:12 | |
*** tserong has quit IRC | 06:18 | |
*** tserong has joined #openstack-dev | 06:23 | |
*** asalkeld has joined #openstack-dev | 06:32 | |
*** bepernoot has joined #openstack-dev | 06:33 | |
*** tserong has quit IRC | 06:37 | |
*** Ryan_Lane has joined #openstack-dev | 06:41 | |
*** bepernoot has quit IRC | 06:45 | |
*** hugokuo has quit IRC | 06:53 | |
*** shang has quit IRC | 06:54 | |
*** spiffxp has joined #openstack-dev | 06:56 | |
*** tserong has joined #openstack-dev | 06:57 | |
*** tserong has joined #openstack-dev | 06:57 | |
* ttx yawns | 06:57 | |
*** kbringard has joined #openstack-dev | 07:00 | |
*** Vek has joined #openstack-dev | 07:04 | |
*** sandywalsh has quit IRC | 07:07 | |
*** dachary has joined #openstack-dev | 07:07 | |
*** dachary has quit IRC | 07:17 | |
*** devananda has quit IRC | 07:33 | |
*** adjohn has quit IRC | 07:33 | |
*** apevec has joined #openstack-dev | 07:42 | |
*** sandywalsh has joined #openstack-dev | 07:42 | |
*** devananda has joined #openstack-dev | 07:45 | |
*** shang has joined #openstack-dev | 07:46 | |
*** kindaopsdevy has joined #openstack-dev | 07:55 | |
*** hattwick has joined #openstack-dev | 07:59 | |
*** eglynn__ has quit IRC | 08:06 | |
*** bepernoot has joined #openstack-dev | 08:07 | |
*** kindaopsdevy has left #openstack-dev | 08:14 | |
*** armaan has left #openstack-dev | 08:15 | |
*** hugokuo has joined #openstack-dev | 08:16 | |
*** spiffxp has quit IRC | 08:20 | |
*** apevec has quit IRC | 08:26 | |
*** reidrac has joined #openstack-dev | 08:26 | |
*** dachary has joined #openstack-dev | 08:27 | |
*** mdrnstm has quit IRC | 08:28 | |
*** mdrnstm has joined #openstack-dev | 08:29 | |
*** pixelbeat has joined #openstack-dev | 08:39 | |
*** kbringard has quit IRC | 08:44 | |
*** apevec has joined #openstack-dev | 08:46 | |
*** eglynn__ has joined #openstack-dev | 08:49 | |
*** Oneiroi^gone has quit IRC | 08:59 | |
*** oneiroi has joined #openstack-dev | 09:00 | |
*** kindaopsdevy has joined #openstack-dev | 09:01 | |
*** darraghb has joined #openstack-dev | 09:01 | |
*** fc__ has joined #openstack-dev | 09:02 | |
*** eglynn__ has quit IRC | 09:06 | |
*** derekh has joined #openstack-dev | 09:07 | |
soren | ttx: Keystone still hasn't hit RC? | 09:13 |
*** rods has joined #openstack-dev | 09:14 | |
*** kindaopsdevy has quit IRC | 09:15 | |
*** maploin has joined #openstack-dev | 09:17 | |
*** maploin has quit IRC | 09:17 | |
*** maploin has joined #openstack-dev | 09:17 | |
apevec | soren, I see one bug 958135 in essex-rc1 still open | 09:25 |
uvirtbot | Launchpad bug 958135 in keystone "keystone CLI shouldn't traceback when invalid data entered:UnboundLocalError: local variable 'metadata_ref' referenced before assignment" [Critical,In progress] https://launchpad.net/bugs/958135 | 09:25 |
*** eglynn__ has joined #openstack-dev | 09:36 | |
LinuxJedi | redbo: yes, it is very clear looking at your LP account that they have deleted the wrong OpenID :( | 09:41 |
LinuxJedi | redbo: third time they have done that for us now. Really wish they would actually read the support tickets properly | 09:41 |
ttx | soren: no | 09:47 |
ttx | soren: haven't heard from heckj | 09:47 |
ttx | soren: if 958135 is the last one I don't think it should block RC1 any longer | 09:48 |
ttx | but I need to sync with Joe first | 09:48 |
*** Ryan_Lane has quit IRC | 09:55 | |
soren | ttx: No worries. I was just making sure it hadn't hit RC and someone had forgotten to create the m-p branch on github (or whereever that happens). | 10:09 |
*** pixelbeat has quit IRC | 10:12 | |
*** sandywalsh has quit IRC | 10:25 | |
*** armaan has joined #openstack-dev | 10:30 | |
*** sandywalsh has joined #openstack-dev | 10:38 | |
*** shang has quit IRC | 10:40 | |
*** tryggvil__ has joined #openstack-dev | 10:46 | |
*** asalkeld has quit IRC | 10:51 | |
*** kyriakos has joined #openstack-dev | 11:00 | |
*** shang has joined #openstack-dev | 11:09 | |
*** bsza has joined #openstack-dev | 11:19 | |
*** benner_ has quit IRC | 11:21 | |
*** ncode has joined #openstack-dev | 11:34 | |
*** benner has joined #openstack-dev | 11:40 | |
*** martine has joined #openstack-dev | 11:41 | |
*** asalkeld has joined #openstack-dev | 11:49 | |
*** dolphm has joined #openstack-dev | 11:51 | |
*** asalkeld has left #openstack-dev | 11:58 | |
*** vizsla has joined #openstack-dev | 12:03 | |
*** alaski has joined #openstack-dev | 12:06 | |
*** dolphm has quit IRC | 12:10 | |
*** ncode has quit IRC | 12:18 | |
*** markmc has joined #openstack-dev | 12:21 | |
*** dolphm has joined #openstack-dev | 12:24 | |
*** lts has joined #openstack-dev | 12:24 | |
*** andrewsmedina has joined #openstack-dev | 12:25 | |
*** martine has quit IRC | 12:27 | |
*** martine has joined #openstack-dev | 12:27 | |
*** vizsla has quit IRC | 12:30 | |
*** maploin` has joined #openstack-dev | 12:33 | |
*** maploin has quit IRC | 12:33 | |
*** maploin` is now known as maploin | 12:34 | |
*** maploin has joined #openstack-dev | 12:34 | |
*** sandywalsh has quit IRC | 12:36 | |
*** ayoung has joined #openstack-dev | 12:37 | |
*** troytoman-away is now known as troytoman | 12:47 | |
*** sandywalsh has joined #openstack-dev | 12:49 | |
*** armaan1 has joined #openstack-dev | 12:58 | |
*** armaan has quit IRC | 13:00 | |
*** dolphm has quit IRC | 13:03 | |
*** dprince has joined #openstack-dev | 13:04 | |
*** PotHix has joined #openstack-dev | 13:06 | |
*** mattray has joined #openstack-dev | 13:06 | |
*** dneary has joined #openstack-dev | 13:14 | |
*** dneary has joined #openstack-dev | 13:14 | |
*** rohit404 has quit IRC | 13:15 | |
*** roge has quit IRC | 13:25 | |
*** shang has quit IRC | 13:37 | |
*** dolphm has joined #openstack-dev | 13:40 | |
*** roge has joined #openstack-dev | 13:42 | |
*** deshantm has joined #openstack-dev | 13:46 | |
*** rohit404 has joined #openstack-dev | 13:46 | |
*** dtroyer_zzz is now known as dtroyer | 13:46 | |
*** alaski has quit IRC | 13:47 | |
*** alaski has joined #openstack-dev | 13:48 | |
*** dtroyer is now known as dtroyer_zzz | 13:58 | |
*** maploin` has joined #openstack-dev | 14:01 | |
*** maploin has quit IRC | 14:05 | |
*** rnirmal has joined #openstack-dev | 14:05 | |
*** paulstallworth has joined #openstack-dev | 14:06 | |
*** dtroyer_zzz is now known as dtroyer | 14:11 | |
*** roge has quit IRC | 14:14 | |
*** roge has joined #openstack-dev | 14:16 | |
*** hub_cap has joined #openstack-dev | 14:23 | |
*** littleidea has quit IRC | 14:25 | |
*** davidkranz has joined #openstack-dev | 14:26 | |
*** jkoelker has quit IRC | 14:39 | |
*** jkoelker has joined #openstack-dev | 14:41 | |
*** kbringard has joined #openstack-dev | 14:42 | |
*** deshantm_ has joined #openstack-dev | 14:47 | |
*** armaan1 has left #openstack-dev | 14:49 | |
*** deshantm has quit IRC | 14:49 | |
*** armaan1 has joined #openstack-dev | 14:50 | |
*** Mandell has joined #openstack-dev | 14:51 | |
*** zzed has joined #openstack-dev | 14:55 | |
*** dwalleck has joined #openstack-dev | 14:57 | |
*** armaan1 has left #openstack-dev | 15:04 | |
*** deshantm_ is now known as deshantm | 15:05 | |
*** maploin` is now known as maploin | 15:07 | |
*** maploin has joined #openstack-dev | 15:07 | |
*** andrewsmedina has quit IRC | 15:10 | |
*** mattray has quit IRC | 15:11 | |
*** deshantm_ has joined #openstack-dev | 15:11 | |
*** danwent has joined #openstack-dev | 15:11 | |
*** Mandell has quit IRC | 15:13 | |
*** deshantm has quit IRC | 15:13 | |
*** deshantm_ is now known as deshantm | 15:13 | |
*** Mandell has joined #openstack-dev | 15:17 | |
*** kbringard has quit IRC | 15:19 | |
*** deshantm is now known as xen|deshantm | 15:19 | |
*** jkoelker_ has joined #openstack-dev | 15:22 | |
*** spiffxp has joined #openstack-dev | 15:25 | |
*** Mandell has quit IRC | 15:26 | |
*** caffeinejunkie has joined #openstack-dev | 15:30 | |
*** caffeinejunkie has left #openstack-dev | 15:30 | |
*** Mandell has joined #openstack-dev | 15:31 | |
*** kbringard has joined #openstack-dev | 15:31 | |
*** dubsquared has joined #openstack-dev | 15:45 | |
*** thingee has quit IRC | 15:45 | |
*** kindaopsdevy has joined #openstack-dev | 15:50 | |
*** gyee has joined #openstack-dev | 15:54 | |
*** deshantm has joined #openstack-dev | 15:56 | |
*** deshantm is now known as deshantm_ | 15:56 | |
*** dolphm has quit IRC | 15:59 | |
*** dwalleck has quit IRC | 16:00 | |
*** dwalleck has joined #openstack-dev | 16:03 | |
*** dwalleck has quit IRC | 16:03 | |
*** littleidea has joined #openstack-dev | 16:03 | |
*** maploin has quit IRC | 16:03 | |
*** n0ano has quit IRC | 16:07 | |
*** jdurgin has joined #openstack-dev | 16:08 | |
*** littleidea_ has joined #openstack-dev | 16:08 | |
jeblair | redbo: they probably deleted the endpoint other than the one we were expecting. I zeroed out some database fields in gerrit, and you should be good to go now. | 16:08 |
*** littleidea has quit IRC | 16:09 | |
*** littleidea_ is now known as littleidea | 16:09 | |
*** dwalleck has joined #openstack-dev | 16:09 | |
*** fattarsi has joined #openstack-dev | 16:12 | |
*** kbringard has quit IRC | 16:12 | |
*** kbringard has joined #openstack-dev | 16:13 | |
*** fattarsi has quit IRC | 16:17 | |
*** fattarsi has joined #openstack-dev | 16:18 | |
*** GheRivero_ has joined #openstack-dev | 16:19 | |
*** vincentricci has joined #openstack-dev | 16:19 | |
dprince | dwalleck/jaypipes: holler | 16:23 |
dwalleck | dprince: Heya | 16:24 |
*** reidrac has left #openstack-dev | 16:24 | |
*** bepernoot has quit IRC | 16:25 | |
dprince | dwalleck: So about these Tempest config file changes... | 16:25 |
openstackgerrit | Verification of a change to openstack/nova failed: Convert libvirt connection class to use config APIs for guests https://review.openstack.org/5621 | 16:26 |
dprince | dwalleck: It would be nice to have a stable section of the config file that we don't change. If we need to add to it for extra tests (corner cases, etc.) the those can go into the config as well. But we'd agree not the modify the base settings. | 16:26 |
*** kbringard has quit IRC | 16:26 | |
*** kbringard has joined #openstack-dev | 16:27 | |
dwalleck | dprince: I understand. The first major change that we really had to make was correctly splitting data up into the correct sections | 16:27 |
dwalleck | Now is just this matter of users. Ideally I'd just create the users I want on the spot as part of my setup, but that's something that may not be able to happen in everyone's environment | 16:28 |
*** dolphm has joined #openstack-dev | 16:29 | |
dwalleck | While verbose, Jay and I had some back and forth on how to deal with tests that require a specific scenario, such as two non-admin users | 16:29 |
*** derekh has quit IRC | 16:29 | |
dwalleck | I would hope to not have to make further changes (other than leaving room for an admin user for when we want to operate under that context) | 16:29 |
*** andrewsmedina has joined #openstack-dev | 16:31 | |
dwalleck | So I'm hoping at the design conference we can lock down what those things are, and then do like you recommend going forward and restrict certain changes. Or I could go back and make the user1 and user2 optional configs | 16:32 |
jaypipes | dprince, dwalleck: hey guys, gimme one moinute... | 16:32 |
*** maplebed has joined #openstack-dev | 16:33 | |
*** jshepher has joined #openstack-dev | 16:33 | |
dwalleck | The other thing we've been working towards is having Tempest infer what it can from the environment so that 1) we handle misconfigs more smoothly and 2) so the config file doesn't balloon to an unmanageable size | 16:33 |
*** xen|deshantm is now known as deshantm | 16:34 | |
*** littleidea has quit IRC | 16:38 | |
*** zaitcev has joined #openstack-dev | 16:39 | |
*** viraptor has quit IRC | 16:40 | |
jaypipes | dwalleck, dprince: ok, brothas. ready to chat about tempest config... | 16:40 |
jaypipes | dwalleck, dprince: http://etherpad.openstack.org/tempest-config | 16:41 |
*** ayoung has quit IRC | 16:43 | |
*** littleidea has joined #openstack-dev | 16:44 | |
*** mnewby has quit IRC | 16:49 | |
*** dolphm has quit IRC | 16:51 | |
*** dolphm has joined #openstack-dev | 16:52 | |
openstackgerrit | Verification of a change to openstack/python-novaclient failed: Handle server_id and serverId in volume list https://review.openstack.org/5737 | 16:53 |
*** troytoman is now known as troytoman-away | 16:53 | |
*** thingee has joined #openstack-dev | 16:54 | |
dprince | jaypipes/dwalleck: Where does this leave us about my merge proposal? Can we at least revert the non_admin_user stuff soon then? | 16:54 |
*** jkoelker_ has quit IRC | 16:54 | |
openstackgerrit | Verification of a change to openstack/nova failed: Convert libvirt connection class to use config APIs for guests https://review.openstack.org/5621 | 16:54 |
dprince | jaypipes/dwalleck: or put it in a different section rather? | 16:54 |
dwalleck | I can do that right now if everyone's okay with that approach | 16:54 |
*** jkoelker_ has joined #openstack-dev | 16:54 | |
jaypipes | dwalleck: ++ | 16:55 |
dwalleck | okay, I'm on it | 16:55 |
jaypipes | dprince: we'll revert it right now. | 16:55 |
jerdfelt | did jenkins devstack integration tests die again? | 16:56 |
jerdfelt | Exception: No ready nodes | 16:56 |
adam_g | i assume the config changes you guys are talking about are the ones that probably caused this to start happening? :) https://jenkins.qa.ubuntu.com/view/Precise%20OpenStack%20Testing/job/precise-openstack-essex-tempest/17/console | 16:56 |
*** jshepher has quit IRC | 16:56 | |
openstackgerrit | Verification of a change to openstack/python-novaclient failed: Improve the error message from the nova shell https://review.openstack.org/5605 | 16:56 |
jaypipes | jeblair: see jerdfelt above ^^ | 16:56 |
*** Mandell has quit IRC | 16:57 | |
jaypipes | adam_g: yep. | 16:57 |
openstackgerrit | Verification of a change to openstack/python-novaclient failed: Handle server_id and serverId in volume list https://review.openstack.org/5737 | 16:57 |
openstackgerrit | Verification of a change to openstack/python-novaclient failed: Handle server_id and serverId in volume list https://review.openstack.org/5737 | 16:58 |
*** dolphm has quit IRC | 16:59 | |
*** markmc has quit IRC | 16:59 | |
*** hub_cap has quit IRC | 17:00 | |
*** ayoung has joined #openstack-dev | 17:03 | |
*** lloydde has joined #openstack-dev | 17:04 | |
*** hub_cap has joined #openstack-dev | 17:05 | |
*** oneiroi is now known as Oneiroi^gone | 17:06 | |
*** nati has joined #openstack-dev | 17:06 | |
*** Oneiroi^gone is now known as oneiroi | 17:07 | |
*** oneiroi is now known as Oneiroi^gone | 17:07 | |
*** heckj has joined #openstack-dev | 17:12 | |
*** asdfasdf has joined #openstack-dev | 17:14 | |
jeblair | jaypipes, jerdfelt: ack | 17:14 |
*** asdfasdf is now known as nati-ueno | 17:14 | |
jerdfelt | jeblair: thanks | 17:14 |
jeblair | jerdfelt, jaypipes; it looks like cloudservers is a little flakey this morning. there are some nodes ready, but it's not having 100% success rate in preparing them. | 17:15 |
jaypipes | jeblair: k | 17:16 |
jeblair | (good news is that we're very close to being able to use nodes from multiple providers) | 17:16 |
*** nati has quit IRC | 17:18 | |
*** dtroyer is now known as dtroyer_zzz | 17:19 | |
*** mattray has joined #openstack-dev | 17:20 | |
*** bepernoot has joined #openstack-dev | 17:20 | |
*** Ryan_Lane has joined #openstack-dev | 17:21 | |
*** shevek_ has quit IRC | 17:24 | |
*** littleidea_ has joined #openstack-dev | 17:25 | |
*** cdub has quit IRC | 17:25 | |
*** eglynn__ has quit IRC | 17:25 | |
*** littleidea has quit IRC | 17:28 | |
*** littleidea_ is now known as littleidea | 17:28 | |
*** hub_cap has quit IRC | 17:28 | |
*** adjohn has joined #openstack-dev | 17:29 | |
*** hub_cap has joined #openstack-dev | 17:29 | |
*** Gordonz has quit IRC | 17:29 | |
*** Mandell has joined #openstack-dev | 17:29 | |
*** apevec has quit IRC | 17:29 | |
*** dneary has quit IRC | 17:31 | |
*** dwalleck has quit IRC | 17:34 | |
davidkranz | jaypipes, dwalleck: I just submitted a fix to get tempest going without failure https://review.openstack.org/#change,5743 | 17:34 |
openstackgerrit | Verification of a change to openstack/nova failed: Convert libvirt vif classes over to use config API https://review.openstack.org/5614 | 17:36 |
ttx | heckj: howdy | 17:37 |
heckj | ttx: morning! | 17:38 |
ttx | heckj: it's well past beer o'clock around here :) | 17:38 |
heckj | One bug outstanding, in review. Hunting folks to get it reviewed - bcwaldon, anotherjesse, dolphm? | 17:38 |
heckj | https://review.openstack.org/#change,5713 ^^ | 17:38 |
*** mdrnstm has quit IRC | 17:38 | |
heckj | just a short few hours ago was brandy for me, but I've slept in between so I'm calling it morning :-) | 17:38 |
ttx | heckj: I can be back in 3h30 and we can do the cut dance then if you get it reviewed by then | 17:39 |
heckj | sounds good | 17:39 |
ttx | yay | 17:39 |
*** darraghb has quit IRC | 17:39 | |
openstackgerrit | Verification of a change to openstack/nova failed: Delete the test_preparing_xml_info libvirt test https://review.openstack.org/5612 | 17:46 |
*** novas0x2a|laptop has joined #openstack-dev | 17:50 | |
*** mnewby has joined #openstack-dev | 17:50 | |
*** mnewby has quit IRC | 17:50 | |
*** mnewby has joined #openstack-dev | 17:51 | |
*** armaan has joined #openstack-dev | 17:52 | |
*** mszilagyi has joined #openstack-dev | 17:52 | |
*** mattstep has quit IRC | 17:53 | |
*** mattstep has joined #openstack-dev | 17:54 | |
bcwaldon | heckj: looking momentarily | 17:56 |
bcwaldon | jerdfelt: https://review.openstack.org/#change,5714 | 17:56 |
heckj | bcwaldon: thank you! | 17:56 |
openstackgerrit | Verification of a change to openstack/nova failed: Convert libvirt volume classes over to use config API https://review.openstack.org/5613 | 17:57 |
bcwaldon | jerdfelt: can you slam that guy in? | 17:57 |
bcwaldon | heckj: jesse already got it | 17:57 |
*** bepernoot has quit IRC | 17:58 | |
*** eglynn__ has joined #openstack-dev | 17:58 | |
heckj | sweet | 17:59 |
*** littleidea has quit IRC | 18:05 | |
openstackgerrit | Verification of a change to openstack/nova failed: Convert libvirt connection class to use config APIs for guests https://review.openstack.org/5621 | 18:07 |
*** ayoung has quit IRC | 18:07 | |
openstackgerrit | Verification of a change to openstack-dev/devstack failed: Remove usage of glance auth-context filter. https://review.openstack.org/5742 | 18:11 |
*** bepernoot has joined #openstack-dev | 18:12 | |
jerdfelt | jeblair: devstack integration tests appear to be broken again | 18:13 |
* jerdfelt confused | 18:13 | |
jerdfelt | this was probably an old message that took a while to get delivered | 18:14 |
*** mattstep has quit IRC | 18:15 | |
*** mattstep has joined #openstack-dev | 18:15 | |
openstackgerrit | Verification of a change to openstack/nova failed: Remove unused certificate SQL calls. https://review.openstack.org/5733 | 18:17 |
jerdfelt | ahh yeah. they are getting delayed from before | 18:18 |
*** dolphm has joined #openstack-dev | 18:22 | |
*** hattwick has quit IRC | 18:23 | |
clayg | vishy: does python-novaclient work with volumes exten. on the compute service if you override --service_type = compute ??? | 18:23 |
*** fc__ has quit IRC | 18:24 | |
*** mdrnstm has joined #openstack-dev | 18:24 | |
*** johnpostlethwait has joined #openstack-dev | 18:25 | |
*** hattwick has joined #openstack-dev | 18:25 | |
*** eglynn__ has quit IRC | 18:25 | |
*** davidkranz has quit IRC | 18:27 | |
*** Ryan_Lane has quit IRC | 18:27 | |
openstackgerrit | Verification of a change to openstack/nova failed: Introduce a set of classes for storing libvirt guest configuration https://review.openstack.org/5610 | 18:27 |
*** ayoung has joined #openstack-dev | 18:28 | |
*** dachary has quit IRC | 18:29 | |
*** littleidea has joined #openstack-dev | 18:31 | |
*** hub_cap has quit IRC | 18:34 | |
*** lloydde has quit IRC | 18:34 | |
*** comstud has joined #openstack-dev | 18:35 | |
*** misheska has joined #openstack-dev | 18:36 | |
*** misheska has joined #openstack-dev | 18:37 | |
clayg | acctually, when I add osapi_volume to my enabled endpoints - it doesn't seem to work: http://paste.openstack.org/show/12074/ | 18:41 |
*** armaan has left #openstack-dev | 18:42 | |
*** vizsla has joined #openstack-dev | 18:42 | |
*** dolphm_ has joined #openstack-dev | 18:43 | |
*** dtroyer_zzz is now known as dtroyer | 18:44 | |
*** dolphm has quit IRC | 18:45 | |
*** martine has quit IRC | 18:46 | |
*** markvoelker has joined #openstack-dev | 18:48 | |
*** dachary has joined #openstack-dev | 18:51 | |
mtaylor | bcwaldon: feel like helping me out? https://review.openstack.org/#change,5567 | 18:53 |
*** hub_cap has joined #openstack-dev | 18:59 | |
*** Susanne-Balle has quit IRC | 19:02 | |
*** eglynn__ has joined #openstack-dev | 19:05 | |
mtaylor | also: devstack fix for quantum: https://review.openstack.org/5746 for anyone who just wants to be nice | 19:09 |
fattarsi | jaypipes: let me know if this still conforms to the conf changes talked about earlier today https://review.openstack.org/#change,4944 | 19:09 |
dtroyer | mtaylor: +2 | 19:11 |
jaypipes | fattarsi: will do, thx Chris! | 19:11 |
*** joesavak has joined #openstack-dev | 19:13 | |
*** zns has joined #openstack-dev | 19:17 | |
*** eglynn__ has quit IRC | 19:18 | |
*** dolphm_ has quit IRC | 19:19 | |
*** johnpostlethwait has quit IRC | 19:19 | |
*** markvoelker has quit IRC | 19:20 | |
*** markvoelker has joined #openstack-dev | 19:21 | |
*** lloydde has joined #openstack-dev | 19:22 | |
*** jkoelker has quit IRC | 19:23 | |
*** jkoelker_ is now known as jkoelker | 19:23 | |
*** bepernoot has quit IRC | 19:27 | |
*** Mandell has quit IRC | 19:30 | |
*** johnpostlethwait has joined #openstack-dev | 19:31 | |
*** rods has quit IRC | 19:39 | |
*** mattray has quit IRC | 19:43 | |
*** mattray has joined #openstack-dev | 19:46 | |
vishy | clayg: nope | 19:49 |
*** andrewsmedina has quit IRC | 19:50 | |
*** deshantm_ has quit IRC | 19:51 | |
*** deshantm has quit IRC | 19:54 | |
creiht | vishy: did you see the bug I posted about the volume endpoint not working? | 19:57 |
vishy | creiht: nope | 19:57 |
*** mattray has quit IRC | 19:57 | |
creiht | vishy: also check your email ;) | 19:57 |
vishy | creiht: yeah down to 150 messages so i'm sure i will hit it soon | 19:58 |
creiht | vishy: https://bugs.launchpad.net/nova/+bug/963357 | 19:58 |
uvirtbot | Launchpad bug 963357 in nova "volume api endpoint fails" [Undecided,New] | 19:58 |
vishy | creiht: is it due to the changes theat we just made regarding underscores? | 19:58 |
* creiht has no idea | 19:58 | |
creiht | we were just trying to get the volume endpoint working today, and ran into that | 19:58 |
vishy | creiht: weird afaik it works in devstack | 19:59 |
creiht | hrm | 19:59 |
annegentle | hey, OpenStack is next up in #gsoc for feedback on our application and Ideas page if you'd like to join in | 19:59 |
*** jdg has quit IRC | 20:00 | |
creiht | vishy: also any idea if uuid's for volume ids is going to make it for e? | 20:00 |
vishy | creiht: nope | 20:01 |
creiht | well that is a bummer | 20:01 |
vishy | they are strings now though :_ | 20:01 |
vishy | :) | 20:01 |
*** mrmartin has joined #openstack-dev | 20:04 | |
*** mycloud has quit IRC | 20:05 | |
vishy | creiht: is it just versions that is broken? | 20:05 |
*** dprince has quit IRC | 20:05 | |
creiht | vishy: all calls get the same error | 20:05 |
creiht | I'm trying to figure out what would cause the req to be a function, and not a request object | 20:05 |
vishy | creiht: ok doing a quick test | 20:06 |
creiht | vishy: thx | 20:06 |
*** dtroyer is now known as dtroyer_zzz | 20:08 | |
*** dwalleck has joined #openstack-dev | 20:08 | |
vishy | creiht: ok, so it works fine for me | 20:12 |
creiht | hrm | 20:12 |
vishy | creiht: do you have the endpoint set up in keystone properly? | 20:12 |
*** sandywalsh has quit IRC | 20:12 | |
creiht | vishy: at the moment, I'm just trying to hit it directly | 20:13 |
vishy | i see | 20:13 |
creiht | and once I figured out if it was working, then I was going to get the endpoint added into our auth | 20:14 |
vishy | GET /v1/16a7d8625028435a843fb73bc04111d2/volumes/detail HTTP/1.1\r\nHost: 192.168.27.100:8776\r\nx-auth-project-id: demo\r\nx-auth-token: e87732cf7e364ffea55119bc8ddf198a\r\naccept-encoding: gzip, deflate\r\naccept: application/json\r\nuser-agent: python-novaclient\r\n\r\n | 20:14 |
vishy | the request should be something like that | 20:14 |
*** markvoelker has quit IRC | 20:14 | |
creiht | right | 20:14 |
creiht | but even a GET to / should work right? | 20:14 |
*** bepernoot has joined #openstack-dev | 20:15 | |
creiht | vishy: but I gotta run, I'll try to debug it more on Monday | 20:16 |
creiht | thanks for taking a look at it | 20:16 |
vishy | creiht: ok | 20:16 |
creiht | we must just have something misconfigured | 20:16 |
vishy | not sure if get to / will work | 20:16 |
vishy | will try | 20:16 |
creiht | that isn't a big deal, it was just an easy test | 20:16 |
vishy | nope it gets a fail | 20:16 |
creiht | the /volumes/detail calls were not working for us either | 20:16 |
creiht | vishy: what fail do you get there? | 20:17 |
vishy | the same error message! | 20:17 |
creiht | hah | 20:17 |
*** martine has joined #openstack-dev | 20:22 | |
*** sandywalsh has joined #openstack-dev | 20:25 | |
vishy | creiht: ok got a fix | 20:27 |
jerdfelt | vishy: so it's probably not a good idea to merge a change for a blueprint that hasn't been approved by anyone, right? | 20:27 |
vishy | creiht: https://review.openstack.org/5750 | 20:30 |
*** martine has quit IRC | 20:34 | |
*** bepernoot has joined #openstack-dev | 20:37 | |
*** tryggvil__ has quit IRC | 20:40 | |
heckj | Cutting Keystone RC1 w/ ttx!! | 20:46 |
*** mattstep has quit IRC | 20:46 | |
*** mattstep has joined #openstack-dev | 20:46 | |
joesavak | yay! | 20:46 |
*** bepernoot has quit IRC | 20:52 | |
ttx | some backlog in Jenkins, will take a bit | 20:54 |
*** Mandell has joined #openstack-dev | 20:57 | |
*** thingee has quit IRC | 20:58 | |
*** jdurgin has quit IRC | 20:58 | |
*** rods has joined #openstack-dev | 21:05 | |
*** alaski has quit IRC | 21:05 | |
*** mrmartin has left #openstack-dev | 21:09 | |
*** lts has quit IRC | 21:10 | |
*** joesavak has quit IRC | 21:15 | |
ttx | heckj: done! | 21:16 |
devcamcar | found a bug last night with non blocking libvirt patch in nova: https://bugs.launchpad.net/nova/+bug/962840 | 21:16 |
uvirtbot | Launchpad bug 962840 in nova "Setting non blocking libvirt flag causes __str__ error on virConnect" [Critical,New] | 21:16 |
ttx | hopefully I didn't fuck up at the end of this long week :) | 21:16 |
devcamcar | congrats on keystone rc1! | 21:17 |
andrewbogott | Can someone explain 'human alphabetical order' from the HACKING guideline? specifically, this bit: | 21:17 |
andrewbogott | from nova.auth import users | 21:17 |
andrewbogott | import nova.flags | 21:17 |
andrewbogott | from nova.endpoint import cloud | 21:17 |
heckj | yeah!!! | 21:17 |
devcamcar | andrewbogott: no, no i cannot. | 21:17 |
devcamcar | :) | 21:17 |
annegentle | whoohoo keystone | 21:18 |
*** hub_cap has quit IRC | 21:19 | |
andrewbogott | Vek! are you about? I need help with my alphabetizing it seems. | 21:20 |
*** thingee has joined #openstack-dev | 21:21 | |
*** zzed has quit IRC | 21:21 | |
*** jdurgin has joined #openstack-dev | 21:22 | |
*** sandywalsh has quit IRC | 21:22 | |
mtaylor | andrewbogott: you know - n.a < n.f < n.e ... human order! | 21:23 |
*** jdurgin has quit IRC | 21:24 | |
andrewbogott | Ok, so I'm concluding a) I should order according to the complete import path, regardless of how that path is divided by 'from'. | 21:25 |
andrewbogott | and b) That line in HACKING is just a typo. | 21:25 |
andrewbogott | yes? | 21:25 |
*** thingee has quit IRC | 21:27 | |
*** bepernoot has joined #openstack-dev | 21:28 | |
*** thingee has joined #openstack-dev | 21:29 | |
*** jdurgin has joined #openstack-dev | 21:30 | |
*** jdurgin has quit IRC | 21:32 | |
*** thingee has quit IRC | 21:32 | |
mtaylor | andrewbogott: I'mguessing. I was just being snarky :) | 21:33 |
*** dolphm has joined #openstack-dev | 21:33 | |
*** dolphm_ has joined #openstack-dev | 21:34 | |
*** thingee has joined #openstack-dev | 21:34 | |
andrewbogott | mtaylor: I know :) I'm pretty sure that f isn't before e, but I spent an inordinately long time trying to understand the subtle system at play there :( | 21:35 |
*** thingee has quit IRC | 21:35 | |
*** nati-ueno has quit IRC | 21:36 | |
*** Mandell has quit IRC | 21:37 | |
*** thingee has joined #openstack-dev | 21:37 | |
*** dolphm has quit IRC | 21:37 | |
*** thingee has quit IRC | 21:37 | |
*** jdurgin has joined #openstack-dev | 21:38 | |
*** jdurgin has quit IRC | 21:39 | |
*** sandywalsh has joined #openstack-dev | 21:39 | |
*** dolphm has joined #openstack-dev | 21:40 | |
*** thingee has joined #openstack-dev | 21:40 | |
*** thingee has quit IRC | 21:43 | |
*** dolphm_ has quit IRC | 21:43 | |
*** bepernoot has quit IRC | 21:44 | |
*** littleidea_ has joined #openstack-dev | 21:44 | |
*** jdurgin has joined #openstack-dev | 21:44 | |
*** thingee has joined #openstack-dev | 21:45 | |
*** jdurgin has quit IRC | 21:45 | |
*** dwalleck has quit IRC | 21:46 | |
*** thingee has quit IRC | 21:46 | |
*** jdg has joined #openstack-dev | 21:46 | |
*** dolphm has quit IRC | 21:47 | |
*** thingee has joined #openstack-dev | 21:48 | |
*** littleidea has quit IRC | 21:48 | |
*** littleidea_ is now known as littleidea | 21:48 | |
*** thingee1 has joined #openstack-dev | 21:50 | |
*** thingee has quit IRC | 21:50 | |
*** rnirmal has quit IRC | 21:51 | |
*** thingee1 has quit IRC | 21:51 | |
*** bepernoot has joined #openstack-dev | 21:51 | |
*** jdurgin has joined #openstack-dev | 21:52 | |
*** thingee has joined #openstack-dev | 21:52 | |
*** jdurgin has quit IRC | 21:53 | |
*** thingee has quit IRC | 21:53 | |
*** kindaopsdevy has quit IRC | 21:53 | |
*** thingee has joined #openstack-dev | 21:54 | |
*** bepernoot has quit IRC | 21:54 | |
*** thingee1 has joined #openstack-dev | 21:56 | |
*** thingee has quit IRC | 21:56 | |
*** dolphm has joined #openstack-dev | 21:56 | |
*** thingee has joined #openstack-dev | 21:56 | |
*** thingee1 has quit IRC | 21:57 | |
*** thingee1 has joined #openstack-dev | 21:57 | |
*** thingee has quit IRC | 21:57 | |
*** jdurgin has joined #openstack-dev | 21:58 | |
*** thingee1 has quit IRC | 21:58 | |
*** thingee has joined #openstack-dev | 21:58 | |
*** jdurgin has quit IRC | 21:58 | |
*** thingee1 has joined #openstack-dev | 21:59 | |
*** thingee has quit IRC | 21:59 | |
*** thingee1 has quit IRC | 22:00 | |
*** thingee has joined #openstack-dev | 22:00 | |
*** thingee1 has joined #openstack-dev | 22:01 | |
*** thingee has quit IRC | 22:01 | |
*** paulstallworth has quit IRC | 22:01 | |
*** thingee1 has quit IRC | 22:01 | |
*** dolphm has quit IRC | 22:02 | |
*** thingee has joined #openstack-dev | 22:02 | |
*** thingee has quit IRC | 22:03 | |
*** thingee1 has joined #openstack-dev | 22:03 | |
*** thingee1 has left #openstack-dev | 22:03 | |
*** rohit404 has quit IRC | 22:03 | |
*** mdomsch has quit IRC | 22:05 | |
*** jdurgin has joined #openstack-dev | 22:05 | |
*** jdurgin has quit IRC | 22:07 | |
*** jdurgin has joined #openstack-dev | 22:07 | |
*** GheRivero_ has quit IRC | 22:07 | |
*** jdurgin has quit IRC | 22:07 | |
*** PotHix has quit IRC | 22:08 | |
*** dolphm has joined #openstack-dev | 22:10 | |
*** jdurgin has joined #openstack-dev | 22:11 | |
*** jdurgin has quit IRC | 22:11 | |
*** bepernoot has joined #openstack-dev | 22:12 | |
*** jdurgin has joined #openstack-dev | 22:14 | |
*** rohit404 has joined #openstack-dev | 22:14 | |
*** jdurgin has quit IRC | 22:14 | |
*** dolphm_ has joined #openstack-dev | 22:15 | |
adam_g | anyone around familiar with the MySQLPingListener introduced across projects to fix https://bugs.launchpad.net/keystone/+bug/943031 ? | 22:16 |
uvirtbot | Launchpad bug 943031 in quantum "After MySQL connection failure (or timeout), first request reports MySQL Server has gone away, following requests work" [High,Fix released] | 22:16 |
*** kbringard has quit IRC | 22:17 | |
*** dolphm has quit IRC | 22:18 | |
*** jdurgin has joined #openstack-dev | 22:19 | |
heckj | adam_g - read the code and approved it into Keystone. What's the Q? | 22:21 |
*** zns has quit IRC | 22:22 | |
adam_g | heckj: im looking for a fix for another bug https://bugs.launchpad.net/bugs/959426. ive got a patch that resolves it, but makes no use of that PingListener stuff, though it seems like it should. as someone who is not so fluent in SQLA's internals, i'm having trouble figuring out exactly when that class is supposed to be kicked | 22:31 |
uvirtbot | Launchpad bug 959426 in nova "nova services start before mysql on boot" [Undecided,Confirmed] | 22:31 |
heckj | adam_g - I don't grok SQLA entirely, but the gist that I caught from the code is that you can have classes that implement a method called "checkout" and register them as listeners to the SQLAlchemy engine. I assume there's other listener methods you could implement (and listen for as well). | 22:34 |
heckj | adam_g: then you hand an instance of that class into SQLA's create_engine as engine_args (kwargs) | 22:34 |
heckj | adam_g: I think you'll need a deeper understanding of SQLA than I have to use a listener mechanism to do the retry logic to keep trying until it gets a connect... | 22:37 |
heckj | (just read https://bugs.launchpad.net/ubuntu/+source/nova/+bug/959426) | 22:38 |
uvirtbot | Launchpad bug 959426 in nova "nova services start before mysql on boot" [Undecided,Confirmed] | 22:38 |
adam_g | heckj: i read the class the same as you. for sessions on that engine, i had assumed that the listener would be catching the execptions and raising accordingly based on the outlined RCs in checkout(), but i haven't been able to trigg[Der it there at all | 22:39 |
mtaylor | heckj, adam_g: I've been wanting to get sqlalchemy to understand mysql connections for the longest time | 22:40 |
mtaylor | heckj: you know what isn't a good idea? connection pools. you know what is? re-trying a query if it failed due to server went away. | 22:41 |
heckj | spotted this, which is a fairly nice description of the "how to" with a listener: http://stackoverflow.com/questions/3033234/handle-mysql-restart-in-sqlalchemy | 22:41 |
*** novas0x2a|laptop has quit IRC | 22:41 | |
heckj | adam_g: The code sample in ^^ tries once and fails - you'd need to tweak it into some backoff state, but I don't grok what triggers it | 22:42 |
adam_g | mtaylor: thats essentially what i've come up with for getting nova services to wait a bit before dying, similar to rabbit: http://paste.ubuntu.com/897090/ | 22:42 |
mnewby | heckj: Is it possible for the swift_auth changes I've submitted to be included in essex? At least the first 2 are pretty important for anybody trying to integrate swift and keystone. | 22:50 |
mnewby | https://review.openstack.org/#change,5595 fixes an acl authorization bug (swift_auth:195 previously checked for tenant_id:user instead of tenant_name:user) | 22:50 |
mnewby | https://review.openstack.org/#change,5603 adds support for anonymous access, which is a key feature supported by every other swift auth mechanism. | 22:50 |
mnewby | heckj: Admittedly neither is critical to keystone itself, but that also means that their inclusion shouldn't present any risk. | 22:51 |
heckj | mnewby: yeah - can we make a bug that describes what this is doing, and tag it with essex-rc-potential - then we can finish that up and backport it into the release branch | 22:52 |
*** lloydde has quit IRC | 22:53 | |
mnewby | heckj: There is already a bug report for the second one, I'll tag it essex-rc-potential. And I'll create a bug report for the acl issue. | 22:53 |
heckj | mnewby: perfect. We'll see what bugs show up in the next week or so - other groups are having an RC2, we might as well - playing it by ear to see what comes up | 22:54 |
mnewby | heckj: great! | 22:54 |
*** bepernoot has quit IRC | 22:55 | |
*** milner has quit IRC | 22:57 | |
mnewby | heckj: While I have your attention, did you see my question as to whether to use checkout_vendor or test-requires to include swift, given that the swift features under test are more-or-less stable? | 22:58 |
*** bsza has quit IRC | 22:59 | |
heckj | sorry - didn't. I'd lean to test-requires if you can get away with it (i.e. not needing to test against multiple branches) - easier on the whole kit for many. | 23:00 |
heckj | mnewby: ^^ | 23:00 |
*** dolphm_ has quit IRC | 23:01 | |
mnewby | heckj: Ok. I've already submitted a new patch that uses checkout_vendor, since that was what you had originally suggested, but I'll back it out and use test-requires. Would you prefer that I source swift from git or pull it from pypi (with or without a specific version)? | 23:02 |
heckj | mnewby: git - it keeps the number of factors to rely on smaller. And I've had PyPi fail in some really annoying ways at the worst possible times | 23:03 |
heckj | (github too for that matter, but more rarely) | 23:03 |
mnewby | heckj: Ok, will do. danke! | 23:03 |
heckj | bitte | 23:03 |
*** dolphm has joined #openstack-dev | 23:07 | |
*** gyee has quit IRC | 23:17 | |
*** sandywalsh has quit IRC | 23:18 | |
*** dolphm has quit IRC | 23:19 | |
*** vizsla has quit IRC | 23:20 | |
rohit404 | danwent: ping | 23:20 |
*** paulstallworth has joined #openstack-dev | 23:25 | |
*** kindaopsdevy has joined #openstack-dev | 23:28 | |
*** sandywalsh has joined #openstack-dev | 23:31 | |
*** dachary has quit IRC | 23:55 | |
*** roge has quit IRC | 23:55 | |
*** glenc has quit IRC | 23:55 | |
*** mtaylor has quit IRC | 23:55 | |
*** clayg has quit IRC | 23:55 | |
*** vishy has quit IRC | 23:55 | |
*** troytoman-away has quit IRC | 23:55 | |
*** clayg_ is now known as clayg | 23:55 | |
*** sleepsonzzz is now known as sleepsonthefloor | 23:55 | |
*** rbasak has quit IRC | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!