jamielennox | there is at least one tempest bug to fix - but wouldn't that indicate a behaviour we should be really careful about changing? | 00:00 |
---|---|---|
*** jimfehlig has joined #openstack-dev | 00:00 | |
bknudson | yes, we need to be very careful | 00:01 |
jamielennox | i'll file it as a bug for now that auth_uri is not used in the way it should, fix tempest, then put a warning in auth_token that auth_host etc are deprecated in favour of auth_uri | 00:02 |
jamielennox | we'll need to keep the current auth_host takes priority over auth_uri for at least the next cycles | 00:02 |
*** hemna is now known as hemnafk | 00:02 | |
*** Chaser has quit IRC | 00:02 | |
bknudson | jamielennox: would you rather have a new option for the request_uri ? | 00:03 |
bknudson | rather than the separate options | 00:03 |
jamielennox | is there any need for auth_uri to be different to request_uri? | 00:03 |
bknudson | we return auth_uri in the authenticate header, so should be public. | 00:04 |
jamielennox | is there a load balancing or some such reason you might want those to differ? | 00:04 |
*** colinmcnamara has joined #openstack-dev | 00:04 | |
bknudson | but I think we want auth_token to be able to talk to a private address (for revocation list) | 00:04 |
*** Ryan_Lane has quit IRC | 00:04 | |
*** HenryG_ has joined #openstack-dev | 00:04 | |
jamielennox | yea, so auth_host might reflect an internal host, where auth_url might need to be publically accessible | 00:05 |
ayoung | jamielennox, I want to approve the HTTP PRetty patch just due to the amopunt of duplicated code you removed | 00:05 |
jamielennox | ayoung: i'm on board, you might cop some flak from the others though | 00:05 |
*** noslzzp has joined #openstack-dev | 00:05 | |
jamielennox | at least till they've reviewed | 00:06 |
ayoung | jamielennox, nah...its good stuff | 00:06 |
*** Max__ has joined #openstack-dev | 00:06 | |
ayoung | I'ma +2 it | 00:06 |
*** matiu has quit IRC | 00:06 | |
bknudson | I would prefer a single option so we don't have to mess with URL building ourselves. | 00:06 |
jamielennox | bknudson: so given that - request_uri is a pretty poor config name | 00:06 |
jamielennox | bknudson: right - and it would remove the need for the ipv6 stuff because you would specify a full url | 00:07 |
jamielennox | given that we use auth_uri for the public facing url what should we use for private url? | 00:07 |
jamielennox | (which if not provided can default to auth_host etc, then to auth_uri) | 00:08 |
*** HenryG__ has joined #openstack-dev | 00:08 | |
*** dkehn has quit IRC | 00:08 | |
*** HenryG__ has quit IRC | 00:08 | |
*** avishayb has quit IRC | 00:08 | |
*** HenryG has quit IRC | 00:08 | |
*** dkehn has joined #openstack-dev | 00:08 | |
*** avishayb has joined #openstack-dev | 00:09 | |
bknudson | jamielennox: internal_auth_uri ? | 00:09 |
bknudson | private_auth_uri | 00:09 |
gyee | bknudson, not sure if I understand the use case | 00:10 |
jamielennox | bknudson: yea, i guess it isn't that important - i was thinking it would become the main auth config point, but it won't you can still specify auth_uri and have the internal one be an override | 00:10 |
bknudson | in v2 we have public and admin endpoints | 00:10 |
gyee | you need an internal uri to download token revocation list? | 00:11 |
*** Max__ has quit IRC | 00:11 | |
gyee | in v3, there's no public and admin distinction | 00:11 |
jamielennox | bknudson: public/admin is not the issue - all validation and revocation stuff is done on the public api | 00:11 |
bknudson | gyee: I hope so... the public one is pretty limited | 00:11 |
*** faramir has joined #openstack-dev | 00:11 | |
bknudson | ok, maybe it doesn't make a difference then. I was hoping that you couldn't do that stuff through the public api | 00:11 |
*** HenryG_ has quit IRC | 00:12 | |
gyee | I would think the you want to expose both token validation and TRL download APIs | 00:12 |
bknudson | why would an end user need to get the token revocation list? don't you need admin token? | 00:12 |
jamielennox | public/admin is a bad naming scheme - the way i've come to think of it is the scoped and the unscoped api | 00:12 |
jamielennox | you need to do validation stuff on the unscoped api | 00:12 |
*** jasondotstar has joined #openstack-dev | 00:12 | |
gyee | bknudson, to end users, they only care about the service URI as middleware is deployed by the services | 00:13 |
bknudson | I guess if we say that users can validate their own tokens then the revocation list and cert needs to be available to them | 00:14 |
*** gyee has quit IRC | 00:14 | |
*** gyee has joined #openstack-dev | 00:15 | |
jamielennox | bknudson: it's more an implementation detail, middleware requests an unscoped token to do authentication so it doesn't get a service catalog and doesn't know the location of the admin api | 00:15 |
bknudson | right, the service URI is returned in WWW-Authenticate header and middleware uses its own URI | 00:15 |
jamielennox | i assume it would work fine if you pointed it at the admin api, but it's not how we say to do it | 00:15 |
*** prad has joined #openstack-dev | 00:15 | |
gyee | jamielennox, in v3, there's only one uri | 00:16 |
bknudson | so why do we have auth_uri in addition to auth_protocol + auth_host + auth_port, and what tests does tempest have? | 00:16 |
bknudson | if they have to be the same thing | 00:16 |
jamielennox | gyee: but middleware only supports v2, and porting it is non-trivial | 00:16 |
jamielennox | that was part of the reason for all those discovery patches | 00:17 |
jamielennox | so we could do auth_token with v3 properly | 00:17 |
gyee | jamielennox, middleware support v3 token validation | 00:17 |
*** zul has quit IRC | 00:17 | |
*** pmathews has quit IRC | 00:17 | |
bknudson | it does v3 token validation using v2 api | 00:17 |
gyee | no | 00:17 |
jamielennox | it is also how we realized that the v3 api doesn't support fetching the PKI certificates | 00:17 |
jamielennox | no, it will use the v3 api - but the token and the communication that the client gets is all v2 | 00:18 |
gyee | no shit! really? | 00:18 |
jamielennox | ahh, by client here i mean the admin token that auth_token gets | 00:18 |
gyee | yes, the admin token is still going through v2 | 00:19 |
*** atiwari has quit IRC | 00:19 | |
gyee | moreover, the admin token request part should be optional | 00:19 |
jamielennox | so we need to wait till at least the v3.2 identity-api for fetching PKI certs and the revocation list via the v3 api before we can properly move the auth_token middleware over | 00:19 |
bknudson | that didn't make havana? seems like an oversight | 00:20 |
gyee | bknudson, unfortunately no | 00:20 |
jamielennox | the 3.1 freeze was h2 | 00:20 |
gyee | jamielennox, lets do this properly in IceHouse | 00:21 |
jamielennox | the PKI api extensions are currently in ayoung's abandonded list i think | 00:21 |
jamielennox | gyee: right - i got to the point where it was simpler to rewrite auth_token than patch it | 00:21 |
gyee | I was toying with PKI token compression locally too | 00:21 |
gyee | see if we reduce the token size | 00:21 |
bknudson | you can compress something that's encrypted? | 00:22 |
gyee | yes | 00:22 |
bknudson | or compress before encrypting? | 00:22 |
jamielennox | compress before encrypting | 00:22 |
gyee | either way, as long as the order is correct | 00:22 |
jamielennox | aka that new SSL attack | 00:22 |
bknudson | you will gain a lot more compressing first | 00:22 |
gyee | right | 00:23 |
bknudson | there's plenty of duplication in JSON | 00:23 |
gyee | and delta revocation list | 00:23 |
jamielennox | hmm no delta revocations - revocation notifications | 00:23 |
jamielennox | i'm not sure how that will work in middleware though | 00:23 |
*** prad has quit IRC | 00:24 | |
jamielennox | so maybe delta revocations :) | 00:24 |
gyee | delta revocations yes | 00:24 |
gyee | middleware will just store it locally | 00:24 |
bknudson | we'll need comet | 00:24 |
jamielennox | comet? | 00:24 |
gyee | like what its doing no | 00:24 |
gyee | now | 00:24 |
*** sthaha has joined #openstack-dev | 00:24 | |
bknudson | long-polling http connections | 00:25 |
bknudson | http://en.wikipedia.org/wiki/Comet_%28programming%29 | 00:25 |
morganfainberg | bknudson, you could have also meant http://cometcleanser.com/ in that we need to really scrub and clean it :P | 00:25 |
morganfainberg | >.> | 00:25 |
morganfainberg | sorry … i'll see myself out | 00:26 |
jamielennox | one of the advantages of going with sessions for this new client work is i want to put HTTP sessions on them, so not long polling but at least not renegotiating ssl | 00:26 |
*** zul has joined #openstack-dev | 00:26 | |
bknudson | then you've also got websockets. | 00:26 |
*** Chaser has joined #openstack-dev | 00:26 | |
jamielennox | then raw sockets | 00:26 |
*** noslzzp has quit IRC | 00:27 | |
jamielennox | can you be restful with websockets? | 00:27 |
bknudson | I'm not sure that REST covers notifications / push. | 00:28 |
gyee | gotta run, otherwise, I'll have some sore eye sockets :) | 00:28 |
*** colinmcnamara has quit IRC | 00:28 | |
*** gyee has quit IRC | 00:28 | |
jamielennox | i don't think it does, i haven't done anything with websockets though | 00:29 |
ayoung | bknudson, revocation lists can't be made public. We would be publishing a list of token ids that are valid...as the services might not have fetched the revocation list yet | 00:29 |
bknudson | jamielennox: I looked at it once but apache forwarding didn't handle it well. | 00:29 |
jamielennox | bknudson: anyway, i assume it's still worth rebasing auth_token on top of the ipv6 patch? | 00:30 |
bknudson | jamielennox: yes, that would prevent breaking ipv6 | 00:30 |
*** boden has joined #openstack-dev | 00:30 | |
bknudson | jamielennox: setting auth_host to IPv6 address like ::1 works today. | 00:30 |
jamielennox | bknudson: so what is the point of the patch? | 00:31 |
bknudson | ayoung: that makes sense... so auth_token would need to get a private uri? | 00:31 |
jamielennox | oh | 00:31 |
jamielennox | sorry, it's setting auth_uri | 00:31 |
ayoung | bknudson, nah, it is protected via the token permissions | 00:31 |
ayoung | need to hae a service role or admin role to get the list | 00:31 |
jamielennox | does setting auth_host to [::1] work today? (guessing not) | 00:32 |
bknudson | jamielennox: it doesn't work today because of the httpclient(self.auth_host, self.auth_port) | 00:32 |
ayoung | notifiations will be done using AMQP/0MQ, not websockets | 00:32 |
bknudson | jamielennox: doesn't build a url | 00:32 |
jamielennox | yep, that's what i thought | 00:32 |
bknudson | jamielennox: which your patch is getting rid of. | 00:33 |
*** colinmcnamara has joined #openstack-dev | 00:33 | |
bknudson | ayoung: so you can get the TRL through the public_port (5000), but it still requires admin (like admin_port stuff) | 00:35 |
ayoung | bknudson, that is correct | 00:35 |
bknudson | ayoung: so why does auth_token have both auth_uri and auth_host, etc, if it doesn't need 2 urls? | 00:36 |
*** noslzzp has joined #openstack-dev | 00:37 | |
ayoung | jamielennox, are the errors on https://review.openstack.org/#/c/43829/ legit? | 00:37 |
bknudson | default auth_port is the admin port (35357) https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L205 | 00:37 |
ayoung | bknudson, legacy. Probably should be only one. | 00:37 |
jamielennox | ayoung: i can't tell yet | 00:38 |
bknudson | doc says to set auth_uri to public (5000) | 00:38 |
*** boden has quit IRC | 00:38 | |
ayoung | bknudson, I'm not certain why we even have multiple ports...it is no security, and it is the wrong way to split things up. If you want internal/external, they should be listening on different interfaces. | 00:38 |
jamielennox | bknudson: ooo, i'm pretty sure that default is wrong | 00:38 |
bknudson | ayoung: we don't support different interfaces (except through httpd) | 00:39 |
ayoung | bknudson, I know...believe you me I know. | 00:39 |
jamielennox | ayoung: i think the intention was to support different keystones for different projects etc | 00:39 |
jamielennox | so you call in and say i need a token for this project and it says so you need this keystone service | 00:40 |
*** freedomhui has joined #openstack-dev | 00:40 | |
jamielennox | it's just never actually happened | 00:40 |
ayoung | jamielennox, road to hell and all that....the fact of the matter is that Keystone is an HTTP app and should be listening on port 443. The rest is a deviation made by people that should have known better | 00:40 |
*** SumitNaiksatam has joined #openstack-dev | 00:40 | |
ayoung | jamielennox, bknudson I want this https://wiki.openstack.org/wiki/URLs | 00:41 |
bknudson | jamielennox: from the help text, seems to indicate we could have a admin_uri to cover auth_host auth_port auth_protocol auth_admin_prefix | 00:41 |
*** noslzzp has quit IRC | 00:41 | |
bknudson | ayoung: I think we can do that today. | 00:41 |
ayoung | bknudson, yep | 00:42 |
bknudson | just need a chef script to make it easy | 00:42 |
ayoung | bknudson, did you see the Puppet review for setting it up? | 00:42 |
*** jruzicka has quit IRC | 00:42 | |
ayoung | https://review.openstack.org/#/c/29059/ bknudson | 00:42 |
*** noslzzp has joined #openstack-dev | 00:43 | |
ayoung | I would like that to have the option to run without using separate ports for Keystone internal and external | 00:43 |
bknudson | ayoung: I reviewed that, it's just keystone though. | 00:43 |
ayoung | bknudson, lead by example...other people on other projects are working on it, too | 00:43 |
ayoung | swift is ahead of us, I think | 00:43 |
bknudson | ayoung: does it put keystone under a identity path or something? | 00:43 |
*** egallen has quit IRC | 00:43 | |
ayoung | bknudson, it has the ability to do it, yes... | 00:44 |
*** prad has joined #openstack-dev | 00:44 | |
ayoung | bknudson, I'll find it in the review...1 sec | 00:44 |
jamielennox | bknudson: regardless of help text, if you don't set auth_host etc today then it won't work - it doesn't deconstruct auth_uri to fill those variables if not present | 00:44 |
ayoung | https://review.openstack.org/#/c/29059/15/spec/classes/keystone_endpoint_spec.rb | 00:44 |
bknudson | ayoung: I'm not the greatest reviewer for that patch since I really don't know puppet. I just asked for the keystone.py update and ssl support | 00:45 |
bknudson | so they're calling it keystone. | 00:45 |
ayoung | bknudson, I gave it a solid scrubbing today. I can't even really test it. | 00:45 |
bknudson | ayoung: seemed like every time we commented on this stuff he would say it was only for test | 00:45 |
bknudson | or maybe this was added later. | 00:45 |
ayoung | 'salright...we'll get there. | 00:46 |
*** bdpayne has quit IRC | 00:46 | |
ayoung | jamielennox, I think I've reviewed all of your patches that are not -1ed by jenkis or WIP...did I miss anything? | 00:46 |
jamielennox | ayoung: have a look through the session one and such if you can - i don't know why they are failing jenkins yet | 00:47 |
*** herndon has joined #openstack-dev | 00:47 | |
bknudson | ayoung: I don't see why we need the ports if we've got keystone under its own path. also, should be identity/ and not keystone/ | 00:47 |
jamielennox | although can i run some reasoning passed you (both) while we're here? i've been looking at this stuff for so long i don't know if i trust my judgement | 00:47 |
*** noslzzp has quit IRC | 00:48 | |
jamielennox | this stuff creates 3 sections out of what we have today. The session handles communication, the auth_plugin deals with getting tokens etc, the client does the regular client stuff (list-users etc) | 00:49 |
*** boden has joined #openstack-dev | 00:49 | |
bknudson | jamielennox: what stuff? | 00:49 |
ayoung | bknudson, yeah, should be identity..care to add that to the review? | 00:49 |
*** noslzzp has joined #openstack-dev | 00:49 | |
bknudson | ayoung: will do. | 00:49 |
jamielennox | session and auth_plugin i want to make use of globally in openstack - session so that we can control kerberos and x509 | 00:49 |
jamielennox | and auth_plugin because it is already somewhat supported by nova and is a good scheme | 00:50 |
ayoung | jamielennox, link? | 00:50 |
jamielennox | and so that session and auth_plugin are reusable | 00:50 |
jamielennox | https://review.openstack.org/#/c/43829/ - the base session - doesn't have anything about kerb yet | 00:50 |
jamielennox | https://review.openstack.org/#/c/45997/ - basic auth plugins being used | 00:51 |
ayoung | jamielennox, so "session" means what here? bascially a token? | 00:51 |
jamielennox | session is a bunch of headers, x509 client certs that you always use | 00:52 |
jamielennox | it would be were kerberos negotiation lived if configured | 00:52 |
jamielennox | there is no real brains behind it | 00:52 |
ayoung | hm.... | 00:52 |
*** prad has quit IRC | 00:52 | |
jamielennox | in a later review i have auth_token live on session | 00:52 |
*** cdub has joined #openstack-dev | 00:52 | |
jamielennox | bah, auth_plugin live on session | 00:52 |
jamielennox | so that you can say send this request and authenticate it from the auth_plugin | 00:53 |
*** martine has joined #openstack-dev | 00:53 | |
*** martine is now known as Guest18996 | 00:53 | |
*** noslzzp has quit IRC | 00:53 | |
ayoung | jamielennox, so...if I fire up the client, I get one session object per server that I talk to, right? Say we were to embed this in Nova client, I would get one session for Keystone to get tokens, and one session for nova? | 00:55 |
jamielennox | no | 00:55 |
jamielennox | sessions are shared | 00:55 |
ayoung | jamielennox, doesn't that imply that I am doing identical things against all servers? | 00:55 |
jamielennox | you create an auth_plugin for keystone v3 | 00:55 |
*** noslzzp has joined #openstack-dev | 00:55 | |
ayoung | what if heat were to pull in this code, and then keystone and swift were using Kerberos, but none of the other services had converted over to it? | 00:56 |
jamielennox | you create a session object with the auth_plugin - the session object can consume the service catalog from auth plugin | 00:56 |
jamielennox | you create a number of clients that all use the session and thus use the same token | 00:56 |
ayoung | so headers are specific to the client, not the session | 00:56 |
ayoung | they get common headers like thetoken from the session, but then do their own things, too | 00:57 |
jamielennox | client can specify headers additionally, anything on the session is transmitted every time | 00:57 |
ayoung | hmmm....is session the right name then....well, lets assume for now that it is... | 00:57 |
bknudson | btw - is the client under the same feature freeze as keystone? and does it get released with havana? | 00:58 |
ayoung | gah killed firefox! | 00:58 |
jamielennox | i was working on the similarity to a http session - i'm not sure what else | 00:58 |
jamielennox | client works on it's own schedule | 00:58 |
jamielennox | afaik there is no release intended specifically for havana | 00:58 |
*** eharney has quit IRC | 00:58 | |
*** colinmcnamara has quit IRC | 01:01 | |
*** colinmcnamara has joined #openstack-dev | 01:01 | |
ayoung | bknudson, we need to maintain backwards compat in the client...that is the rule driving development | 01:02 |
ayoung | lots of things depend on the client, so we can't afford to be too cavalier, but, the client needs some serious work. | 01:02 |
*** safchain has quit IRC | 01:03 | |
bknudson | ayoung: what if we start a new version? | 01:03 |
*** marun has quit IRC | 01:03 | |
ayoung | jamielennox, ugh, still that massive parameter list? | 01:03 |
ayoung | bknudson, we'll do that when our back is against the wall | 01:03 |
bknudson | If it's that bad. | 01:03 |
*** colinmcnamara has quit IRC | 01:04 | |
ayoung | building a new client is tricky, in that nothing will use the new version at first, so it does not buy us much | 01:04 |
bknudson | I haven't seen a good document that says what is the keystoneclient api. | 01:04 |
jamielennox | ayoung: there is a review that kills the param list | 01:04 |
*** llu has quit IRC | 01:04 | |
*** boden has quit IRC | 01:04 | |
*** cdub has quit IRC | 01:04 | |
jamielennox | bknudson: unfortunately that is more the problem than a help, it means that most people using it just cracked open the code and might be using anything | 01:04 |
ayoung | jamielennox, doing a recheck on that one | 01:04 |
jamielennox | ayoung: https://review.openstack.org/#/c/45996 | 01:05 |
*** Mandell has quit IRC | 01:05 | |
bknudson | I'll have to write mess around with the client myself and figure out what an app needs to do. | 01:05 |
ayoung | bknudson, +2 | 01:05 |
ayoung | we need that | 01:05 |
jamielennox | bknudson: in reality i think most everything on the HTTPClient is safe to change, most apps will just provide a big long parameter list and then start using client.users.list etc | 01:07 |
bknudson | jamielennox: it really doesn't seem that complicated | 01:07 |
ayoung | jamielennox, 45996 still has the parameter list. It just cleans up the member variables...which doesn't make sense to me | 01:07 |
jamielennox | i don't see anyone messing with connection variables or username/password after instantiating the client | 01:07 |
bknudson | but then we've got the v2/v3 oddity | 01:07 |
jamielennox | bknudson: vote 1 keystoneclient summit design session | 01:07 |
jamielennox | though i'm not sure 1 will cut it | 01:08 |
jamielennox | ayoung: so what param list are you trying to cut? | 01:08 |
ayoung | the one in __init__ for example | 01:08 |
ayoung | convert the whole thing to kwargs | 01:09 |
*** cdub has joined #openstack-dev | 01:09 | |
*** noslzzp has quit IRC | 01:09 | |
jamielennox | i had one a while ago that took the session parameters out as well, i didn't think it was that important | 01:09 |
jamielennox | my problem with that param list is not that it exists, it is that we reuse it | 01:10 |
jamielennox | so i left the session args in __init__ because that is the only place they are used | 01:10 |
*** shinylasers has quit IRC | 01:10 | |
ayoung | jamielennox, you turned local variables into a dict...that is the exact opposite of what I would have done. I would have left all of the self. properties, but done the init as kwargs | 01:10 |
ayoung | jamielennox, I showed you what I thought should happen in that review... | 01:11 |
ayoung | https://review.openstack.org/#/c/43979/ | 01:11 |
*** pixelb has quit IRC | 01:11 | |
jamielennox | right, because i don't think people every actually access those variables on keystoneclient | 01:11 |
jamielennox | there is no need to once it has been instantiated | 01:12 |
jamielennox | the authenticate function then had to take all those local variables, convert them into a dictionary and start passing them around | 01:12 |
ayoung | jamielennox, so use them and throw them away, but that same param list was duplicated several times... | 01:12 |
jamielennox | i just moved the dict step up a level | 01:12 |
ayoung | but then you change a public method signature | 01:13 |
ayoung | no? | 01:13 |
jamielennox | no i don't | 01:13 |
jamielennox | the signatures are all the same with the list _identity_variables turned into kwargs | 01:15 |
*** gimps_ has joined #openstack-dev | 01:15 | |
*** xarses has quit IRC | 01:15 | |
*** ljjjustin has joined #openstack-dev | 01:20 | |
*** shinylasers has joined #openstack-dev | 01:22 | |
*** noslzzp has joined #openstack-dev | 01:22 | |
*** lbragstad has joined #openstack-dev | 01:22 | |
*** nosnos has joined #openstack-dev | 01:22 | |
*** freedomhui has quit IRC | 01:23 | |
*** chenxu has joined #openstack-dev | 01:26 | |
*** gimps_ has quit IRC | 01:26 | |
*** shinylasers has quit IRC | 01:27 | |
*** Guest18996 has quit IRC | 01:27 | |
*** networkstatic has quit IRC | 01:28 | |
*** spzala has joined #openstack-dev | 01:28 | |
ayoung | jamielennox, so the __init__ list is in a different order? | 01:29 |
*** chenxu has quit IRC | 01:30 | |
jamielennox | ah, it's possible - i don't think we are enforcing order on a list like that | 01:30 |
*** reed has quit IRC | 01:31 | |
*** comay has quit IRC | 01:31 | |
ayoung | jamielennox, yeah, that was why I did *args | 01:32 |
*** noslzzp has quit IRC | 01:32 | |
ayoung | jamielennox, you can't reorder them | 01:32 |
*** cdub has quit IRC | 01:33 | |
ayoung | jamielennox, that is the whole problem...we don't know what people have done with it....but since they are explicit parameters, someone might have called by order. I'd count on it. | 01:34 |
jamielennox | well that shoots the whole thing then because i'm pretty sure __init__ and authenticate are not ordered the same way | 01:35 |
ayoung | lovely | 01:36 |
*** dprince has joined #openstack-dev | 01:36 | |
jamielennox | it would be nice to see python have some distinction between an optional positional argument and a keyword argument | 01:37 |
ayoung | jamielennox, I think that large portions of them are | 01:37 |
jamielennox | large portions? there's still no point you loose all readability | 01:37 |
ayoung | so we can get some commonality of lists...compose it from sublists, and make a documentation comment that says: only append new variables here... | 01:37 |
jamielennox | and unless the portions are at the end of each list (they're not) we still break the ordering of something | 01:38 |
*** fifieldt has joined #openstack-dev | 01:38 | |
ayoung | jamielennox, part of the goal is to consolidate this...we can chose one as the "right" ordering for the next version if we decide to, but the first thing should be to stop proliferating this pattern | 01:38 |
ayoung | lets see... | 01:38 |
*** xarses has joined #openstack-dev | 01:38 | |
*** danwent has quit IRC | 01:39 | |
*** freedomhui has joined #openstack-dev | 01:39 | |
jamielennox | this new client stuff deprecates the list on both | 01:39 |
jamielennox | you don't pass arguments to authenticate and you don't init with them | 01:40 |
jamielennox | if it's going to be this much of a pain i'd be inclined to just leave it until we can clear out the whole thing | 01:40 |
*** vkmc has quit IRC | 01:41 | |
*** noslzzp has joined #openstack-dev | 01:41 | |
*** mars has quit IRC | 01:43 | |
ayoung | hold on...just took an interrupt | 01:44 |
ayoung | ok, authenticate manages to switch the ordering of tenant_id and tenant_name...that is a mistake... | 01:45 |
ayoung | init doesn't take password... | 01:45 |
ayoung | oh, no, it does...just in a different location... | 01:46 |
ayoung | jamielennox, ugh, what a mess... | 01:47 |
*** feleouet has quit IRC | 01:47 | |
jamielennox | :) | 01:47 |
ayoung | its like someone went out of their way to be difficult | 01:48 |
*** melwitt has quit IRC | 01:51 | |
*** erkules_ has joined #openstack-dev | 01:51 | |
*** alexxu has joined #openstack-dev | 01:51 | |
*** fandikurnia01 has joined #openstack-dev | 01:52 | |
*** yaguang has joined #openstack-dev | 01:52 | |
*** erkules has quit IRC | 01:53 | |
*** schwicht has quit IRC | 01:55 | |
*** insanida1e has joined #openstack-dev | 01:55 | |
*** HenryG has joined #openstack-dev | 01:56 | |
jamielennox | ayoung: should i add an insecure option to this requests patch as well? otherwise i can say if cafile = 0 or something | 01:58 |
*** insanidade has quit IRC | 01:58 | |
jamielennox | hmm, it's another option but insecure = True is more explicity | 01:58 |
ayoung | jamielennox, I'm not there just yet...hold on, trying to get my head around the arg lists | 01:58 |
*** d34dh0r53 has joined #openstack-dev | 01:59 | |
jamielennox | completely unrelated - back to the auth_token middleware with requests from earlier | 01:59 |
ayoung | jamespage, ok, here are the two parameter lists in sorted order http://paste.fedoraproject.org/38906/13789511 | 01:59 |
ayoung | first is from __init__ the second is from authenticate | 01:59 |
*** mattmalesky has quit IRC | 02:00 | |
ayoung | so, first question...why do we have both of these lists? | 02:01 |
*** d34dh0r53 has quit IRC | 02:01 | |
*** herndon has quit IRC | 02:01 | |
*** herndon has joined #openstack-dev | 02:02 | |
*** stevemar has joined #openstack-dev | 02:02 | |
*** edmund has joined #openstack-dev | 02:04 | |
*** angdraug has quit IRC | 02:04 | |
*** radez is now known as radez_g0n3 | 02:05 | |
*** edmund1 has joined #openstack-dev | 02:06 | |
jamielennox | jamespag must get sick of this :) | 02:08 |
jamielennox | so i'm pretty sure that what i take as _identity_variables is fairly authoritive | 02:08 |
*** edmund has quit IRC | 02:09 | |
*** xchu has joined #openstack-dev | 02:09 | |
jamielennox | the only thing is tenant_id and tenant_name which are deprecated and so are listed both times explicity as it needs to override kwargs | 02:09 |
jamielennox | hmm, the sessions review is still failing - it must be something i did | 02:11 |
ayoung | lets look...didn't seem obvious to me | 02:14 |
*** dprince has quit IRC | 02:15 | |
*** gongysh has joined #openstack-dev | 02:16 | |
*** llu has joined #openstack-dev | 02:19 | |
ayoung | jamielennox, on the auth_token patch, is setting insecure to false going to break things? | 02:19 |
ayoung | it is the *right* thing to do I know | 02:20 |
jamielennox | ummm, i've got no idea | 02:22 |
jamielennox | maybe | 02:22 |
jamielennox | shit | 02:22 |
jamielennox | do we have to default insecure to true? | 02:22 |
*** nati_ueno has quit IRC | 02:22 | |
jamielennox | ayoung: the review is https://review.openstack.org/#/c/34161 comment on it there | 02:23 |
jamielennox | it's got a SecurityImpact tag so hopefully we'll get some eyes on it and can discuss it because i really don't want to have insecure be default | 02:23 |
*** markwash has joined #openstack-dev | 02:24 | |
*** markwash has quit IRC | 02:24 | |
*** dims has quit IRC | 02:25 | |
ayoung | jamielennox, well, if someone currently has the client deployed, upgrades to your code, and they were not validating certificates before, they will be now...if they do self signed, they probably will have invalid certificates, no? | 02:26 |
*** xchu has quit IRC | 02:27 | |
ayoung | going to leave it a 0... | 02:27 |
ayoung | I had +2ed it, then -1ed it...people are going to think I am mad... | 02:28 |
*** jcoufal has quit IRC | 02:28 | |
jamielennox | ayoung: ype | 02:29 |
jamielennox | ayoung: yep | 02:29 |
*** fifieldt has quit IRC | 02:29 | |
jamielennox | (regarding the invalid certs, rather than the madness) | 02:29 |
ayoung | jamielennox, we might be OK with that breakage, though...lets check with dolph...can you email him? | 02:30 |
jamielennox | maybe i'll just mailing list it | 02:30 |
ayoung | jamielennox, as far as the session breakage..I was trying to diff between v2 and v3 of your patch, but they are just too radically different, due to the cleanup | 02:31 |
jamielennox | yea, i really shouldn't have bothered keeping the old change id | 02:31 |
jamielennox | i could have just added the people from the old review to the new one | 02:31 |
*** dubsquared has joined #openstack-dev | 02:32 | |
ayoung | jamielennox, hollee cow...do we spam the logs | 02:32 |
ayoung | http://logs.openstack.org/29/43829/3/check/gate-tempest-devstack-vm-full/bda122c/logs/screen-key.txt.gz | 02:32 |
morganfainberg | ayoung, yes debug = omg deeeeebugggg | 02:33 |
jamielennox | hmm dogpile is new, we might need to do an explicit debug flag for that | 02:33 |
*** noslzzp has quit IRC | 02:34 | |
ayoung | jamielennox, this seems to be the error in the log 2013-09-12 01:45:23.892 | BuildErrorException: Server bf9c8313-71ba-4885-ad4a-fad07156420f failed to build and is in ERROR status | 02:35 |
jamielennox | ayoung: that one is going to be a pain to debug as it doesn't seem to be coming from anywhere | 02:35 |
jamielennox | yes, but why a session object in keystoneclient would cause that .... | 02:35 |
ayoung | jamielennox, if it is an error that gets triggered from auth_token middleware, it could be in any server | 02:36 |
jamielennox | it won't be in middleware - it would have to be someone using keystoneclient for communiation | 02:37 |
jamielennox | 2013-09-12 01:12:41.019 21925 TRACE glance.api.v1.upload_utils NameError: global name 'requests' is not defined | 02:37 |
ayoung | bingo | 02:38 |
jamielennox | alright, i'll fix that up | 02:38 |
ayoung | jamielennox, is that from the session changes? | 02:38 |
jamielennox | i don't see how | 02:39 |
jamielennox | http://logs.openstack.org/29/43829/3/check/gate-tempest-devstack-vm-full/bda122c/logs/screen-g-api.txt.gz | 02:39 |
ayoung | session imports requests | 02:39 |
ayoung | but httpclient used to do that. | 02:39 |
*** xchu has joined #openstack-dev | 02:39 | |
jamielennox | ooh, i think i remove it | 02:40 |
ayoung | from httpclient? yes | 02:40 |
jamielennox | because i move all the actual requests code over to session | 02:40 |
jamielennox | how did that not get picked up in tests | 02:40 |
*** arnaudvm has quit IRC | 02:41 | |
jamielennox | oh, that's right we don't run unit tests with debug on | 02:41 |
jamielennox | i've come across that before | 02:41 |
*** senk has joined #openstack-dev | 02:41 | |
ayoung | line 325 | 02:41 |
ayoung | 247 in the new file | 02:41 |
*** jhesketh__ has quit IRC | 02:41 | |
ayoung | cool | 02:41 |
jamielennox | ok, i'll fix that | 02:42 |
jamielennox | i'm going to grab some lunch first though - some days food wins | 02:42 |
ayoung | jamielennox, good stuff. I'll look for a functioning review in my morning.... | 02:43 |
ayoung | gnight | 02:43 |
jamielennox | ayoung: night | 02:43 |
morganfainberg | jamielennox, if you think dogpile spews a bit much, we could do something dirty like logging.Manager.getLogger('dogpile.core.dogpile') and set that to not debug. | 02:43 |
morganfainberg | but it's going to be direct referencing of the loggers via the python core logging moduel (or some other clever stuff) | 02:43 |
jamielennox | morganfainberg: i was thinking more like we do for requests debug like we do in httpclient | 02:44 |
ayoung | morganfainberg, looks at the log spew...its painful...we need to reduce it. | 02:44 |
jamielennox | anyway, back later | 02:44 |
morganfainberg | ayoung, i have seen it. unfortunately, dogpile (another limitation) has limited log controlling directly | 02:44 |
morganfainberg | ayoung, i could do some magic on it. but focused on other stuff for RC1 right now. | 02:45 |
morganfainberg | best scenario - propose a fix to dogpile.core :) make it's logging easier to control | 02:45 |
morganfainberg | ayoung, once i'm done with the cleanup bugs i'm working on i'll see if i can get something done for it. | 02:46 |
morganfainberg | actually hrm, betcha could do from dogpile.core import dogpile and set dogpile.log.setLevel in a nice way. | 02:47 |
*** otherwiseguy has quit IRC | 02:48 | |
*** rackerjoe has left #openstack-dev | 02:51 | |
*** HenryG has quit IRC | 02:53 | |
*** markwash has joined #openstack-dev | 02:54 | |
*** jhesketh__ has joined #openstack-dev | 02:54 | |
*** hartsocks has joined #openstack-dev | 02:57 | |
*** nosnos has quit IRC | 02:57 | |
*** anteaya__ is now known as anteaya | 02:57 | |
*** nosnos has joined #openstack-dev | 02:58 | |
morganfainberg | ayoung, something like: https://review.openstack.org/#/c/46178/ ? | 02:58 |
*** markwash has quit IRC | 02:58 | |
morganfainberg | anteaya, ping | 02:58 |
anteaya | hello morganfainberg | 02:59 |
morganfainberg | anteaya, so some feedback from product guy™ | 02:59 |
*** morazi has quit IRC | 02:59 | |
* anteaya listens | 02:59 | |
morganfainberg | anteaya, everything was fantastic with one exception. | 02:59 |
morganfainberg | anteaya, virtualbox doesn't allow acess (e.g. forwarded ports) by default | 02:59 |
*** ayoung has quit IRC | 03:00 | |
morganfainberg | anteaya, so if you want to access horizon… or an api… etc you need to enable the port forwarding | 03:00 |
*** angdraug has joined #openstack-dev | 03:00 | |
morganfainberg | anteaya, it's how virtualbox does things. (vagrant ssh get around this with some default port forwarding iirc) | 03:00 |
anteaya | what port does horizon use? | 03:01 |
anteaya | do you know? | 03:01 |
morganfainberg | anteaya, 80 | 03:01 |
morganfainberg | i think thats default in devstack | 03:01 |
anteaya | I think I have used horizon once | 03:01 |
anteaya | okay | 03:01 |
morganfainberg | the other API ports would also likewise be blocked. | 03:01 |
morganfainberg | there might be some magic that allows everything, i'm not sure. | 03:02 |
anteaya | I think that addressing port forwarding in this post would be too much for a complete n00b to digest, so I don't want to add any additional paths or options | 03:02 |
morganfainberg | right, i meant like a copy/paste magic setting | 03:02 |
anteaya | but I will be dealing with variations on how to run devstack in the next post I am planning | 03:02 |
morganfainberg | just so horizon is accessible or if there is something that lets everything through, that setting would be good. | 03:03 |
anteaya | how to change your localrc to have different devstack configurations | 03:03 |
morganfainberg | nice. | 03:03 |
anteaya | so I can certainly add in vagrant port forwarding in that post | 03:03 |
anteaya | http://docs-v1.vagrantup.com/v1/docs/getting-started/ports.html | 03:03 |
anteaya | it is easy to do | 03:03 |
morganfainberg | http://docs.vagrantup.com/v2/getting-started/networking.html | 03:03 |
morganfainberg | yep. | 03:04 |
anteaya | the choice for me is how much is the minimum to get standing | 03:04 |
anteaya | and then after they are standing - 1st post | 03:04 |
anteaya | what options are appealing? - 2nd post | 03:04 |
anteaya | so please tell product guy thank you from me for his feedback | 03:04 |
morganfainberg | sure thing | 03:04 |
anteaya | it was an option I hadn't considered in my own workflow but yes, others would need this | 03:05 |
morganfainberg | http://docs.vagrantup.com/v2/networking/public_network.html might be something good to do in a future post | 03:05 |
morganfainberg | expose everything via a known ip, rather than explicit port forwarding | 03:05 |
*** freedomhui has quit IRC | 03:05 | |
lbragstad | hey morganfainberg quick question on https://review.openstack.org/#/c/46178/1/keystone/common/cache/core.py when you have a minute | 03:05 |
*** hartsocks has left #openstack-dev | 03:06 | |
morganfainberg | lbragstad sure | 03:06 |
morganfainberg | lbragstad shoot. | 03:06 |
*** ljjjustin has quit IRC | 03:06 | |
lbragstad | ok, so on line 150 you're checking the config if you're suppose to log anything for dog pile and if not you don't log as much? | 03:07 |
lbragstad | to reduce the spam? | 03:07 |
anteaya | morganfainberg: let me think about this, I need to work with the idea that at a certain point, interested parties will consult the vagrant docs to configure their box to their liking - the question I ask myself is where is that line? | 03:07 |
morganfainberg | lbragstad basically it will cut out all the dogpile.core.dogpile lines from a log like: http://logs.openstack.org/29/43829/3/check/gate-tempest-devstack-vm-full/bda122c/logs/screen-key.txt.gz | 03:07 |
morganfainberg | there is a _log_ of extra lines there that are superfluous unless you're looking to get info on the way the cache library itself works | 03:08 |
morganfainberg | it might be a sub-optimal approach, it was a 30 second "huh, this might be an ok way to handle this" after the conversation a few lines up | 03:09 |
morganfainberg | any input would be good. | 03:09 |
morganfainberg | s/_log_/_lot_/ | 03:10 |
*** mattmalesky has joined #openstack-dev | 03:10 | |
*** otherwiseguy has joined #openstack-dev | 03:10 | |
lbragstad | morganfainberg: ok, the way the logic looks might have just thrown me off (since I might not understand the whole context) but it seems like we are logging even though the user hasn't set the config option? | 03:10 |
morganfainberg | lbragstad, the idea is that if you globally set the root logger to debug | 03:10 |
*** paragan has joined #openstack-dev | 03:10 | |
morganfainberg | and you don't want to log dogpile.core.dogpile logs, this will set that specific logger to INFO only level | 03:11 |
morganfainberg | the default behavior is to set that logger to INFO | 03:11 |
morganfainberg | setting that option to True will leave it to whatever the root logger's level is | 03:11 |
lbragstad | the default behavior for dogpile? | 03:11 |
morganfainberg | default behavior for dogpile is to use the python logging module, which will use the root (e.g. logger.getLogger()) log level | 03:12 |
morganfainberg | we set that with the logging options in oslo | 03:12 |
morganfainberg | this just reduces the debug log from the dogpile library even if we set the root logger to debug (or higher) level | 03:12 |
*** xchu has quit IRC | 03:12 | |
lbragstad | ahh | 03:12 |
lbragstad | ok | 03:12 |
lbragstad | that makes a little more sense | 03:12 |
morganfainberg | the logic has to be backwards because we want to override the default | 03:13 |
lbragstad | right | 03:13 |
morganfainberg | like i said, there might be a better approach | 03:13 |
lbragstad | hmm, the thing that caught my eye was import logging | 03:13 |
morganfainberg | this was 30 second "maybe" | 03:13 |
morganfainberg | right. and that is needed to get the log level | 03:13 |
morganfainberg | logging.INFO (not exposed via oslo log) | 03:13 |
lbragstad | and setting the log level... I was checking to see if there was a way we could do that with openstack/common/log.py instead of having to import logging independently | 03:14 |
lbragstad | right | 03:14 |
lbragstad | ++ ^ | 03:14 |
*** clayb has quit IRC | 03:14 | |
morganfainberg | i tossed a WIP on that so no one merged it. but it'll do a quick show if the logs are reduced say in tempest | 03:15 |
morganfainberg | but it also might spark someone to say "oh that isn't the right approach" | 03:15 |
morganfainberg | :) | 03:15 |
lbragstad | ok, now it makes sense. If we do go with this approach it might be worth NOTE'ing that logical break at line 150 | 03:15 |
lbragstad | or a FIXME :) | 03:16 |
morganfainberg | hehe | 03:16 |
morganfainberg | FIXME: propose a change to the upstream library to make this easier to toggle | 03:16 |
morganfainberg | :P | 03:16 |
lbragstad | right, that might benefit other projects too... having something like that in Oslo | 03:16 |
morganfainberg | right. | 03:16 |
morganfainberg | actually the easiest way is to probably do a logging.getLogger('dogpile.core.dogpile') and set that | 03:17 |
morganfainberg | *shrug* | 03:17 |
lbragstad | that's an option | 03:18 |
*** tserong has quit IRC | 03:18 | |
*** Mandell has joined #openstack-dev | 03:20 | |
lbragstad | morganfainberg: or approach it using a separate logging config? | 03:21 |
morganfainberg | lbragstad, perhaps. | 03:21 |
morganfainberg | feel free to take that and make it happen if you are so inclined :). I don't knwo when i'll have time to really look at it beyond the simpleish fix. | 03:22 |
lbragstad | morganfainberg: I'll give it some thought. The fix you have will work, I was just curious. It makes sense now having it explained... If we do go this route for now it might just need to be documented/noted. | 03:27 |
morganfainberg | lbragstad, fair enough, but don't hesitate to let me know (or propose) a better solution if you come up with one. | 03:27 |
lbragstad | morganfainberg: will do! | 03:28 |
*** tserong has joined #openstack-dev | 03:28 | |
*** novas0x2a|laptop has quit IRC | 03:28 | |
*** neelashah has joined #openstack-dev | 03:28 | |
morganfainberg | ooh i need to do code reviews... | 03:28 |
morganfainberg | lbragstad, maybe if i can swing it, i'll get the stuff from keystone.common.cache into oslo, (with some fixes) for icehouse, could allow for caching within any project | 03:29 |
morganfainberg | s/fixes/cleanup or little more generic/ | 03:30 |
*** xchu has joined #openstack-dev | 03:30 | |
*** comay has joined #openstack-dev | 03:32 | |
lbragstad | morganfainberg: that would be nice | 03:32 |
jamielennox | setting logging.getLogger('dogpile.core.dogpile') is supposed to be a valid strategy with python logging | 03:32 |
lbragstad | real nice | 03:32 |
jamielennox | the better approach is to use a logging.conf file so you can specify that keystone should be debugged dogplie should not | 03:32 |
*** anteaya has quit IRC | 03:33 | |
morganfainberg | jamielennox, likely so | 03:33 |
jamielennox | i haven't done much with logging confs but i know that it is the intended way | 03:33 |
lbragstad | jamielennox: morganfainberg so possibly something along these lines https://github.com/openstack/nova/blob/master/etc/nova/logging_sample.conf ? | 03:33 |
morganfainberg | jamielennox, i have avoided working with them (let one of the other guys here deal with it mostly) | 03:33 |
jamielennox | lbragstad: yep that looks like it | 03:34 |
lbragstad | breaks everything logging wise into a dedicated config file | 03:34 |
jamielennox | problem is they aren't pretty and are complex to set up, but once in place it is a good idea | 03:35 |
*** noorul`` is now known as noorul | 03:35 | |
*** shang has quit IRC | 03:37 | |
*** edmund1 has quit IRC | 03:41 | |
*** hemna has joined #openstack-dev | 03:44 | |
*** reed has joined #openstack-dev | 03:53 | |
*** fifieldt has joined #openstack-dev | 03:55 | |
*** jhesketh__ has quit IRC | 04:07 | |
*** colinmcnamara has joined #openstack-dev | 04:07 | |
*** jhesketh has joined #openstack-dev | 04:07 | |
*** davi67232 has joined #openstack-dev | 04:07 | |
*** freedomhui has joined #openstack-dev | 04:08 | |
*** senk has quit IRC | 04:11 | |
*** SergeyLukjanov has joined #openstack-dev | 04:13 | |
*** freedomhui has quit IRC | 04:13 | |
*** SergeyLukjanov has quit IRC | 04:14 | |
*** hemna has quit IRC | 04:15 | |
*** prekarat has joined #openstack-dev | 04:16 | |
*** freedomhui has joined #openstack-dev | 04:19 | |
*** SergeyLukjanov has joined #openstack-dev | 04:20 | |
*** prekarat has quit IRC | 04:20 | |
*** kushal has joined #openstack-dev | 04:25 | |
*** hemna has joined #openstack-dev | 04:25 | |
*** freedomhui has quit IRC | 04:27 | |
*** SergeyLukjanov has quit IRC | 04:30 | |
*** spzala has quit IRC | 04:30 | |
*** neelashah has quit IRC | 04:31 | |
*** egallen has joined #openstack-dev | 04:31 | |
*** SergeyLukjanov has joined #openstack-dev | 04:33 | |
*** dguitarbite has quit IRC | 04:33 | |
*** dguitarbite has joined #openstack-dev | 04:35 | |
*** davi67232 has quit IRC | 04:36 | |
*** herndon has quit IRC | 04:38 | |
*** garyk has quit IRC | 04:38 | |
*** prekarat has joined #openstack-dev | 04:40 | |
*** jbresnah has quit IRC | 04:40 | |
*** jbresnah_ has joined #openstack-dev | 04:40 | |
*** senk has joined #openstack-dev | 04:42 | |
*** Mandell has quit IRC | 04:44 | |
*** jbresnah_ has quit IRC | 04:45 | |
*** senk has quit IRC | 04:46 | |
*** dubsquared has quit IRC | 04:46 | |
*** dmakogon_ has joined #openstack-dev | 04:48 | |
*** SergeyLukjanov has quit IRC | 04:48 | |
*** zaitcev has quit IRC | 04:50 | |
*** Ryan_Lane has joined #openstack-dev | 04:52 | |
*** jimfehlig has quit IRC | 04:57 | |
*** SergeyLukjanov has joined #openstack-dev | 04:57 | |
*** SergeyLukjanov has quit IRC | 04:57 | |
*** colinmcnamara has quit IRC | 04:59 | |
*** alexxu has quit IRC | 05:01 | |
*** coolsvap has joined #openstack-dev | 05:01 | |
*** mrodden has joined #openstack-dev | 05:05 | |
*** egallen has quit IRC | 05:10 | |
*** reed has quit IRC | 05:11 | |
*** dguitarbite has quit IRC | 05:13 | |
*** senk has joined #openstack-dev | 05:14 | |
*** alexxu has joined #openstack-dev | 05:14 | |
*** aeperezt has quit IRC | 05:15 | |
*** corXi has joined #openstack-dev | 05:15 | |
*** dguitarbite has joined #openstack-dev | 05:16 | |
*** shinylasers has joined #openstack-dev | 05:17 | |
*** senk has quit IRC | 05:18 | |
*** alexxu has quit IRC | 05:21 | |
*** boris-42 has joined #openstack-dev | 05:22 | |
*** dguitarbite has quit IRC | 05:22 | |
*** dguitarbite has joined #openstack-dev | 05:23 | |
*** sushils has joined #openstack-dev | 05:23 | |
*** egallen has joined #openstack-dev | 05:24 | |
*** imsurit has joined #openstack-dev | 05:24 | |
*** dguitarbite has quit IRC | 05:30 | |
*** jasondotstar has quit IRC | 05:31 | |
*** jbresnah_ has joined #openstack-dev | 05:31 | |
*** harlowja has quit IRC | 05:31 | |
*** harlowja has joined #openstack-dev | 05:31 | |
*** rushiagr has joined #openstack-dev | 05:32 | |
*** alexxu has joined #openstack-dev | 05:34 | |
*** comay has quit IRC | 05:35 | |
*** sushils has quit IRC | 05:35 | |
*** harlowja_ has joined #openstack-dev | 05:36 | |
*** radsy has quit IRC | 05:38 | |
*** harlowja has quit IRC | 05:38 | |
*** harlowja has joined #openstack-dev | 05:39 | |
*** harlowja_ has quit IRC | 05:42 | |
*** SergeyLukjanov has joined #openstack-dev | 05:42 | |
*** rdopieralski has joined #openstack-dev | 05:43 | |
*** vartom10 has joined #openstack-dev | 05:44 | |
*** doron_afk has quit IRC | 05:45 | |
*** dubsquared has joined #openstack-dev | 05:49 | |
*** jbresnah_ has quit IRC | 05:52 | |
*** jbresnah has joined #openstack-dev | 05:52 | |
*** dubsquared has quit IRC | 05:53 | |
*** garyk has joined #openstack-dev | 05:54 | |
*** imsurit has quit IRC | 05:54 | |
*** egallen has quit IRC | 05:56 | |
*** jbresnah has quit IRC | 05:58 | |
*** nshaikh has joined #openstack-dev | 06:01 | |
*** hemna has quit IRC | 06:02 | |
*** jbresnah has joined #openstack-dev | 06:03 | |
*** ifarkas has joined #openstack-dev | 06:07 | |
*** marios has quit IRC | 06:07 | |
*** marios has joined #openstack-dev | 06:07 | |
*** rushiagr has quit IRC | 06:11 | |
*** med_ has quit IRC | 06:12 | |
*** sbisbee has quit IRC | 06:12 | |
*** markwash has joined #openstack-dev | 06:13 | |
*** coolsvap has quit IRC | 06:13 | |
*** sbisbee has joined #openstack-dev | 06:13 | |
*** xga_ has joined #openstack-dev | 06:14 | |
*** thouveng has joined #openstack-dev | 06:15 | |
*** otherwiseguy has quit IRC | 06:17 | |
*** nosnos has quit IRC | 06:17 | |
*** rushiagr has joined #openstack-dev | 06:19 | |
*** markwash has quit IRC | 06:21 | |
*** avishay has joined #openstack-dev | 06:22 | |
*** mrunge has joined #openstack-dev | 06:22 | |
*** markwash has joined #openstack-dev | 06:23 | |
*** devvesa has joined #openstack-dev | 06:23 | |
*** nosnos has joined #openstack-dev | 06:24 | |
*** yolanda has joined #openstack-dev | 06:29 | |
*** xga__ has joined #openstack-dev | 06:29 | |
*** xga_ has quit IRC | 06:31 | |
*** Max_ has joined #openstack-dev | 06:31 | |
*** flaper87|afk is now known as flaper87 | 06:33 | |
fandikurnia01 | hi all | 06:33 |
fandikurnia01 | how to install ceilometer on centos ? | 06:33 |
fandikurnia01 | does any one have literary for this case | 06:33 |
*** markwash has quit IRC | 06:37 | |
*** yolanda has quit IRC | 06:37 | |
*** xga has joined #openstack-dev | 06:38 | |
*** xga__ has quit IRC | 06:41 | |
*** Max_ has quit IRC | 06:43 | |
*** yongli_away has quit IRC | 06:43 | |
*** SergeyLukjanov has quit IRC | 06:43 | |
*** rushiagr has quit IRC | 06:44 | |
*** jprovazn has joined #openstack-dev | 06:46 | |
*** xga has quit IRC | 06:46 | |
*** vartom10 has quit IRC | 06:47 | |
*** vartom10 has joined #openstack-dev | 06:49 | |
*** prekarat has quit IRC | 06:50 | |
*** DeeJay1 has joined #openstack-dev | 06:52 | |
*** amotoki has joined #openstack-dev | 06:52 | |
*** xchu has quit IRC | 06:56 | |
*** neoXsys has quit IRC | 06:56 | |
*** afazekas has joined #openstack-dev | 06:57 | |
*** reidrac has joined #openstack-dev | 06:59 | |
*** prekarat has joined #openstack-dev | 06:59 | |
*** schwicht has joined #openstack-dev | 07:00 | |
*** _anant has joined #openstack-dev | 07:03 | |
*** flaper87 is now known as flaper87|afk | 07:05 | |
*** afazekas_ has joined #openstack-dev | 07:05 | |
*** afazekas_ has quit IRC | 07:06 | |
*** dachary has quit IRC | 07:06 | |
*** iartarisi has joined #openstack-dev | 07:06 | |
*** sumanthns has joined #openstack-dev | 07:06 | |
*** dachary has joined #openstack-dev | 07:06 | |
*** eglynn has quit IRC | 07:07 | |
*** egallen has joined #openstack-dev | 07:08 | |
*** shinylasers has quit IRC | 07:08 | |
*** o_petit has joined #openstack-dev | 07:08 | |
*** rushiagr has joined #openstack-dev | 07:09 | |
*** erkules_ is now known as erkules | 07:09 | |
*** flaper87|afk is now known as flaper87 | 07:14 | |
*** shardy_afk is now known as shardy | 07:15 | |
*** xchu has joined #openstack-dev | 07:15 | |
*** sridevi has joined #openstack-dev | 07:16 | |
*** richardwoo has quit IRC | 07:16 | |
*** sahid has joined #openstack-dev | 07:21 | |
*** JordanP has joined #openstack-dev | 07:21 | |
*** Ryan_Lane has quit IRC | 07:21 | |
*** o_petit has quit IRC | 07:22 | |
*** wfoster_away is now known as wfoster | 07:24 | |
*** doron_afk has joined #openstack-dev | 07:25 | |
*** xchu has quit IRC | 07:26 | |
*** dmakogon_ has quit IRC | 07:28 | |
*** o_petit has joined #openstack-dev | 07:28 | |
*** AnilV4 has quit IRC | 07:31 | |
*** Max_ has joined #openstack-dev | 07:33 | |
*** athomas has joined #openstack-dev | 07:36 | |
*** arnaud has quit IRC | 07:36 | |
*** wfoster is now known as wfoster_away | 07:36 | |
*** xqueralt-afk is now known as xqueralt | 07:37 | |
*** feleouet has joined #openstack-dev | 07:37 | |
*** AnilV4 has joined #openstack-dev | 07:39 | |
*** jpich has joined #openstack-dev | 07:41 | |
*** sridevi has quit IRC | 07:41 | |
*** jimjiang has quit IRC | 07:42 | |
*** jimjiang has joined #openstack-dev | 07:44 | |
*** xchu has joined #openstack-dev | 07:44 | |
*** rushiagr has quit IRC | 07:45 | |
*** tonyfy has joined #openstack-dev | 07:45 | |
*** flaper87 is now known as flaper87|afk | 07:47 | |
*** rushiagr has joined #openstack-dev | 07:47 | |
*** asavu has joined #openstack-dev | 07:49 | |
*** afazekas has quit IRC | 07:55 | |
*** romcheg has joined #openstack-dev | 07:55 | |
*** schwicht has quit IRC | 07:55 | |
*** boris-42 has quit IRC | 07:55 | |
*** giulivo has joined #openstack-dev | 07:56 | |
*** dcahill has joined #openstack-dev | 07:56 | |
*** jistr has joined #openstack-dev | 07:57 | |
*** flaper87|afk is now known as flaper87 | 07:58 | |
*** romcheg has left #openstack-dev | 08:00 | |
*** yassine has joined #openstack-dev | 08:02 | |
*** Ruetobas has quit IRC | 08:04 | |
*** jimjiang_ has quit IRC | 08:04 | |
*** jimjiang has quit IRC | 08:04 | |
*** jimjiang has joined #openstack-dev | 08:04 | |
*** boden has joined #openstack-dev | 08:04 | |
*** rushiagr has quit IRC | 08:05 | |
*** stevemar has quit IRC | 08:05 | |
*** asavu has quit IRC | 08:07 | |
*** yves has joined #openstack-dev | 08:07 | |
*** networkstatic has joined #openstack-dev | 08:08 | |
*** xchu has quit IRC | 08:08 | |
*** o_petit has quit IRC | 08:08 | |
*** xga has joined #openstack-dev | 08:09 | |
*** SergeyLukjanov has joined #openstack-dev | 08:09 | |
*** yolanda has joined #openstack-dev | 08:10 | |
*** henrynash has joined #openstack-dev | 08:10 | |
jd__ | jog0: pong | 08:13 |
*** jaimegil has joined #openstack-dev | 08:13 | |
*** adjohn has quit IRC | 08:15 | |
*** lucasagomes has joined #openstack-dev | 08:16 | |
*** fbo_away is now known as fbo | 08:17 | |
*** Alexei_987 has joined #openstack-dev | 08:17 | |
*** tkammer has joined #openstack-dev | 08:17 | |
*** o_petit has joined #openstack-dev | 08:17 | |
*** shinylasers has joined #openstack-dev | 08:17 | |
*** miziel_r has joined #openstack-dev | 08:21 | |
*** DeeJay1 has quit IRC | 08:22 | |
*** bashok has joined #openstack-dev | 08:22 | |
*** locke105 has quit IRC | 08:23 | |
*** vartom10 has quit IRC | 08:23 | |
*** DeeJay1 has joined #openstack-dev | 08:24 | |
*** vartom10 has joined #openstack-dev | 08:24 | |
*** vartom11 has joined #openstack-dev | 08:27 | |
*** johnthetubaguy has joined #openstack-dev | 08:28 | |
*** vartom10 has quit IRC | 08:28 | |
*** wfoster_away is now known as wfoster | 08:28 | |
*** johnthetubaguy1 has joined #openstack-dev | 08:29 | |
*** johnthetubaguy has quit IRC | 08:29 | |
*** eglynn has joined #openstack-dev | 08:32 | |
*** mmagr has joined #openstack-dev | 08:34 | |
*** gmoro has quit IRC | 08:36 | |
*** shinylasers has quit IRC | 08:39 | |
*** mattmalesky has quit IRC | 08:40 | |
*** mattmalesky has joined #openstack-dev | 08:41 | |
*** ndipanov_gone is now known as ndipanov | 08:41 | |
*** safchain has joined #openstack-dev | 08:42 | |
*** adjohn has joined #openstack-dev | 08:46 | |
*** iartarisi has quit IRC | 08:46 | |
*** iartarisi has joined #openstack-dev | 08:46 | |
*** o_petit has quit IRC | 08:46 | |
*** iartarisi has quit IRC | 08:46 | |
*** gmoro has joined #openstack-dev | 08:48 | |
*** iartarisi has joined #openstack-dev | 08:51 | |
*** zhikunliu has joined #openstack-dev | 08:51 | |
*** neoXsys has joined #openstack-dev | 08:51 | |
*** rushiagr has joined #openstack-dev | 08:52 | |
*** athomas has quit IRC | 08:52 | |
*** adjohn has quit IRC | 08:55 | |
*** danpb has joined #openstack-dev | 08:56 | |
*** prekarat has quit IRC | 08:58 | |
*** henrynash has quit IRC | 09:01 | |
*** xga_ has joined #openstack-dev | 09:03 | |
*** kspear has quit IRC | 09:04 | |
*** xga has quit IRC | 09:05 | |
*** zhikunliu has quit IRC | 09:06 | |
*** o_petit has joined #openstack-dev | 09:06 | |
*** DeeJay1 has quit IRC | 09:07 | |
*** DeeJay1 has joined #openstack-dev | 09:07 | |
*** pixelb has joined #openstack-dev | 09:10 | |
*** imsurit has joined #openstack-dev | 09:11 | |
*** fifieldt has quit IRC | 09:13 | |
*** ljjjustin has joined #openstack-dev | 09:14 | |
*** zhikunliu has joined #openstack-dev | 09:19 | |
*** salv-orlando has joined #openstack-dev | 09:20 | |
*** o_petit has quit IRC | 09:21 | |
*** adjohn has joined #openstack-dev | 09:21 | |
*** boris-42 has joined #openstack-dev | 09:22 | |
*** adjohn has quit IRC | 09:26 | |
*** prekarat has joined #openstack-dev | 09:27 | |
*** o_petit has joined #openstack-dev | 09:28 | |
*** miziel_r has quit IRC | 09:32 | |
*** johnthetubaguy1 has quit IRC | 09:34 | |
*** johnthetubaguy has joined #openstack-dev | 09:34 | |
*** Alexei_987 has quit IRC | 09:37 | |
*** jprovazn has quit IRC | 09:38 | |
*** vsergeyev has quit IRC | 09:38 | |
yaguang | russellb, ping | 09:39 |
*** bauzas has quit IRC | 09:39 | |
*** mkollaro has joined #openstack-dev | 09:39 | |
*** alexxu has quit IRC | 09:48 | |
*** freedomhui has joined #openstack-dev | 09:48 | |
*** faramir has quit IRC | 09:48 | |
*** ljjjustin has quit IRC | 09:50 | |
*** vsergeyev has joined #openstack-dev | 09:50 | |
*** xchu has joined #openstack-dev | 09:51 | |
*** asavu has joined #openstack-dev | 09:52 | |
*** sumansn_ has joined #openstack-dev | 09:55 | |
*** rushiagr has quit IRC | 09:56 | |
*** ifarkas has quit IRC | 09:57 | |
*** odyssey4me has joined #openstack-dev | 09:57 | |
*** sumanthns has quit IRC | 09:58 | |
gongysh | emilienM ping | 09:58 |
*** radsy has joined #openstack-dev | 09:59 | |
*** neeti has joined #openstack-dev | 10:06 | |
*** xchu has quit IRC | 10:08 | |
*** kaushikc has joined #openstack-dev | 10:09 | |
*** jprovazn has joined #openstack-dev | 10:13 | |
*** martyntaylor has joined #openstack-dev | 10:13 | |
*** kaushikc has quit IRC | 10:16 | |
*** kaushikc has joined #openstack-dev | 10:16 | |
*** AndreaRosa has quit IRC | 10:17 | |
*** imsurit has quit IRC | 10:17 | |
*** roz has joined #openstack-dev | 10:17 | |
*** athomas has joined #openstack-dev | 10:20 | |
*** o_petit has quit IRC | 10:21 | |
*** branen_ has quit IRC | 10:21 | |
*** egallen has quit IRC | 10:22 | |
*** asavu has quit IRC | 10:24 | |
*** egallen has joined #openstack-dev | 10:24 | |
*** yaguang has quit IRC | 10:26 | |
*** mdenny has quit IRC | 10:26 | |
*** egallen has quit IRC | 10:28 | |
*** rushiagr has joined #openstack-dev | 10:28 | |
*** egallen has joined #openstack-dev | 10:28 | |
*** apevec has joined #openstack-dev | 10:29 | |
*** dims has joined #openstack-dev | 10:29 | |
*** egallen has quit IRC | 10:29 | |
*** Max_ has quit IRC | 10:30 | |
*** ifarkas has joined #openstack-dev | 10:33 | |
*** paragan has quit IRC | 10:33 | |
*** apevec has left #openstack-dev | 10:34 | |
*** SergeyLukjanov has quit IRC | 10:36 | |
*** SergeyLukjanov has joined #openstack-dev | 10:38 | |
*** gongysh has quit IRC | 10:40 | |
*** tonyfy has quit IRC | 10:42 | |
*** bauzas has joined #openstack-dev | 10:47 | |
*** bauzas has quit IRC | 10:48 | |
*** bauzas has joined #openstack-dev | 10:48 | |
*** afazekas has joined #openstack-dev | 10:51 | |
*** SergeyLukjanov has quit IRC | 10:54 | |
*** rushiagr has quit IRC | 10:55 | |
*** freedomhui has quit IRC | 10:57 | |
*** zhikunliu has quit IRC | 10:58 | |
*** waa_ has joined #openstack-dev | 10:59 | |
*** kspear has joined #openstack-dev | 11:00 | |
*** dolphm has joined #openstack-dev | 11:01 | |
*** Max_ has joined #openstack-dev | 11:01 | |
*** o_petit has joined #openstack-dev | 11:02 | |
*** eglynn is now known as eglynn-lunch | 11:03 | |
*** dprince has joined #openstack-dev | 11:05 | |
*** SergeyLukjanov has joined #openstack-dev | 11:07 | |
*** shang has joined #openstack-dev | 11:09 | |
*** Max_ has quit IRC | 11:10 | |
*** freedomhui has joined #openstack-dev | 11:11 | |
*** kaushikc has quit IRC | 11:11 | |
*** larsks has joined #openstack-dev | 11:18 | |
*** READ10 has quit IRC | 11:20 | |
*** Max_ has joined #openstack-dev | 11:20 | |
*** dolphm has quit IRC | 11:21 | |
*** sushils has joined #openstack-dev | 11:22 | |
*** adjohn has joined #openstack-dev | 11:22 | |
*** larsks has quit IRC | 11:25 | |
*** bauzas has quit IRC | 11:25 | |
*** bauzas has joined #openstack-dev | 11:25 | |
*** fandikurnia01 has quit IRC | 11:28 | |
*** networkstatic has quit IRC | 11:28 | |
*** doron_afk is now known as doron | 11:30 | |
*** pcm_ has joined #openstack-dev | 11:32 | |
*** souvik has joined #openstack-dev | 11:34 | |
*** samuelbercovici has joined #openstack-dev | 11:38 | |
*** jhesketh has quit IRC | 11:40 | |
*** HenryG has joined #openstack-dev | 11:40 | |
*** rushiagr has joined #openstack-dev | 11:42 | |
*** chuckieb has joined #openstack-dev | 11:44 | |
*** rfolco has joined #openstack-dev | 11:45 | |
*** kspear has quit IRC | 11:51 | |
*** kspear has joined #openstack-dev | 11:52 | |
*** egallen has joined #openstack-dev | 11:52 | |
*** shang has quit IRC | 11:55 | |
*** o_petit has quit IRC | 11:55 | |
*** radsy has quit IRC | 11:56 | |
*** asavu has joined #openstack-dev | 11:57 | |
*** kushal has quit IRC | 11:58 | |
*** martine has joined #openstack-dev | 11:58 | |
*** martine is now known as Guest46601 | 11:59 | |
*** doron is now known as doron_afk | 11:59 | |
*** o_petit has joined #openstack-dev | 12:00 | |
*** o_petit has quit IRC | 12:01 | |
*** xarses has quit IRC | 12:02 | |
*** jcoufal has joined #openstack-dev | 12:03 | |
*** jcoufal has quit IRC | 12:03 | |
*** rushiagr has quit IRC | 12:03 | |
*** jcoufal has joined #openstack-dev | 12:04 | |
*** adjohn has quit IRC | 12:04 | |
*** jcoufal has quit IRC | 12:04 | |
*** arezmerita has quit IRC | 12:05 | |
*** jcoufal has joined #openstack-dev | 12:06 | |
*** xga has joined #openstack-dev | 12:07 | |
*** rushiagr has joined #openstack-dev | 12:07 | |
*** sld has quit IRC | 12:07 | |
*** rushiagr has quit IRC | 12:08 | |
*** annegentle has quit IRC | 12:08 | |
*** xarses has joined #openstack-dev | 12:09 | |
*** sld has joined #openstack-dev | 12:09 | |
*** rushiagr has joined #openstack-dev | 12:09 | |
*** dprince has quit IRC | 12:09 | |
*** galstrom_zzz is now known as galstrom | 12:10 | |
*** xga_ has quit IRC | 12:10 | |
*** o_petit has joined #openstack-dev | 12:17 | |
*** bswartz has quit IRC | 12:17 | |
*** vartom11 has quit IRC | 12:17 | |
*** alexpilotti has joined #openstack-dev | 12:18 | |
*** dolphm_ has joined #openstack-dev | 12:21 | |
*** flaper87 is now known as flaper87|afk | 12:23 | |
*** doron_afk has quit IRC | 12:23 | |
*** paragan has joined #openstack-dev | 12:25 | |
*** boden has quit IRC | 12:25 | |
*** asavu has quit IRC | 12:26 | |
*** jruzicka has joined #openstack-dev | 12:26 | |
*** slagle has joined #openstack-dev | 12:26 | |
*** changbl has quit IRC | 12:27 | |
*** galstrom is now known as galstrom_zzz | 12:29 | |
*** morazi has joined #openstack-dev | 12:29 | |
*** shang has joined #openstack-dev | 12:30 | |
*** adjohn has joined #openstack-dev | 12:30 | |
*** flaper87|afk is now known as flaper87 | 12:31 | |
*** sushils has quit IRC | 12:31 | |
*** adjohn has quit IRC | 12:35 | |
*** boden has joined #openstack-dev | 12:36 | |
*** o_petit has quit IRC | 12:36 | |
*** mrunge has quit IRC | 12:36 | |
*** o_petit has joined #openstack-dev | 12:38 | |
*** lbragstad has quit IRC | 12:39 | |
*** rwsu has joined #openstack-dev | 12:39 | |
*** afazekas_ has joined #openstack-dev | 12:39 | |
*** fandikurnia01 has joined #openstack-dev | 12:40 | |
*** _anant has quit IRC | 12:42 | |
*** dolphm_ has quit IRC | 12:42 | |
*** sridevi has joined #openstack-dev | 12:43 | |
*** lbragstad has joined #openstack-dev | 12:43 | |
*** dolphm has joined #openstack-dev | 12:44 | |
*** souvik has quit IRC | 12:46 | |
*** adalbas has joined #openstack-dev | 12:48 | |
*** fandikurnia01 has quit IRC | 12:49 | |
*** afazekas_ has quit IRC | 12:49 | |
*** bswartz has joined #openstack-dev | 12:50 | |
*** herndon has joined #openstack-dev | 12:53 | |
*** freedomhui has quit IRC | 12:56 | |
*** anteaya has joined #openstack-dev | 12:57 | |
*** larsks has joined #openstack-dev | 12:57 | |
*** annegentle has joined #openstack-dev | 12:57 | |
*** freedomhui has joined #openstack-dev | 12:58 | |
*** FunnyLookinHat has joined #openstack-dev | 12:59 | |
*** souvik has joined #openstack-dev | 13:01 | |
*** annegentle is now known as annegentle_away | 13:02 | |
*** jayg|g0n3 is now known as jayg | 13:03 | |
*** safchain has quit IRC | 13:07 | |
*** lbragstad has quit IRC | 13:07 | |
*** sandywalsh has quit IRC | 13:08 | |
*** yassine has quit IRC | 13:08 | |
*** yassine has joined #openstack-dev | 13:09 | |
*** safchain has joined #openstack-dev | 13:09 | |
*** alunduil has quit IRC | 13:10 | |
*** tmclaugh[work] has joined #openstack-dev | 13:11 | |
*** maheshp has joined #openstack-dev | 13:11 | |
*** neeti has quit IRC | 13:11 | |
*** Max_ has quit IRC | 13:11 | |
*** gordc has joined #openstack-dev | 13:12 | |
*** chenxu has joined #openstack-dev | 13:12 | |
*** sheepdog80 has joined #openstack-dev | 13:13 | |
*** gimps_ has joined #openstack-dev | 13:14 | |
*** shang_ has joined #openstack-dev | 13:14 | |
*** davi67232 has joined #openstack-dev | 13:15 | |
*** neelashah has joined #openstack-dev | 13:15 | |
*** o_petit_ has joined #openstack-dev | 13:17 | |
*** o_petit has quit IRC | 13:17 | |
*** zul has quit IRC | 13:18 | |
*** zul has joined #openstack-dev | 13:18 | |
*** Max_ has joined #openstack-dev | 13:18 | |
*** noslzzp has joined #openstack-dev | 13:19 | |
*** kbringard has joined #openstack-dev | 13:20 | |
*** kushal has joined #openstack-dev | 13:20 | |
*** sandywalsh has joined #openstack-dev | 13:20 | |
*** Ruetobas has joined #openstack-dev | 13:21 | |
*** henrynash has joined #openstack-dev | 13:22 | |
*** edmund has joined #openstack-dev | 13:23 | |
*** phschwartz has joined #openstack-dev | 13:24 | |
*** sthaha has quit IRC | 13:24 | |
*** jimjiang_ has joined #openstack-dev | 13:25 | |
*** Ruetobas has quit IRC | 13:25 | |
*** jimjiang_ has quit IRC | 13:25 | |
*** nosnos has quit IRC | 13:26 | |
*** dvarga has joined #openstack-dev | 13:27 | |
*** dprince has joined #openstack-dev | 13:27 | |
*** lnxnut has joined #openstack-dev | 13:28 | |
*** alexxu has joined #openstack-dev | 13:30 | |
*** larsks has quit IRC | 13:30 | |
*** Ruetobas has joined #openstack-dev | 13:32 | |
*** stevemar has joined #openstack-dev | 13:33 | |
*** lbragstad has joined #openstack-dev | 13:34 | |
*** eglynn-lunch is now known as eglynn | 13:35 | |
*** larsks has joined #openstack-dev | 13:35 | |
*** Ruetobas has quit IRC | 13:36 | |
*** READ10 has joined #openstack-dev | 13:37 | |
*** dolphm has quit IRC | 13:37 | |
*** changbl has joined #openstack-dev | 13:38 | |
*** dkranz has joined #openstack-dev | 13:39 | |
*** Max_ has quit IRC | 13:40 | |
*** dolphm has joined #openstack-dev | 13:40 | |
*** larsks has quit IRC | 13:43 | |
*** eharney has joined #openstack-dev | 13:43 | |
*** Ruetobas has joined #openstack-dev | 13:44 | |
*** markmcclain has quit IRC | 13:45 | |
*** larsks has joined #openstack-dev | 13:47 | |
*** Guest46601 has quit IRC | 13:47 | |
sridevi | Can someone please review https://review.openstack.org/46279 | 13:48 |
*** shang_ has quit IRC | 13:48 | |
*** avishay has quit IRC | 13:48 | |
*** lnxnut has quit IRC | 13:50 | |
*** neeti has joined #openstack-dev | 13:50 | |
*** o_petit_ has quit IRC | 13:51 | |
*** shang has quit IRC | 13:51 | |
*** shang has joined #openstack-dev | 13:51 | |
*** o_petit has joined #openstack-dev | 13:53 | |
*** burt has joined #openstack-dev | 13:53 | |
*** alexpilotti has quit IRC | 13:53 | |
*** o_petit has quit IRC | 13:53 | |
*** alexxu has quit IRC | 13:55 | |
*** neeti has quit IRC | 13:56 | |
*** alexpilotti has joined #openstack-dev | 13:56 | |
*** nou1 has joined #openstack-dev | 13:56 | |
*** sumansn_ has quit IRC | 13:57 | |
*** larsks has quit IRC | 13:57 | |
*** FunnyLookinHat has quit IRC | 13:58 | |
*** larsks has joined #openstack-dev | 13:58 | |
*** o_petit has joined #openstack-dev | 13:58 | |
*** larsks has quit IRC | 13:59 | |
*** ifarkas has quit IRC | 14:00 | |
nou1 | can anybody explain what is the difference between a snapshot and an image? So far I had been thinking they both are different but i read somewhere today that they are same and its going to be fixed in havana. Is it so? | 14:00 |
*** jistr is now known as jistr|call | 14:00 | |
*** larsks has joined #openstack-dev | 14:00 | |
*** jistr|call is now known as jistr | 14:02 | |
*** YorikSar has joined #openstack-dev | 14:02 | |
*** jecarey has joined #openstack-dev | 14:03 | |
*** colinmcnamara has joined #openstack-dev | 14:03 | |
*** xga_ has joined #openstack-dev | 14:03 | |
*** o_petit has quit IRC | 14:03 | |
*** sridevi has quit IRC | 14:03 | |
*** chenxu has quit IRC | 14:04 | |
*** DeeJay1 has quit IRC | 14:04 | |
*** gargya has joined #openstack-dev | 14:04 | |
rushiagr | nou1: both are different concepts altogether | 14:04 |
nou1 | rushiagr, So from where I read it, its wrong. Thanks. | 14:06 |
*** xga has quit IRC | 14:07 | |
*** markmcclain has joined #openstack-dev | 14:07 | |
*** xqueralt is now known as xqueralt-afk | 14:07 | |
*** colinmcnamara has quit IRC | 14:07 | |
*** alexpilotti has quit IRC | 14:07 | |
*** alunduil has joined #openstack-dev | 14:07 | |
*** galstrom_zzz is now known as galstrom | 14:08 | |
*** garyk has quit IRC | 14:09 | |
*** vlakarados has joined #openstack-dev | 14:09 | |
*** vlakarados is now known as Guest97623 | 14:09 | |
*** athomas has quit IRC | 14:09 | |
*** davi67232 has quit IRC | 14:09 | |
*** vlakarados|2 has quit IRC | 14:10 | |
*** johnthetubaguy has quit IRC | 14:10 | |
*** herndon has quit IRC | 14:10 | |
*** nou1 has left #openstack-dev | 14:10 | |
*** rushiagr has quit IRC | 14:10 | |
*** otherwiseguy has joined #openstack-dev | 14:11 | |
*** johnthetubaguy has joined #openstack-dev | 14:12 | |
*** edmund has quit IRC | 14:12 | |
*** edmund has joined #openstack-dev | 14:13 | |
*** spzala has joined #openstack-dev | 14:13 | |
*** athomas has joined #openstack-dev | 14:14 | |
*** kbrierly has joined #openstack-dev | 14:15 | |
*** xga_ has quit IRC | 14:15 | |
*** alexpilotti has joined #openstack-dev | 14:15 | |
*** pabelanger_ has joined #openstack-dev | 14:16 | |
*** pabelanger__ has joined #openstack-dev | 14:16 | |
*** xqueralt-afk is now known as xqueralt | 14:17 | |
*** pabelanger__ has quit IRC | 14:17 | |
*** pabelanger__ has joined #openstack-dev | 14:17 | |
*** pabelanger has quit IRC | 14:17 | |
*** pabelanger__ is now known as pabelanger | 14:17 | |
*** pabelanger_ has quit IRC | 14:17 | |
*** pabelanger_ has joined #openstack-dev | 14:17 | |
*** pabelanger has quit IRC | 14:17 | |
*** pabelanger has joined #openstack-dev | 14:18 | |
*** chenxu has joined #openstack-dev | 14:18 | |
*** e1mer has quit IRC | 14:19 | |
*** mrodden has quit IRC | 14:24 | |
*** annegentle_away is now known as annegentle | 14:24 | |
*** dolphm has quit IRC | 14:25 | |
*** dolphm has joined #openstack-dev | 14:26 | |
*** adalbas has quit IRC | 14:28 | |
*** colinmcnamara has joined #openstack-dev | 14:29 | |
*** afazekas has quit IRC | 14:30 | |
henrynash | dolphm: ping | 14:31 |
dolphm | henrynash: pong | 14:31 |
*** thouveng has quit IRC | 14:31 | |
henrynash | dolphm: so looking at the list_user_projects fix: https://review.openstack.org/#/c/45584/3 | 14:32 |
dolphm | henrynash: do we need to keep the list_*_ids() method around? | 14:33 |
*** topol has joined #openstack-dev | 14:33 | |
*** senk1 has joined #openstack-dev | 14:33 | |
*** colinmcnamara has quit IRC | 14:33 | |
henrynash | dolphm: well, we could also jus get the refs, and extract the ids from it where needed (kind of the opposite to what I was doing) | 14:33 |
dolphm | henrynash: right | 14:33 |
*** o_petit has joined #openstack-dev | 14:34 | |
henrynash | dolphm: further, I assume that no v2 api should ever get back a list of projects that are outside of the default domain? | 14:34 |
*** mrodden has joined #openstack-dev | 14:34 | |
dolphm | henrynash: correct | 14:34 |
henrynash | dolphm: which the existing code certainly doesn't check for in the case if ids | 14:35 |
henrynash | dolphm: all the more reason to get the refs…since I'll need to look at the domain_id of the project | 14:35 |
*** atiwari has joined #openstack-dev | 14:36 | |
henrynash | dolphm: ok, let me work that | 14:36 |
*** FunnyLookinHat has joined #openstack-dev | 14:36 | |
*** senk1 has quit IRC | 14:37 | |
*** xga has joined #openstack-dev | 14:37 | |
*** senk1 has joined #openstack-dev | 14:38 | |
*** larsks has quit IRC | 14:38 | |
*** ayoung has joined #openstack-dev | 14:39 | |
*** nshaikh has left #openstack-dev | 14:42 | |
*** SergeyLukjanov has quit IRC | 14:42 | |
*** o_petit has quit IRC | 14:43 | |
*** senk has joined #openstack-dev | 14:43 | |
*** aeperezt has joined #openstack-dev | 14:44 | |
*** adalbas has joined #openstack-dev | 14:44 | |
*** davi67232 has joined #openstack-dev | 14:44 | |
*** senk2 has joined #openstack-dev | 14:44 | |
*** herndon has joined #openstack-dev | 14:46 | |
*** larsks has joined #openstack-dev | 14:48 | |
*** senk has quit IRC | 14:48 | |
*** senk1 has quit IRC | 14:48 | |
dolphm | morganfainberg: plz thx https://review.openstack.org/#/c/45320/ | 14:49 |
*** Max_ has joined #openstack-dev | 14:50 | |
*** carl_baldwin has joined #openstack-dev | 14:50 | |
*** corXi has quit IRC | 14:50 | |
*** CaptTofu has quit IRC | 14:50 | |
*** prekarat has quit IRC | 14:51 | |
*** senk2 has quit IRC | 14:51 | |
*** davi67232 has quit IRC | 14:51 | |
*** CaptTofu has joined #openstack-dev | 14:51 | |
*** afazekas has joined #openstack-dev | 14:51 | |
*** maheshp has quit IRC | 14:52 | |
*** senk has joined #openstack-dev | 14:53 | |
*** colinmcnamara has joined #openstack-dev | 14:53 | |
*** rnirmal has joined #openstack-dev | 14:54 | |
*** Max_ has quit IRC | 14:54 | |
*** rushiagr has joined #openstack-dev | 14:54 | |
*** gongysh has joined #openstack-dev | 14:56 | |
*** senk1 has joined #openstack-dev | 14:56 | |
*** sld is now known as sld-away | 14:56 | |
*** radez_g0n3 is now known as radez | 14:56 | |
*** rushiagr has left #openstack-dev | 14:56 | |
*** chenxu has quit IRC | 14:57 | |
*** rushiagr has joined #openstack-dev | 14:57 | |
*** yassine has quit IRC | 14:58 | |
*** Max_ has joined #openstack-dev | 14:58 | |
*** yassine has joined #openstack-dev | 14:58 | |
*** senk has quit IRC | 14:58 | |
*** matiu has joined #openstack-dev | 14:59 | |
*** matiu has quit IRC | 14:59 | |
*** matiu has joined #openstack-dev | 14:59 | |
*** rushiagr has left #openstack-dev | 15:00 | |
*** dhellmann_ is now known as dhellmann | 15:00 | |
*** johnthetubaguy1 has joined #openstack-dev | 15:00 | |
*** johnthetubaguy has quit IRC | 15:00 | |
*** mrodden1 has joined #openstack-dev | 15:02 | |
*** thedodd has joined #openstack-dev | 15:02 | |
*** mrodden has quit IRC | 15:02 | |
*** senk1 has quit IRC | 15:03 | |
*** mkollaro has quit IRC | 15:03 | |
*** adjohn has joined #openstack-dev | 15:03 | |
*** reidrac has quit IRC | 15:03 | |
*** spzala_ has joined #openstack-dev | 15:03 | |
*** spzala has quit IRC | 15:04 | |
*** spzala_ is now known as spzala | 15:04 | |
*** morazi has quit IRC | 15:04 | |
*** chenxu has joined #openstack-dev | 15:05 | |
*** dubsquared has joined #openstack-dev | 15:07 | |
*** adjohn has quit IRC | 15:08 | |
*** danwent has joined #openstack-dev | 15:09 | |
*** davi67232 has joined #openstack-dev | 15:09 | |
*** jimjiang has quit IRC | 15:10 | |
*** jvrbanac has joined #openstack-dev | 15:14 | |
*** colinmcnamara has quit IRC | 15:15 | |
*** yves has quit IRC | 15:15 | |
*** senk1 has joined #openstack-dev | 15:16 | |
*** odyssey4me has quit IRC | 15:17 | |
*** mrodden has joined #openstack-dev | 15:18 | |
*** nunosantos has quit IRC | 15:19 | |
*** senk has joined #openstack-dev | 15:19 | |
*** morazi has joined #openstack-dev | 15:19 | |
*** senk1 has quit IRC | 15:21 | |
*** mlavalle has joined #openstack-dev | 15:21 | |
*** SergeyLukjanov has joined #openstack-dev | 15:21 | |
*** colinmcnamara has joined #openstack-dev | 15:21 | |
*** bdpayne has joined #openstack-dev | 15:22 | |
*** martyntaylor has quit IRC | 15:22 | |
*** davi67232 has quit IRC | 15:22 | |
*** mrodden1 has quit IRC | 15:23 | |
*** martyntaylor has joined #openstack-dev | 15:23 | |
*** iartarisi has quit IRC | 15:24 | |
*** mrodden1 has joined #openstack-dev | 15:26 | |
*** mrodden has quit IRC | 15:26 | |
bswrchrd | is there anyone on from the neutron team? | 15:27 |
bswrchrd | i've got a question (or two) about the consumption of the policy.json file via the policy.py file for neutron-server | 15:28 |
*** yves has joined #openstack-dev | 15:28 | |
*** martyntaylor has quit IRC | 15:28 | |
*** prad has joined #openstack-dev | 15:28 | |
*** imsurit has joined #openstack-dev | 15:28 | |
*** cdub has joined #openstack-dev | 15:33 | |
*** Mandell has joined #openstack-dev | 15:33 | |
*** aloga has quit IRC | 15:33 | |
*** Madkiss has quit IRC | 15:35 | |
*** markmcclain has quit IRC | 15:35 | |
*** jecarey has quit IRC | 15:35 | |
*** imsurit has quit IRC | 15:36 | |
*** bashok has quit IRC | 15:36 | |
*** rnirmal_ has joined #openstack-dev | 15:39 | |
*** jvrbanac has quit IRC | 15:39 | |
*** jvrbanac has joined #openstack-dev | 15:40 | |
*** branen has joined #openstack-dev | 15:40 | |
*** colinmcnamara has quit IRC | 15:40 | |
*** rnirmal has quit IRC | 15:40 | |
*** rnirmal_ is now known as rnirmal | 15:40 | |
*** tmclaugh[work] has quit IRC | 15:41 | |
*** martine has joined #openstack-dev | 15:43 | |
*** martine is now known as Guest91897 | 15:43 | |
*** Guest91897 is now known as martine_ | 15:43 | |
*** pabelanger has quit IRC | 15:44 | |
*** jrwren has quit IRC | 15:45 | |
*** jrwren has joined #openstack-dev | 15:46 | |
*** jrwren has joined #openstack-dev | 15:46 | |
*** morazi has quit IRC | 15:48 | |
*** jimfehlig has joined #openstack-dev | 15:48 | |
*** rnirmal has quit IRC | 15:50 | |
*** martyntaylor has joined #openstack-dev | 15:50 | |
*** xxiao has joined #openstack-dev | 15:50 | |
*** rnirmal has joined #openstack-dev | 15:51 | |
*** markwash has joined #openstack-dev | 15:51 | |
*** xga has quit IRC | 15:52 | |
*** hemna has joined #openstack-dev | 15:52 | |
*** gimps_ has quit IRC | 15:52 | |
*** o_petit has joined #openstack-dev | 15:53 | |
*** Mandell has quit IRC | 15:54 | |
*** spzala_ has joined #openstack-dev | 15:55 | |
*** pabelanger_ has quit IRC | 15:55 | |
*** pabelanger has joined #openstack-dev | 15:56 | |
*** xga has joined #openstack-dev | 15:56 | |
*** o_petit has quit IRC | 15:57 | |
*** sahid_ has joined #openstack-dev | 15:58 | |
*** tmclaugh[work] has joined #openstack-dev | 15:58 | |
*** spzala has quit IRC | 15:58 | |
*** spzala_ is now known as spzala | 15:59 | |
*** paragan has quit IRC | 15:59 | |
*** morazi has joined #openstack-dev | 16:00 | |
*** lnxnut_ has joined #openstack-dev | 16:00 | |
*** Ruetobas has quit IRC | 16:01 | |
*** boris-42_ has joined #openstack-dev | 16:02 | |
*** marun has joined #openstack-dev | 16:02 | |
*** davi67232 has joined #openstack-dev | 16:02 | |
*** pixelb has quit IRC | 16:04 | |
*** Ruetobas has joined #openstack-dev | 16:04 | |
*** boris-42_ has quit IRC | 16:04 | |
*** yassine has quit IRC | 16:04 | |
*** boris-42 has quit IRC | 16:06 | |
*** mmagr has quit IRC | 16:06 | |
*** lnxnut_ has quit IRC | 16:06 | |
*** dvarga has quit IRC | 16:07 | |
*** jrwren has quit IRC | 16:08 | |
*** xqueralt is now known as xqueralt-afk | 16:08 | |
*** senk has quit IRC | 16:08 | |
*** Ruetobas has quit IRC | 16:08 | |
*** jrwren has joined #openstack-dev | 16:09 | |
*** jrwren has joined #openstack-dev | 16:09 | |
*** jaimegil has quit IRC | 16:09 | |
*** devvesa has quit IRC | 16:09 | |
*** jistr has quit IRC | 16:09 | |
*** xga_ has joined #openstack-dev | 16:10 | |
*** thedodd has quit IRC | 16:10 | |
*** chenxu has quit IRC | 16:10 | |
*** arnaud has joined #openstack-dev | 16:11 | |
*** fbo is now known as fbo_away | 16:11 | |
*** davi67232 has quit IRC | 16:11 | |
*** JonnyNomad has quit IRC | 16:11 | |
*** xga has quit IRC | 16:12 | |
*** Ruetobas has joined #openstack-dev | 16:14 | |
*** isd has joined #openstack-dev | 16:14 | |
*** changbl has quit IRC | 16:14 | |
*** isd has quit IRC | 16:14 | |
*** SumitNaiksatam has quit IRC | 16:16 | |
*** alop has joined #openstack-dev | 16:19 | |
*** JordanP has quit IRC | 16:19 | |
*** dubsquar_ has joined #openstack-dev | 16:21 | |
*** dubsquared has quit IRC | 16:21 | |
*** fbo_away is now known as fbo | 16:24 | |
*** xarses has quit IRC | 16:24 | |
*** rnirmal has quit IRC | 16:25 | |
*** rnirmal has joined #openstack-dev | 16:25 | |
*** dims has quit IRC | 16:25 | |
*** yves has quit IRC | 16:26 | |
*** asavu has joined #openstack-dev | 16:26 | |
*** dolphm has quit IRC | 16:26 | |
*** alop has quit IRC | 16:27 | |
*** zaitcev has joined #openstack-dev | 16:28 | |
*** kbrierly has quit IRC | 16:29 | |
*** alop has joined #openstack-dev | 16:29 | |
*** sahid has quit IRC | 16:30 | |
*** eglynn has quit IRC | 16:30 | |
*** markmcclain has joined #openstack-dev | 16:30 | |
*** chenxu has joined #openstack-dev | 16:31 | |
*** moted has quit IRC | 16:31 | |
*** moted has joined #openstack-dev | 16:32 | |
*** adjohn has joined #openstack-dev | 16:35 | |
*** bashok has joined #openstack-dev | 16:35 | |
*** gargya has quit IRC | 16:35 | |
*** fbo is now known as fbo_away | 16:36 | |
*** dims has joined #openstack-dev | 16:37 | |
*** SumitNaiksatam has joined #openstack-dev | 16:37 | |
*** kbrierly has joined #openstack-dev | 16:38 | |
*** adjohn has quit IRC | 16:40 | |
*** reed has joined #openstack-dev | 16:40 | |
*** chenxu has quit IRC | 16:41 | |
*** DennyZhang has joined #openstack-dev | 16:41 | |
*** athomas has quit IRC | 16:44 | |
*** pixelb has joined #openstack-dev | 16:44 | |
*** rdopieralski has quit IRC | 16:44 | |
*** xga has joined #openstack-dev | 16:44 | |
*** dubsquar_ has quit IRC | 16:47 | |
*** xga_ has quit IRC | 16:47 | |
*** xarses has joined #openstack-dev | 16:47 | |
*** tmclaugh[work] has quit IRC | 16:48 | |
*** arnaud has quit IRC | 16:48 | |
*** Max_ has quit IRC | 16:49 | |
*** cdub has quit IRC | 16:50 | |
atiwari | ayoung, how to fix "tempest" issue I am getting in https://review.openstack.org/#/c/46123/? | 16:52 |
atiwari | ayoung, never mind | 16:55 |
*** waa_ has quit IRC | 16:56 | |
*** samuelbercovici has quit IRC | 16:56 | |
*** chenxu has joined #openstack-dev | 16:57 | |
*** ruhe has joined #openstack-dev | 16:58 | |
*** mdenny has joined #openstack-dev | 16:58 | |
*** danpb has quit IRC | 16:58 | |
*** Ryan_Lane has joined #openstack-dev | 17:00 | |
*** galstrom is now known as galstrom_zzz | 17:00 | |
*** senk has joined #openstack-dev | 17:01 | |
*** bswartz has quit IRC | 17:01 | |
*** safchain has quit IRC | 17:02 | |
*** senk has quit IRC | 17:02 | |
*** DennyZhang has quit IRC | 17:02 | |
*** thedodd has joined #openstack-dev | 17:04 | |
*** asavu has quit IRC | 17:05 | |
*** jpich has quit IRC | 17:05 | |
*** tmclaugh[work] has joined #openstack-dev | 17:06 | |
*** gyee has joined #openstack-dev | 17:07 | |
*** nati_ueno has joined #openstack-dev | 17:07 | |
*** mkollaro has joined #openstack-dev | 17:09 | |
*** nati_ueno has quit IRC | 17:12 | |
*** gimps_ has joined #openstack-dev | 17:12 | |
*** ruhe has quit IRC | 17:13 | |
*** networkstatic has joined #openstack-dev | 17:13 | |
*** dolphm has joined #openstack-dev | 17:13 | |
*** jecarey has joined #openstack-dev | 17:13 | |
*** dubsquared has joined #openstack-dev | 17:14 | |
*** dolphm has quit IRC | 17:14 | |
*** dolphm has joined #openstack-dev | 17:15 | |
*** chenxu has quit IRC | 17:17 | |
*** lucasagomes has quit IRC | 17:20 | |
*** bauzas has quit IRC | 17:21 | |
*** pasquier-s has quit IRC | 17:22 | |
*** Ryan_Lane has quit IRC | 17:23 | |
*** Ryan_Lane has joined #openstack-dev | 17:23 | |
*** Ryan_Lane has quit IRC | 17:23 | |
*** Ryan_Lane has joined #openstack-dev | 17:23 | |
*** johnthetubaguy1 has quit IRC | 17:25 | |
*** dvarga has joined #openstack-dev | 17:25 | |
*** wfoster is now known as wfoster_away | 17:26 | |
*** vartom11 has joined #openstack-dev | 17:26 | |
*** markmcclain has quit IRC | 17:27 | |
*** dolphm has quit IRC | 17:27 | |
*** markmcclain has joined #openstack-dev | 17:28 | |
*** vipul is now known as vipul-away | 17:30 | |
*** vipul-away is now known as vipul | 17:31 | |
*** pcm__ has joined #openstack-dev | 17:31 | |
*** angdraug has quit IRC | 17:32 | |
*** armax has joined #openstack-dev | 17:32 | |
*** HenryG_ has joined #openstack-dev | 17:33 | |
*** pasquier-s has joined #openstack-dev | 17:34 | |
*** pcm_ has quit IRC | 17:34 | |
*** bauzas has joined #openstack-dev | 17:35 | |
*** freedomhui has quit IRC | 17:35 | |
*** HenryG has quit IRC | 17:36 | |
*** SergeyLukjanov has quit IRC | 17:42 | |
*** markmcclain has quit IRC | 17:43 | |
*** SergeyLukjanov has joined #openstack-dev | 17:44 | |
*** comay has joined #openstack-dev | 17:47 | |
*** jbresnah has quit IRC | 17:48 | |
*** Mandell has joined #openstack-dev | 17:50 | |
*** rfolco has quit IRC | 17:50 | |
*** waa_ has joined #openstack-dev | 17:52 | |
*** boris-42 has joined #openstack-dev | 17:53 | |
*** radez is now known as radez_g0n3 | 17:54 | |
*** Max_ has joined #openstack-dev | 17:55 | |
*** angdraug has joined #openstack-dev | 17:56 | |
*** networkstatic has quit IRC | 17:56 | |
*** radez_g0n3 is now known as radez | 17:56 | |
*** markmcclain1 has joined #openstack-dev | 17:57 | |
*** otherwiseguy has quit IRC | 17:58 | |
*** martines has quit IRC | 17:59 | |
*** nati_ueno has joined #openstack-dev | 18:00 | |
*** eglynn has joined #openstack-dev | 18:00 | |
*** jecarey has quit IRC | 18:01 | |
*** bswartz has joined #openstack-dev | 18:03 | |
*** ctlaugh has quit IRC | 18:03 | |
*** amohn9 has joined #openstack-dev | 18:04 | |
*** martine_ has quit IRC | 18:04 | |
*** adjohn has joined #openstack-dev | 18:05 | |
*** BobBall is now known as BobBallAway | 18:06 | |
*** salv-orlando has quit IRC | 18:06 | |
*** adjohn has quit IRC | 18:07 | |
*** networkstatic has joined #openstack-dev | 18:07 | |
*** adjohn has joined #openstack-dev | 18:08 | |
*** adjohn has quit IRC | 18:08 | |
*** herndon has quit IRC | 18:08 | |
*** ctlaugh has joined #openstack-dev | 18:09 | |
*** adjohn has joined #openstack-dev | 18:09 | |
*** tkammer has quit IRC | 18:11 | |
morganfainberg | bknudson, ping | 18:11 |
*** pmathews has joined #openstack-dev | 18:12 | |
*** ruhe has joined #openstack-dev | 18:12 | |
*** cdub has joined #openstack-dev | 18:13 | |
*** DennyZhang has joined #openstack-dev | 18:14 | |
*** utlemming has quit IRC | 18:15 | |
bknudson | morganfainberg: pong | 18:15 |
morganfainberg | bknudson, you're a bit more familiar with SQLAlchemy than I am. | 18:16 |
morganfainberg | bknudson, when it comes to dealing with the JsonBlob RowProxy stuff, what is the best way to just overwrite what was originally in that column>? | 18:16 |
morganfainberg | use a direct update SQL construction w/ .execute()? | 18:16 |
morganfainberg | or is there a more elegant (e.g. row.extra = value) example | 18:17 |
bknudson | morganfainberg: is this in a migration? | 18:17 |
morganfainberg | bknudson, yes | 18:17 |
*** xga has quit IRC | 18:17 | |
morganfainberg | bknudson, https://review.openstack.org/#/c/46207/5/keystone/common/sql/migrate_repo/versions/034_add_default_project_id_column_to_user.py | 18:17 |
bknudson | I don't have a problem with direct SQL update in a migration | 18:17 |
morganfainberg | bknudson, i am thinking that is going to be the easiest mechanism | 18:17 |
morganfainberg | direct SQL that is | 18:17 |
bknudson | SQLAlchemy can generate the UPDATE SQL too | 18:18 |
morganfainberg | bknudson, hrm. | 18:18 |
*** xmltok has joined #openstack-dev | 18:18 | |
*** utlemming has joined #openstack-dev | 18:18 | |
bknudson | morganfainberg: http://docs.sqlalchemy.org/en/rel_0_7/core/tutorial.html#inserts-and-updates | 18:18 |
morganfainberg | bknudson, ah ok, that probably will work better. | 18:19 |
bknudson | it's really not much different than the update string, but sqlalchemy can do the bind parameters easily | 18:19 |
morganfainberg | right | 18:19 |
morganfainberg | bknudson, i am assuming i'll need to do a json.dumps() to use the .update() right? | 18:19 |
*** jecarey has joined #openstack-dev | 18:20 | |
bknudson | morganfainberg: I would think so. wouldn't expect sqlalchemy to understand JSON. | 18:20 |
*** utlemming has quit IRC | 18:20 | |
morganfainberg | bknudson, makes sense. | 18:20 |
bknudson | sql-json-alchemy | 18:20 |
morganfainberg | bknudson, LOL | 18:20 |
morganfainberg | thanks :) | 18:20 |
morganfainberg | it was a bit late when i was looking at that last night, just went crosseyed and said screw it, will od this tomorrow | 18:20 |
*** Ryan_Lane has quit IRC | 18:22 | |
*** afazekas is now known as afazekas_zz | 18:23 | |
*** maheshp has joined #openstack-dev | 18:26 | |
*** dolphm has joined #openstack-dev | 18:28 | |
*** Ryan_Lane has joined #openstack-dev | 18:28 | |
*** kenperkins has joined #openstack-dev | 18:28 | |
*** Mandell has quit IRC | 18:28 | |
*** vipul is now known as vipul-away | 18:30 | |
*** morazi has quit IRC | 18:30 | |
*** melwitt has joined #openstack-dev | 18:31 | |
*** clayb has joined #openstack-dev | 18:32 | |
*** galstrom_zzz is now known as galstrom | 18:32 | |
*** dolphm has quit IRC | 18:32 | |
*** larsks has quit IRC | 18:32 | |
*** larsks has joined #openstack-dev | 18:34 | |
*** mlavalle has quit IRC | 18:34 | |
*** yolanda has quit IRC | 18:35 | |
*** utlemming has joined #openstack-dev | 18:36 | |
atiwari | morganfainberg, can you please tell me how to fix the tempest issue occurring in https://review.openstack.org/#/c/46123/ due to my fix? | 18:36 |
atiwari | it seems circular dependency | 18:36 |
morganfainberg | atiwari, it might be something where the tempest test needs to be disabled/committed as disabled and then your fix, then re-enabled w/ fixes | 18:37 |
*** vipul-away is now known as vipul | 18:37 | |
morganfainberg | atiwari, i think #openstack-qa (checking on channel name) is likely a better place to ask, i haven't committed a change to tempest before | 18:38 |
*** carl_baldwin has quit IRC | 18:38 | |
atiwari | ok | 18:38 |
atiwari | let me see | 18:38 |
*** mattmalesky has quit IRC | 18:38 | |
ayoung | bknudson, morganfainberg, https://review.openstack.org/46334 does that approach seem sane? | 18:38 |
ayoung | stevemar, https://review.openstack.org/46334 | 18:39 |
*** kenperkins has quit IRC | 18:39 | |
*** atiwari has quit IRC | 18:39 | |
morganfainberg | ayoung, make it so the Manager is only instatiated in the router when used? | 18:39 |
morganfainberg | ayoung, if i'm reading this right | 18:39 |
stevemar | ayoung: lookin | 18:39 |
*** cdub has quit IRC | 18:39 | |
*** atiwari has joined #openstack-dev | 18:40 | |
ayoung | morganfainberg, yep | 18:40 |
ayoung | morganfainberg, it is the change in service.py that I want to make sure I have right | 18:40 |
*** ndipanov has quit IRC | 18:41 | |
morganfainberg | ayoung, oh oh, this isn't complete :P | 18:41 |
ayoung | henrynash, ^^ the forward resolution is your work. Does moving it as ^^ make sense? | 18:41 |
morganfainberg | ayoung, i was confused for a moment | 18:41 |
ayoung | morganfainberg, what is missing? | 18:41 |
morganfainberg | ayoung, the last file was empty. | 18:41 |
morganfainberg | :P | 18:41 |
ayoung | ? | 18:42 |
morganfainberg | keystone/tests/keystone.db | 18:42 |
stevemar | morganfainberg i dont think gerrit can render the last file | 18:42 |
ayoung | morganfainberg, ah..that is garbage. git error | 18:42 |
morganfainberg | yep | 18:42 |
morganfainberg | like i said, was very confused for a moment | 18:42 |
*** rfolco has joined #openstack-dev | 18:42 | |
stevemar | morganfainberg, me too; ayoung it looks good, if jenkins comes back with +1, then i'll +1 it | 18:43 |
*** vartom11 has quit IRC | 18:43 | |
ayoung | morganfainberg, to optimize running the unit tests, I mount a ramdisk over the keystone/tests/tmp dir. But somehow, that db got in there anyway | 18:43 |
henrynash | ayoung: which bit is my work? | 18:43 |
ayoung | henrynash, forward resolution | 18:43 |
stevemar | ayoung: i was surprised you didn't have to change any of the 'paste magic' | 18:43 |
ayoung | henrynash, see https://review.openstack.org/#/c/46334/ | 18:44 |
henrynash | ayoung: don't think I did that... | 18:44 |
ayoung | henrynash, I moved that call to later in the file...once per app creation | 18:44 |
ayoung | bknudson, it was you, not henrynash | 18:45 |
*** morazi has joined #openstack-dev | 18:45 | |
morganfainberg | ayoung, I don't think that looks inherently wrong. does mod_wsgi call the public app factory in service? if so that is likely good. | 18:45 |
henrynash | ayoung: henrynash stops scratching head and looking at tea-leaves | 18:45 |
ayoung | its forcing the packages to pull in oauth, which is not necessarily packaged. Since that is an optional extension, the RPM/DEB should not depend on oauth | 18:47 |
morganfainberg | ayoung, i don't see anything really wrong with that approach if bknudson says forward resolution looks good (my concern of httpd is gone as i look at the code outside of gerrit) | 18:47 |
morganfainberg | i am a fan of that :) | 18:47 |
*** carl_baldwin has joined #openstack-dev | 18:48 | |
ayoung | yeah, would like to test in httpd | 18:48 |
*** yolanda has joined #openstack-dev | 18:49 | |
*** xxiao is now known as ausjke | 18:50 | |
*** yolanda has quit IRC | 18:52 | |
*** mkollaro has quit IRC | 18:53 | |
*** novas0x2a|laptop has joined #openstack-dev | 18:54 | |
*** carl_baldwin has quit IRC | 18:54 | |
*** boden_ has joined #openstack-dev | 18:54 | |
*** boden has quit IRC | 18:55 | |
*** lnxnut_ has joined #openstack-dev | 18:56 | |
*** dolphm has joined #openstack-dev | 18:56 | |
*** bswrchrd_ has joined #openstack-dev | 18:56 | |
*** egallen has quit IRC | 18:57 | |
ayoung | grr...something is messing up ENV passing to my client. | 18:58 |
ayoung | $ nova list | grep ayoungERROR: You must provide a username via either --os-username or env[OS_USERNAME] | 18:58 |
ayoung | but | 18:58 |
*** asavu has joined #openstack-dev | 18:59 | |
ayoung | [ayoung@ayoung530 rsshexec (master)]$ nova --os_password=$OS_PASSWORD --os-username=$OS_USERNAME --os-auth-url=$OS_AUTH_URL --os-tenant-name=IdM list | grep ayoung | 18:59 |
*** bswrchrd has quit IRC | 18:59 | |
*** dubsquared has quit IRC | 19:00 | |
*** dubsquared has joined #openstack-dev | 19:01 | |
*** davi67232 has joined #openstack-dev | 19:01 | |
bknudson | ayoung: changes in https://review.openstack.org/#/c/46334/2/keystone/service.py look ok to me. I assume endpoint_filter/routers.py add_routes gets called when paste stuff initializes it... | 19:02 |
bknudson | then the manager gets built. | 19:02 |
*** bswrchrd has joined #openstack-dev | 19:03 | |
*** egallen has joined #openstack-dev | 19:03 | |
bknudson | I don't think you technically have to make the change to dependency.resolve_future_dependencies(), since there wouldn't be circular/future dependencies to handle at that point? | 19:03 |
ayoung | bknudson, yeah. that is called from either bin/keystone-all or the httpd/keystone.py | 19:03 |
ayoung | bknudson, unit tests fail if I don' | 19:04 |
ayoung | t | 19:04 |
dolphm | what is resolve_future_dependencies() ? | 19:04 |
ayoung | it tries to resolve them there, and that somehow trips on the oauth one | 19:04 |
*** kbrierly has quit IRC | 19:05 | |
ayoung | dolphm, it was a circular dependncy hack due to identity and assignments depending on each other | 19:05 |
bknudson | dolphm: we have a circular dependency between assignment and identity | 19:05 |
*** changbl has joined #openstack-dev | 19:05 | |
*** mlavalle has joined #openstack-dev | 19:05 | |
* ayoung would like to get rid of that, too. but in icehouse | 19:05 | |
dolphm | ayoung: why did you extend the factory method? | 19:05 |
dolphm | didn't* | 19:05 |
*** bswrchrd_ has quit IRC | 19:05 | |
*** kbrierly has joined #openstack-dev | 19:05 | |
bknudson | dolphm: so when identity is created, it has a @depends on assignment, but assignment isn't there yet | 19:05 |
*** herndon has joined #openstack-dev | 19:06 | |
ayoung | oauth dependency still wrecking things | 19:06 |
bknudson | so I made a change to "queue up" the assignment dependency injection until later, and "later" is resolve_future_dependencies() | 19:06 |
ayoung | http://logs.openstack.org/34/46334/2/check/gate-tempest-devstack-vm-full/c535616/logs/screen-key.txt.gz | 19:06 |
*** Max_ has quit IRC | 19:06 | |
bknudson | ayoung: what's got the dependency on oauth_api? | 19:07 |
ayoung | bknudson, that is what I am trying to figure out... | 19:07 |
*** egallen has quit IRC | 19:07 | |
dolphm | bknudson: token provider or something | 19:07 |
dolphm | stevemar: ^ | 19:07 |
bknudson | so as soon as that gets imported then it's going to have a dependency on the provider of oauth_api | 19:08 |
*** egallen has joined #openstack-dev | 19:08 | |
*** ruhe has quit IRC | 19:08 | |
stevemar | dolphm, ayoung: yeah, in the token provider, let me double check if else where | 19:08 |
bknudson | ./token/providers/uuid.py:@dependency.requires('token_api', 'identity_api', 'catalog_api', 'oauth_api') | 19:09 |
bknudson | ./auth/plugins/oauth1.py:@dependency.requires('oauth_api') | 19:09 |
ayoung | stevemar, ugh! | 19:09 |
*** jvrbanac_1 has joined #openstack-dev | 19:09 | |
*** jbresnah has joined #openstack-dev | 19:09 | |
*** jvrbanac_1 has quit IRC | 19:09 | |
bknudson | can we have some kind of optional requirement? | 19:09 |
bknudson | yes, that totally makes sense. | 19:10 |
bknudson | optional dependency | 19:10 |
*** jprovazn has quit IRC | 19:11 | |
dolphm | +1 for optional requirement | 19:11 |
bknudson | maybe we need a new token provider that also has the oauth stuff. | 19:11 |
*** jvrbanac has quit IRC | 19:11 | |
ayoung | bknudson, that feels wrong. | 19:11 |
*** martine has joined #openstack-dev | 19:11 | |
ayoung | its more like a pipeline...the rest of the provider should be the same... | 19:11 |
dolphm | @dependency.you_know_if_its_cool_with_you_thatd_be_nice_thanks('oauth_api') | 19:12 |
ayoung | heh | 19:12 |
*** martine is now known as Guest78534 | 19:12 | |
dolphm | technically provider is pluggable, right? | 19:12 |
*** fbo_away is now known as fbo | 19:12 | |
dolphm | so, a simple solution could be extending the provider with an implementation that requires oauth | 19:12 |
ayoung | dolphm, yeah, but not to this degree of granularity | 19:13 |
ayoung | it would pass the test, but then fail when it got to these code paths..but then, maybe that is ok | 19:13 |
atiwari | ayoung, do you know how to deal with situation where tempest test is broken due to your change? | 19:13 |
atiwari | https://review.openstack.org/#/c/46123 | 19:13 |
zul | dolphm: ping | 19:14 |
ayoung | atiwari, submit a change to tempest disabling that test | 19:14 |
ayoung | then submit your change to keystone | 19:14 |
dolphm | ayoung: you're right, i'm poking around now... and it looks like a significant refactor | 19:14 |
dolphm | zul: pong | 19:14 |
*** Mandell has joined #openstack-dev | 19:14 | |
bknudson | or change our token provider to have optional requirement that can be fulfilled if it's actually there (when resolve_future_dependencies()) | 19:15 |
atiwari | ok | 19:15 |
zul | dolphm: we have some concerns about the usage of oauth2 in keystone | 19:15 |
ayoung | and finally resubmit a change to tempest to add a new test | 19:15 |
ayoung | zul, it is supposed to be disabled by default, but we have some code issues that pull it in as a package dependency | 19:15 |
atiwari | this what I got from QA folks "<dkranz> atiwari: If you want to do this you have to temporarily change tempest so that it will pass with either the old or new version" | 19:16 |
zul | ayoung: yeah dpkg pulls it in as a dependency when it gets built unless you patch it out which is not great | 19:16 |
ayoung | dolphm, the only place where self.oauth is referenced is if oauth is in the method names...I can add a if None check in there that will jjust fail...I might be able to make it work without too much refactoring | 19:16 |
ayoung | zul, working on it | 19:17 |
zul | ayoung: cool thanks | 19:17 |
zul | ayoung/dolphm: i opened up a bug with the issues we have with oauth2 being used in the first place | 19:18 |
zul | https://bugs.launchpad.net/keystone/+bug/1224638 | 19:18 |
uvirtbot | Launchpad bug 1224638 in keystone "Consider not using oauth2" [Undecided,New] | 19:18 |
*** salv-orlando has joined #openstack-dev | 19:18 | |
*** otherwiseguy has joined #openstack-dev | 19:18 | |
dolphm | zul: do you have an alternative suggestion, other than 'do not use' ? | 19:19 |
*** jprovazn has joined #openstack-dev | 19:19 | |
zul | dolphm: i mentioned oauthlib in the bug report | 19:19 |
*** jprovazn has quit IRC | 19:19 | |
dolphm | zul: as ayoung said, it should be optional so if ubuntu doesn't want to support oauth in havana, that would be fine | 19:21 |
zul | ack | 19:21 |
*** davi67232 has quit IRC | 19:21 | |
*** gimps_ has quit IRC | 19:21 | |
dolphm | stevemar: ^ what was the blocker with oauthlib? | 19:23 |
stevemar | dolphm: iirc it was poor server side support | 19:23 |
*** vipul is now known as vipul-away | 19:23 | |
*** vipul-away is now known as vipul | 19:23 | |
*** kbrierly has quit IRC | 19:24 | |
*** jbresnah has quit IRC | 19:24 | |
*** amohn9 has quit IRC | 19:25 | |
*** kbrierly has joined #openstack-dev | 19:26 | |
*** Max_ has joined #openstack-dev | 19:28 | |
*** alop_ has joined #openstack-dev | 19:28 | |
*** alop has quit IRC | 19:28 | |
*** alop_ is now known as alop | 19:28 | |
*** gyee has quit IRC | 19:29 | |
prometheanfire | dolphm: any chance we can get patches backported for stable/grizzly and stable/folsom for https://bugs.launchpad.net/ossn/+bug/1179955 CVE-2013-4222 | 19:29 |
uvirtbot | prometheanfire: ** RESERVED ** This candidate has been reserved by an organization or individual that will use it when announcing a new security problem. When the candidate has been publicized, the details for this candidate will be provided. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4222) | 19:29 |
uvirtbot | Launchpad bug 1179955 in ossn "Disabling a tenant would not disable a user token" [High,Fix released] | 19:29 |
*** amohn9 has joined #openstack-dev | 19:29 | |
*** alunduil has quit IRC | 19:30 | |
*** Max__ has joined #openstack-dev | 19:30 | |
*** kbrierly has quit IRC | 19:31 | |
*** alexpilotti has quit IRC | 19:32 | |
*** gordc has quit IRC | 19:32 | |
*** Max_ has quit IRC | 19:32 | |
*** dvarga has quit IRC | 19:33 | |
*** morazi has quit IRC | 19:33 | |
*** SumitNaiksatam has quit IRC | 19:34 | |
*** kushal has quit IRC | 19:35 | |
*** Ryan_Lane has quit IRC | 19:36 | |
*** waa_ has quit IRC | 19:36 | |
*** dolphm has quit IRC | 19:36 | |
*** davi67232 has joined #openstack-dev | 19:37 | |
*** vipul is now known as vipul-away | 19:38 | |
*** SumitNaiksatam has joined #openstack-dev | 19:38 | |
*** dolphm has joined #openstack-dev | 19:38 | |
ayoung | dolphm, I think I have it. We'll need to document that, in order to get oauth1 working, you need to set the token provider value in the paste config | 19:39 |
ayoung | testing now | 19:39 |
*** slagle has quit IRC | 19:40 | |
dolphm | ayoung: set it to what? | 19:40 |
dolphm | ayoung: OAuth1CapableProvider or something? | 19:40 |
*** shinylasers has joined #openstack-dev | 19:41 | |
ayoung | dolphm, I made two...token.providers.uuid.OAUTHPRovider and a PKI one | 19:41 |
*** davi67232 has quit IRC | 19:42 | |
bknudson | we're going to have an n*n explosion of providers | 19:42 |
dolphm | wasn't there already a pki.Provider? | 19:42 |
*** kbrierly has joined #openstack-dev | 19:42 | |
ayoung | dolphm, I would not say this is a permanent solution, just one for Havana | 19:43 |
*** rwsu has quit IRC | 19:44 | |
*** adalbas has quit IRC | 19:44 | |
*** zul has quit IRC | 19:45 | |
prometheanfire | dolphm: can I at least get confirmation that that bug effects folsom/grizzly? | 19:45 |
*** dvarga has joined #openstack-dev | 19:45 | |
ayoung | bknudson, yeah, I would say that the right solution would be to do the optional thing you suggested... | 19:45 |
ayoung | prometheanfire, doesn't affect folsom | 19:45 |
prometheanfire | well, that's good :D | 19:46 |
ayoung | uuid tokens are the default there | 19:46 |
bknudson | ayoung: you want me to code up the optional support in dependency? | 19:46 |
*** adalbas has joined #openstack-dev | 19:46 | |
ayoung | and they are automatically disabled if the tenant is disabled | 19:46 |
bknudson | there's unit tests so should not be a big effort | 19:46 |
ayoung | prometheanfire, it is an issue in grizzly | 19:46 |
ayoung | bknudson, maybe...not 100% certain that it is the right solution. | 19:47 |
prometheanfire | ok, I can update our bug with that at least | 19:47 |
*** jecarey has quit IRC | 19:49 | |
*** dvarga has quit IRC | 19:49 | |
*** morazi has joined #openstack-dev | 19:50 | |
dolphm | prometheanfire: which bug? | 19:53 |
prometheanfire | https://bugs.launchpad.net/ossn/+bug/1179955 | 19:53 |
uvirtbot | Launchpad bug 1179955 in ossn "Disabling a tenant would not disable a user token" [High,Fix released] | 19:53 |
prometheanfire | just grizzly it looks like as well | 19:53 |
*** SergeyLukjanov has quit IRC | 19:54 | |
*** DennyZhang has quit IRC | 19:55 | |
dolphm | prometheanfire: i'm actually not sure... the v2 tests can be backported to check | 19:56 |
ayoung | bknudson, it seems backwards. We should n't have to tell the token provider about the oauth extension....the way it is in my patch, it is disabled code. That is wrong, too. Ir should be a pipeline specified in paste, or something. Thinking about building something like this out of tree. | 19:56 |
*** jvrbanac has joined #openstack-dev | 19:57 | |
bknudson | the OAuth stuff could insert itself into token when it gets loaded. | 19:57 |
*** romcheg has joined #openstack-dev | 19:57 | |
*** romcheg has left #openstack-dev | 19:57 | |
dolphm | ayoung: right, everything should be done in the pipeline, but oauth followed the lead of trusts, which also did this wrong | 19:57 |
*** pixelb has quit IRC | 19:57 | |
prometheanfire | dolphm: whatever the case, please comment in the bug so I know what to tell our security team | 19:57 |
dolphm | prometheanfire: i'd like to test it myself before commenting further :) | 19:58 |
prometheanfire | dolphm: thanks for looking into it :D | 19:58 |
*** zul has joined #openstack-dev | 19:59 | |
*** neelashah has quit IRC | 19:59 | |
dolphm | prometheanfire: i'm surprised there's no discussion of folsom/grizzly in the bug | 19:59 |
prometheanfire | ya, kinda surprised me as well | 19:59 |
*** bswrchrd has quit IRC | 20:01 | |
*** pcm__ has quit IRC | 20:01 | |
*** neelashah has joined #openstack-dev | 20:02 | |
*** jcoufal has quit IRC | 20:03 | |
*** HenryG_ has quit IRC | 20:03 | |
*** Max_ has joined #openstack-dev | 20:03 | |
*** SumitNaiksatam has quit IRC | 20:03 | |
*** jecarey has joined #openstack-dev | 20:04 | |
*** ayoung has quit IRC | 20:05 | |
*** epim has joined #openstack-dev | 20:05 | |
*** Max__ has quit IRC | 20:06 | |
*** afazekas_zz has quit IRC | 20:07 | |
stevemar | ayoung: there is along an oauth_api dependency in auth/plugins, not sure if that matters | 20:10 |
sdague | hub_cap: hey, I have one question in the devstack review - https://review.openstack.org/#/c/38169/ | 20:10 |
*** egallen has quit IRC | 20:11 | |
*** jcoufal has joined #openstack-dev | 20:12 | |
hub_cap | sdague: responded | 20:14 |
*** xmltok has quit IRC | 20:15 | |
*** fbo is now known as fbo_away | 20:16 | |
*** shinylasers has quit IRC | 20:17 | |
sdague | hub_cap: ok, approved | 20:18 |
hub_cap | <3<3<3<3<3 | 20:18 |
timello | heh | 20:18 |
sdague | you should also realize that we aren't running exercises in gate runs at the moment, so you probably want to shore things up with a scenario test in tempest in the near future | 20:19 |
*** xmltok has joined #openstack-dev | 20:19 | |
*** topol has quit IRC | 20:19 | |
hub_cap | sdague: next on my list | 20:19 |
sdague | for inspiration, this is what horizon did - https://github.com/openstack/tempest/blob/master/tempest/scenario/test_dashboard_basic_ops.py | 20:20 |
*** shinylasers has joined #openstack-dev | 20:20 | |
hub_cap | thx | 20:20 |
sdague | hub_cap: cool | 20:20 |
*** sandywalsh has quit IRC | 20:20 | |
*** jruzicka has quit IRC | 20:20 | |
*** noslzzp has quit IRC | 20:21 | |
*** maheshp has quit IRC | 20:21 | |
*** Max_ has quit IRC | 20:24 | |
*** Max_ has joined #openstack-dev | 20:25 | |
*** dprince has quit IRC | 20:28 | |
*** edmund1 has joined #openstack-dev | 20:29 | |
*** edmund has quit IRC | 20:29 | |
*** lnxnut_ has quit IRC | 20:30 | |
*** networkstatic has quit IRC | 20:32 | |
*** sheepdog80 has quit IRC | 20:37 | |
*** shinylasers has quit IRC | 20:38 | |
*** rizzpatel has joined #openstack-dev | 20:41 | |
rizzpatel | fHi | 20:41 |
rizzpatel | Are there any mods/dev members here? Goit a question | 20:42 |
rizzpatel | Quick one,v ery quick. | 20:42 |
*** shinylasers has joined #openstack-dev | 20:42 | |
*** vipul-away is now known as vipul | 20:42 | |
*** martines has joined #openstack-dev | 20:42 | |
prometheanfire | rizzpatel: don't ask to ask :p | 20:43 |
*** Ryan_Lane has joined #openstack-dev | 20:43 | |
*** Ryan_Lane has quit IRC | 20:43 | |
*** Ryan_Lane has joined #openstack-dev | 20:43 | |
rizzpatel | ha ha | 20:44 |
rizzpatel | Sounds good, ring ring | 20:44 |
rizzpatel | Well ok. Here it is | 20:44 |
rizzpatel | I figured out a method to reverting back to previous snapshots in OpenStack | 20:44 |
rizzpatel | I am going to make some mods to OpenStack so that it's part of the website and so we can do it all on the page | 20:45 |
rizzpatel | But, is there any reason that OpenStack would be against this? | 20:45 |
rizzpatel | I don't want to post the mod and get banned or something for messing with their code. If that's the case I will keep it private | 20:45 |
*** networkstatic has joined #openstack-dev | 20:46 | |
sdake | rizzpatel only way to find out is submit a change : https://wiki.openstack.org/wiki/Gerrit_Workflow | 20:47 |
prometheanfire | openstack is apache licenced | 20:47 |
prometheanfire | you can change the code if you follow the licence, getting it upstreamed is another question :P | 20:47 |
rizzpatel | Alright cool! | 20:48 |
rizzpatel | I dont really care if it gets committed, but I mean at least the option will be out there for anyone to try | 20:48 |
rizzpatel | Great guys, sdake thanks for the link too, cheers | 20:48 |
rizzpatel | Is nobody wondering HOW?!?!?!? | 20:48 |
rizzpatel | LOL :-) | 20:48 |
*** rizzpatel has quit IRC | 20:49 | |
prometheanfire | too tired :P | 20:49 |
*** tmclaugh[work] has quit IRC | 20:50 | |
*** maheshp has joined #openstack-dev | 20:52 | |
*** radsy has joined #openstack-dev | 20:53 | |
*** mlavalle_ has joined #openstack-dev | 20:55 | |
*** mlavalle has quit IRC | 20:56 | |
*** mlavalle_ is now known as mlavalle | 20:56 | |
*** neelashah has quit IRC | 20:56 | |
*** edmund1 has quit IRC | 20:58 | |
*** radez is now known as radez_g0n3 | 20:58 | |
*** alunduil has joined #openstack-dev | 21:01 | |
*** davi67232 has joined #openstack-dev | 21:02 | |
*** edmund has joined #openstack-dev | 21:03 | |
*** rfolco has quit IRC | 21:04 | |
*** neelashah has joined #openstack-dev | 21:05 | |
*** bashok has quit IRC | 21:05 | |
*** welldannit has joined #openstack-dev | 21:07 | |
*** gyee has joined #openstack-dev | 21:08 | |
*** dmakogon_ has joined #openstack-dev | 21:09 | |
*** johnthetubaguy has joined #openstack-dev | 21:10 | |
*** henrynash has quit IRC | 21:10 | |
*** jayg is now known as jayg|g0n3 | 21:12 | |
*** sheepdog80 has joined #openstack-dev | 21:13 | |
*** gargya has joined #openstack-dev | 21:15 | |
*** kenperkins has joined #openstack-dev | 21:17 | |
*** davi67232 has quit IRC | 21:17 | |
*** Max_ has quit IRC | 21:17 | |
*** Max_ has joined #openstack-dev | 21:18 | |
*** maheshp has quit IRC | 21:21 | |
*** maheshp has joined #openstack-dev | 21:21 | |
*** dkranz has quit IRC | 21:21 | |
*** kenperkins has quit IRC | 21:22 | |
*** spzala has quit IRC | 21:22 | |
*** gargya has quit IRC | 21:24 | |
*** vinayvenkat has joined #openstack-dev | 21:24 | |
*** vinayvenkat has left #openstack-dev | 21:25 | |
*** dubsquared has quit IRC | 21:26 | |
*** senk has joined #openstack-dev | 21:26 | |
*** egallen has joined #openstack-dev | 21:27 | |
*** senk has quit IRC | 21:28 | |
*** kbringard has quit IRC | 21:32 | |
*** boden_ has quit IRC | 21:33 | |
*** bswartz has quit IRC | 21:34 | |
*** maheshp has quit IRC | 21:34 | |
*** davi67232 has joined #openstack-dev | 21:35 | |
*** donaldh has joined #openstack-dev | 21:36 | |
*** pixelb has joined #openstack-dev | 21:37 | |
*** johnthetubaguy has quit IRC | 21:37 | |
*** asavu has quit IRC | 21:37 | |
*** johnthetubaguy has joined #openstack-dev | 21:37 | |
*** martyntaylor has quit IRC | 21:38 | |
*** shang has quit IRC | 21:38 | |
*** spzala has joined #openstack-dev | 21:41 | |
*** Guest78534 has quit IRC | 21:42 | |
*** markmcclain1 has quit IRC | 21:42 | |
*** johnthetubaguy has quit IRC | 21:43 | |
*** davi67232 has quit IRC | 21:44 | |
*** FunnyLookinHat has quit IRC | 21:48 | |
*** FunnyLookinHat has joined #openstack-dev | 21:48 | |
*** eglynn has quit IRC | 21:49 | |
*** Max_ has quit IRC | 21:49 | |
*** d34dh0r53 has joined #openstack-dev | 21:49 | |
*** Max_ has joined #openstack-dev | 21:49 | |
prometheanfire | has anyone tested neutron 2013.1 (stable/grizzly branch) with pyparsing 2.0.1? | 21:49 |
prometheanfire | and can anyone run tests, I don't have a system set up for it atm :( | 21:50 |
*** d34dh0r53 has quit IRC | 21:51 | |
*** shinylasers has quit IRC | 21:52 | |
*** henrynash has joined #openstack-dev | 21:52 | |
*** shinylasers has joined #openstack-dev | 21:53 | |
*** stevemar has quit IRC | 21:54 | |
*** davi67232 has joined #openstack-dev | 21:56 | |
*** dubsquared has joined #openstack-dev | 21:56 | |
*** shanewang has quit IRC | 21:57 | |
*** boris-42 has quit IRC | 21:57 | |
*** changbl has quit IRC | 22:00 | |
*** shanewang has joined #openstack-dev | 22:00 | |
*** vuil has joined #openstack-dev | 22:02 | |
*** spzala has quit IRC | 22:04 | |
*** dubsquared has quit IRC | 22:04 | |
dolphm | prometheanfire: not finish but in case i have to run away before i'm done ... https://review.openstack.org/#/c/46371/ | 22:05 |
*** vuil has quit IRC | 22:05 | |
*** bill has joined #openstack-dev | 22:05 | |
*** bill is now known as Guest47904 | 22:05 | |
dolphm | prometheanfire: the fix is correct there, AFAIK, but the tests are broken due to some refactor between grizzly and master | 22:05 |
prometheanfire | ok, I'll probably pull that patch | 22:06 |
prometheanfire | dolphm: thanks :D | 22:06 |
*** alunduil has quit IRC | 22:06 | |
dolphm | prometheanfire: tests are failing though, so don't pull them! | 22:06 |
*** neelashah has quit IRC | 22:07 | |
*** alunduil has joined #openstack-dev | 22:07 | |
prometheanfire | oh, BOO | 22:08 |
*** armax has quit IRC | 22:09 | |
*** kbrierly has quit IRC | 22:10 | |
*** Guest47904 has quit IRC | 22:10 | |
*** BStokes has joined #openstack-dev | 22:10 | |
prometheanfire | dolphm: well, let me know what to do :P | 22:12 |
*** mkollaro has joined #openstack-dev | 22:12 | |
dolphm | prometheanfire: i'm trying to figure out a solution | 22:12 |
prometheanfire | dolphm: I was told that this bug did not effect folsom | 22:12 |
insanida1e | anyone using eclipse for debugging ? I need a quick help on this. | 22:12 |
prometheanfire | 14:46 < ayoung > prometheanfire, doesn't affect folsom | 22:12 |
prometheanfire | dolphm: ij LD | 22:13 |
prometheanfire | ok :D | 22:13 |
*** lifeless_ has joined #openstack-dev | 22:13 | |
dolphm | prometheanfire: i haven't tested folsom yet | 22:13 |
dolphm | prometheanfire: but i don't see why it *wouldn't* affect folsom | 22:13 |
*** jbresnah has joined #openstack-dev | 22:14 | |
prometheanfire | ok, fair enough | 22:14 |
prometheanfire | ok, time to go home | 22:14 |
dolphm | prometheanfire: o/ | 22:14 |
*** lifeless has quit IRC | 22:15 | |
*** jvrbanac has quit IRC | 22:15 | |
*** amohn9 has quit IRC | 22:17 | |
*** carl_baldwin has joined #openstack-dev | 22:17 | |
*** lifeless_ is now known as lifeless | 22:18 | |
*** networkstatic has quit IRC | 22:19 | |
*** jbresnah has quit IRC | 22:20 | |
bknudson | dolphm: I've got some more cleanup for https://review.openstack.org/#/c/45937/ | 22:20 |
*** jbresnah has joined #openstack-dev | 22:21 | |
bknudson | what's better, upload new review or update the existing review? (or I could make a comment and you can do it...) | 22:21 |
bknudson | it just fixes the SQLAlchemy-migrate reference | 22:22 |
dolphm | bknudson: up to you? i'm fine if you revise my review | 22:22 |
*** insanida1e has quit IRC | 22:22 | |
*** insanidade has joined #openstack-dev | 22:22 | |
*** pixelb has quit IRC | 22:23 | |
*** jcoufal has quit IRC | 22:24 | |
bknudson | dolphm: updated. https://review.openstack.org/#/c/45937/ now I don't know if I can +2 it. | 22:24 |
dolphm | bknudson: was it a significant change? | 22:24 |
bknudson | dolphm: I don't think so. It's documentation to begin with. | 22:25 |
dolphm | bknudson: did you mean to include the " to migrate" again? | 22:25 |
bknudson | dolphm: no, I didn't. I didn't realize that was on the same line. I'll fix it. | 22:26 |
bknudson | dolphm: ok, I tried it locally and the link works. | 22:27 |
*** flaper87 is now known as flaper87|afk | 22:28 | |
*** atiwari has quit IRC | 22:29 | |
*** jvrbanac has joined #openstack-dev | 22:29 | |
*** zoresvit has joined #openstack-dev | 22:29 | |
*** markmcclain has joined #openstack-dev | 22:30 | |
zoresvit | Hello. Could anyone give a hint on how to set up GitHub to reject direct pushes and show message to use gerrit (like it's done in OpenStack). I need to set up similar thing for GitHub Enterprise. | 22:30 |
dolphm | bknudson: so, this is where etiquette kicks in, IMO. I +1'd to ack your change, but you didn't change much, so i don't think anyone would take issue if you +2'd | 22:31 |
dolphm | bknudson: it still needs a second +2 | 22:31 |
dolphm | zoresvit: ask in #openstack-infra | 22:32 |
*** stevemar has joined #openstack-dev | 22:32 | |
dolphm | zoresvit: i would guess it's just a pull request hook + making a comment through the api | 22:33 |
*** dmakogon_ has quit IRC | 22:34 | |
*** bdpayne has quit IRC | 22:36 | |
*** jhesketh has joined #openstack-dev | 22:37 | |
*** FunnyLookinHat has quit IRC | 22:38 | |
*** thedodd has quit IRC | 22:38 | |
*** mrodden1 has quit IRC | 22:39 | |
zoresvit | dolphm: You've made a discover for me (Repo Hooks API) :) I'm not a Jedi user of GitHub yet. Thanks a lot! | 22:39 |
zoresvit | dlp | 22:40 |
dolphm | zoresvit: they are quite useful :) but there's way more jedi to be found in -infra :P | 22:40 |
zoresvit | dolphm: The API should be available in GitHub Enterprise as well, do you know? | 22:40 |
*** lbragstad has quit IRC | 22:41 | |
*** davi67232 has quit IRC | 22:41 | |
dolphm | zoresvit: i don't know personally :/ | 22:41 |
*** galstrom is now known as galstrom_zzz | 22:41 | |
zoresvit | dolphm: Thanks anyway! Will ping -infra for details as well. | 22:42 |
*** jhesketh__ has joined #openstack-dev | 22:42 | |
*** egallen has quit IRC | 22:43 | |
*** otherwiseguy has quit IRC | 22:46 | |
*** armax has joined #openstack-dev | 22:48 | |
*** adjohn has quit IRC | 22:48 | |
*** stevemar has quit IRC | 22:49 | |
dolphm | zoresvit: anytime | 22:49 |
*** Max_ has quit IRC | 22:51 | |
*** davi67232 has joined #openstack-dev | 22:54 | |
*** bdpayne has joined #openstack-dev | 22:55 | |
*** zoresvit has quit IRC | 22:55 | |
*** wolfdreamer has quit IRC | 22:56 | |
*** zoresvit has joined #openstack-dev | 22:56 | |
*** eharney has quit IRC | 22:56 | |
*** jbresnah_ has joined #openstack-dev | 22:56 | |
*** jbresnah has quit IRC | 22:57 | |
*** mrodden has joined #openstack-dev | 23:00 | |
*** asavu has joined #openstack-dev | 23:01 | |
*** wolfdreamer has joined #openstack-dev | 23:01 | |
*** shang has joined #openstack-dev | 23:02 | |
*** davi67232 has quit IRC | 23:02 | |
*** locke105 has joined #openstack-dev | 23:03 | |
*** networkstatic has joined #openstack-dev | 23:05 | |
*** ayoung has joined #openstack-dev | 23:06 | |
*** armax has quit IRC | 23:07 | |
insanidade | any hints on how I could start neutron on eclipse ? I can start and debug horizon but not neutron. | 23:10 |
*** adalbas has quit IRC | 23:11 | |
*** zaneb has joined #openstack-dev | 23:12 | |
*** zbitter has quit IRC | 23:14 | |
*** e1mer has joined #openstack-dev | 23:17 | |
morganfainberg | dolphm, https://review.openstack.org/#/c/46207/ looks like it's going to pass, i'm going to run a couple contrived tests locally to verify the upgrade/downgrade | 23:17 |
*** rcrit has quit IRC | 23:17 | |
dolphm | morganfainberg: looking | 23:18 |
*** rnirmal has quit IRC | 23:18 | |
dolphm | morganfainberg: doing this as one patch makes it difficult to backport | 23:18 |
*** mlavalle has quit IRC | 23:19 | |
morganfainberg | dolphm, you can't really backport this mechanism. you need to write a custom set of code that does the translation inline | 23:19 |
morganfainberg | dolphm, i was going to do that next for grizzly | 23:19 |
dolphm | hrm, alright | 23:19 |
morganfainberg | dolphm, but the code really wont look anything the same. | 23:19 |
morganfainberg | dolphm, since we can't change the schema =/ | 23:20 |
morganfainberg | dolphm, do i need to worry about folsom? or just grizzly? | 23:20 |
*** mrodden has quit IRC | 23:20 | |
*** mrodden has joined #openstack-dev | 23:20 | |
*** donaldh has quit IRC | 23:21 | |
morganfainberg | dolphm, if tyou want 2 patches, one that does it inline, then this as a second restructure for backporting, i can split it out | 23:21 |
*** mrodden has quit IRC | 23:21 | |
morganfainberg | dolphm, erm 2nd restructure for the DB work. i could do that as well. | 23:21 |
*** herndon has quit IRC | 23:22 | |
*** otherwiseguy has joined #openstack-dev | 23:24 | |
*** Mandell has quit IRC | 23:24 | |
dolphm | morganfainberg: v3 didn't exist in folsom | 23:25 |
morganfainberg | dolphm, ah, makes that easy then. | 23:25 |
dolphm | morganfainberg: what was the motivation behind get_project_users -> user_ids? | 23:26 |
*** jbresnah_ has quit IRC | 23:26 | |
morganfainberg | dolphm, so i could support the translation of the default_project_id at the controller/manager level. There was a todo to move it ot the controller, was as easy to move it there as to the manager and cuts down on assignment talking directly to identity | 23:27 |
morganfainberg | dolphm, but we still needed a way to know what user_ids were part of a project | 23:27 |
morganfainberg | erm, had a role within that project? (more accurate description) | 23:27 |
henrynash | dolphm, morganfainberg: not urgent, but when you have a moment, new version of https://review.openstack.org/#/c/45584/ posted | 23:28 |
dolphm | henrynash: sorry, i'm about to run :( will check in tomorrow | 23:28 |
morganfainberg | henrynash, i'll look at it today :) | 23:29 |
*** networkstatic has quit IRC | 23:29 | |
dolphm | morganfainberg: the only thing i don't like in your change is how you handled the version | 23:29 |
henrynash | dolphm: np, that;s why I said not urgent (but morganfainberg get's beer from me :-) ) | 23:29 |
dolphm | :P | 23:29 |
morganfainberg | dolphm, yeah, that felt a little kludgy. | 23:30 |
*** pmathews has quit IRC | 23:30 | |
*** e1mer has quit IRC | 23:30 | |
dolphm | morganfainberg: it shouldn't be an arg in the v3 controller methods, _normalize_default_project_id() should just be implemented in both the v2 and v3 base controllers differently | 23:30 |
*** rcrit has joined #openstack-dev | 23:30 | |
dolphm | morganfainberg: and it looked like the manager was aware of versions too? | 23:30 |
morganfainberg | dolphm yeah i pushed it down to the manager, but i'll move it up to the controller(s) | 23:31 |
morganfainberg | well i'll try to | 23:31 |
morganfainberg | the reason for the manager to be aware is because the manager constructed lists/user stuff behind the scenes | 23:31 |
dolphm | morganfainberg: i think the v3 controller should have to do very little work (if any), but the v2 controllers should have to do some translation | 23:31 |
morganfainberg | the only time this is an issue is if user is embeded in another object | 23:32 |
*** bswartz has joined #openstack-dev | 23:32 | |
morganfainberg | but i guess it only matters at the presentation layer | 23:32 |
morganfainberg | i think i ran into a case where somethine called the identity_api, and built a user ref into something else than went out via a defferent interface in the controller | 23:33 |
*** alop has quit IRC | 23:33 | |
*** e1mer has joined #openstack-dev | 23:33 | |
morganfainberg | vs. the User controller. i'll see if i can make the controller the only thing aware. :) fair point | 23:34 |
prometheanfire | pep8 :D | 23:35 |
*** dolphm has quit IRC | 23:36 | |
*** colinmcnamara has joined #openstack-dev | 23:36 | |
*** wolfdreamer has quit IRC | 23:36 | |
*** READ10 has quit IRC | 23:37 | |
*** edmund has quit IRC | 23:38 | |
*** mrodden has joined #openstack-dev | 23:38 | |
*** asavu has quit IRC | 23:40 | |
*** jdennis1 has quit IRC | 23:40 | |
*** networkstatic has joined #openstack-dev | 23:43 | |
*** spzala has joined #openstack-dev | 23:46 | |
*** larsks has quit IRC | 23:47 | |
*** danwent has quit IRC | 23:48 | |
*** wolfdreamer has joined #openstack-dev | 23:50 | |
*** carl_baldwin has quit IRC | 23:51 | |
*** dims has quit IRC | 23:52 | |
*** henrynash has quit IRC | 23:53 | |
*** stevemar has joined #openstack-dev | 23:53 | |
*** jdennis has joined #openstack-dev | 23:55 | |
*** matiu has quit IRC | 23:56 | |
*** Ryan_Lane has quit IRC | 23:56 | |
*** networkstatic has quit IRC | 23:56 | |
*** xarses has quit IRC | 23:57 | |
*** mkollaro has quit IRC | 23:58 | |
*** shang has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!