Thursday, 2014-01-09

*** nkinder has joined #openstack-dev00:00
_cjones_mf: Sweet. Will do, if not, it can wait until tomorrow.00:00
bknudsonmorganfainberg: got a minute?00:00
morganfainbergbknudson, always00:00
bknudsontake a look at https://review.openstack.org/#/c/64587/2/keystone/identity/backends/kvs.py00:00
morganfainbergok00:01
bknudsondolphm has a comment on 100...00:01
*** yamahata has joined #openstack-dev00:01
bknudsonso we're in the kvs backend, updating user00:01
*** mlavalle has quit IRC00:01
bknudsonthe user dict doesn't have domain_id set.00:01
morganfainbergcorrect.00:01
bknudsonso we don't know what domain they're in.00:01
morganfainbergi thought the user _must_ have a domain_id?00:01
morganfainbergto create the user00:02
bknudsonmorganfainberg: it does not, and I've verified in the debugger.00:02
morganfainbergor it's defaulted to default00:02
morganfainberg"default domain"00:02
bknudsonand this is keystone.tests.test_keystoneclient.KcMasterTestCase.test_user_create_update_delete00:02
morganfainberghm.00:02
bknudsonso this is a user coming from client, not a test thing.00:02
morganfainbergooh00:02
morganfainberghow does SQL handle this?00:03
bknudsonmorganfainberg: so check the caller: http://git.openstack.org/cgit/openstack/keystone/tree/keystone/identity/core.py#n37200:03
bknudsonit does know the domain_id00:03
bknudsonbut it doesn't pass it on.00:03
* morganfainberg grumbles about that "domain" detection code00:03
morganfainbergsec00:04
bknudsonmorganfainberg: this is kind of why I was asking you, seems related to what we've seen before.00:04
morganfainbergit is very related00:04
morganfainberghttp://git.openstack.org/cgit/openstack/keystone/tree/keystone/identity/backends/sql.py#n3100:04
bknudsonfor sql, I'm guessing ID is unique across all domains in the backend so doesn't really care00:04
morganfainbergaccording to SQL domain_id is _not_ optional00:04
bknudsonbut the kvs backend is looking up by name.00:04
morganfainbergi'd enforce that in KVS00:04
morganfainbergso you cannot create a user w/o a domain id.00:05
morganfainbergand user_id is globally unique, so you can look it up and get the domain id00:05
morganfainberglookup by user_name requires a domain_id to do so.00:05
bknudsonmorganfainberg: then the identity manager would have to add domain ID?00:05
*** clayb has quit IRC00:05
bknudsonmorganfainberg: maybe kvs backend needs a lookup of user_id->domain?00:05
morganfainbergbknudson, yeah00:06
bknudsonuser_id->domain_id00:06
morganfainbergthat sounds right00:06
bknudsonlet me look into that.00:06
morganfainbergldap is not domain aware, and SQL requires domain_id00:06
morganfainbergso i think we need to follow SQL's basic premise in this case (e.g. user_id->domain_id)00:06
bknudsonmorganfainberg: kvs has "user_list" -- I could split that up by domain.00:08
morganfainberghm.00:08
bknudsonthe user_id->domain_id lookup would take forever... anything to make kvs more useless.00:09
morganfainbergor make the key the user_id?00:09
morganfainbergin the kvs store00:09
morganfainbergoh00:09
morganfainbergdamn it00:09
morganfainberg...00:09
morganfainberguhm00:09
bknudsonI think it will be self.db.set('user_domain_%s' % user_id, domain_id)00:10
morganfainbergperhaps make a domain set of users in the domain?00:10
bknudsonthen can get user's domain ID with self.db.get('user_domain_%s' % user_id)00:10
morganfainbergdomain = set([user_id, user_id])00:10
morganfainbergoh that might work as well00:10
morganfainbergyeah, either approach i think would be fine00:10
morganfainbergkvs is pretty useless for identity/assignment though00:11
bknudsonI thought you were fixing that?00:11
bknudsonkeep your users in memcache00:11
morganfainbergbknudson, i want to convert over to the dogpile backend00:12
morganfainbergbut that can occur after I200:12
morganfainbergthen could use redis.. or a file... or memcache00:12
morganfainbergor whatever00:12
morganfainbergmongo00:12
bknudsonsql?00:13
morganfainbergSQL and LDAP i think will always be a separate driver00:13
morganfainbergthere are just too many optimisations that can occur outside of a key-value context with them00:13
bknudsonmongo db is web scale00:13
morganfainbergbknudson, "web scale" heh00:13
bknudsonmorganfainberg: https://www.youtube.com/watch?v=b2F-DItXtZs00:14
morganfainbergis that the xtranormal?00:14
bknudsonyes00:14
morganfainberghehehe00:14
*** sthaha has joined #openstack-dev00:15
*** kbrierly has quit IRC00:16
*** e0ne has quit IRC00:16
*** sarob has quit IRC00:17
*** sarob has joined #openstack-dev00:17
*** jmontemayor has quit IRC00:18
*** mikeoutland has joined #openstack-dev00:19
*** _cjones_ has quit IRC00:20
*** morazi has quit IRC00:20
*** changbl has quit IRC00:21
*** _cjones_ has joined #openstack-dev00:21
*** sarob has quit IRC00:22
*** kgriffs_afk is now known as kgriffs00:22
*** ArxCruz has joined #openstack-dev00:23
*** willingc has quit IRC00:23
Anticimexbknudson: couldn't your problem above be solved by modifying the SQL query - or is that kept outside of code you can modify?00:24
Anticimex(always good to complicate queries to avoid client round trips)00:25
bknudsonAnticimex: this is not using SQL.00:25
*** jasondotstar has quit IRC00:25
* Anticimex has done fair share of pgsql00:25
Anticimexoh, ok00:25
*** otherwiseguy has quit IRC00:26
Anticimexbknudson: kvs - key value store?00:26
bknudsonAnticimex: yes... I think it's just a dict.00:27
Anticimexk00:27
bknudsonfor testing00:27
Anticimexah00:27
_cjones_morganfainberg, you around now for a not so quick q & a?00:28
*** tanisdl has quit IRC00:31
*** browne has quit IRC00:31
vahidhHi, does anyone know where debug messages of python-cinderclient project are written?00:32
*** kgriffs is now known as kgriffs_afk00:32
*** ArxCruz has quit IRC00:32
*** tmclaugh[work] has quit IRC00:33
*** dstanek has joined #openstack-dev00:35
*** browne has joined #openstack-dev00:36
jgriffithvahidh: You need to run cinderclient with the deubg flag on00:38
*** alop has quit IRC00:38
jgriffithvahidh: ie: "cinder --deubg list"00:38
vahidhjgriffith: thanks. I'll try that.00:40
*** otherwiseguy has joined #openstack-dev00:40
*** ArxCruz has joined #openstack-dev00:47
*** pmathews has quit IRC00:50
*** galstrom_zzz is now known as galstrom00:57
*** achampion has joined #openstack-dev00:58
*** rwsu has quit IRC01:00
*** sushils has quit IRC01:02
*** cyeoh has quit IRC01:02
morganfainberg_cjones_, sortof01:03
_cjones_morganfainberg, know much about multiple domains?01:03
morganfainberg_cjones_, as in the multiple domain construct in SQL?01:04
morganfainbergor... as in the per-domain-identtity code that is not finished01:04
_cjones_morganfainberg, I'll try and make it quick. (SQL and its relation to keystone)01:04
_cjones_morganfainberg, talking with ayoung, he indicated that what i needed was complete.01:05
morganfainbergok01:05
_cjones_Scenario is as follows: I have a default domain set up, with a 2nd domain foo.01:05
morganfainbergok01:05
_cjones_I have added the 2nd domain to sql as well.01:06
_cjones_(via keystone)01:06
morganfainbergok, that makes sense01:06
_cjones_Now, if I add a new project to the 2nd domain (foo), where would I expect that DB entry to appear?01:07
morganfainbergin the assingment project table01:07
_cjones_In the default (keystone) sql db, or in my (foo) (keystone) sql db?01:07
morganfainbergwait, you... can't have multiple dbs01:07
_cjones_What?01:07
morganfainbergfor keystone01:08
_cjones_No?01:08
morganfainbergno01:08
morganfainbergwell.01:08
morganfainbergmaaaybe a different assignment and identity one?01:08
morganfainbergdon't think so though01:08
_cjones_I thought if I added this to my keystone.foo.conf:01:08
morganfainbergsorry, i'm confused01:09
morganfainbergwaht is the architecture you're trying to do?01:09
morganfainberghave Keystone {db} and then have a separate DB for the foo domain?01:09
_cjones_connection = mysql://root:stackdb@W.X.Y.Z/keystone?charset=utf801:09
ayoungnope only one db01:09
*** jroovers has quit IRC01:09
_cjones_Oh. Hmm.01:09
ayoungthere is a BP for multiple, but not yet approved01:09
morganfainbergeven the per-domain-ideneity stuff couldn't really support multiple sql dbs01:09
_cjones_I really wanted segregated data, so that each domain contained it's own users, groups, and projects.01:10
*** galstrom is now known as galstrom_zzz01:10
*** ArxCruz has quit IRC01:10
_cjones_"Domain silos" if you will.01:10
ayoungactually, dolphm might have axed the multi DB BP01:11
morganfainbergayoung, i think so01:11
ayoung_cjones_, not in different DBs.  The end uses don't get access to the RDBMS01:11
*** galstrom_zzz is now known as galstrom01:11
_cjones_ayoung, understood.01:11
_cjones_So, multidomain support is in, however, with only the one db.01:12
morganfainberg_cjones_, correct01:12
_cjones_what about user name collision?01:12
_cjones_Is there any fear of that?01:12
morganfainbergany name lookup looks up w/ the domain_id01:12
morganfainberg(required)01:12
morganfainberguser_ids are globally unique01:12
*** mkollaro has quit IRC01:12
_cjones_morganfainberg, understood. was more concerned about name, not id.01:13
ayoung_cjones_, nope.  but we were discussing that earlier today..userid collision01:13
morganfainberg_cjones_, when it comes to external (or multiple) sources of identity it becomes important to avoid the collision01:13
_cjones_ayoung, what about userid collision? How would that happen?01:14
morganfainberg_cjones_, today, we only have one source of identity, so no collisions01:14
_cjones_ayoung, like ldap?01:14
ayoung_cjones_, Federation.  Or multi LDAP01:14
ayoungyep01:14
_cjones_ayoung, read you loud and clear.01:14
ayoung_Lost 3 this is lost 1.  Are you lost 2?01:14
*** epopt37 has quit IRC01:14
*** thuc has quit IRC01:14
_cjones_:)01:15
*** mikeoutland has quit IRC01:15
_cjones_Thanks guys! I'll get back at it and see what damage I can do.01:15
_cjones_One more quick one.01:15
*** thuc has joined #openstack-dev01:15
_cjones_No support, yet, for domains via horizon, correct?01:16
morganfainberg_cjones_, i think there might be some01:16
morganfainberg_cjones_, have not looked recently though at how complete it is01:16
*** dstanek has quit IRC01:16
_cjones_morganfainberg, thanks. I'll cross that bridge when I get there.01:16
*** e0ne has joined #openstack-dev01:17
ayoungmorganfainberg, so, wondering how your V3 controller change and this are going to coexist/conflict   https://review.openstack.org/#/c/65428/101:19
*** thuc has quit IRC01:19
morganfainbergblink01:20
morganfainbergi'm not... sure i'm understanding that change01:20
morganfainbergmight be a lack of knowing pecan atm01:20
*** epim has quit IRC01:21
morganfainbergayoung, i don't know if it would really impact much01:22
morganfainbergmight require lifting a few extra methods up to the v3controller01:22
*** e0ne has quit IRC01:22
morganfainbergand perhaps an @dependency change or two01:22
*** kgriffs_afk is now known as kgriffs01:23
*** e0ne has joined #openstack-dev01:23
morganfainbergayoung, OH01:24
morganfainbergayoung, i don't think that will have any impact01:24
*** venkatesh has joined #openstack-dev01:24
morganfainbergayoung, it's namespaced to keystone.controllers which is used only in keystone.routers and keystone.service01:26
*** jp_at_hp has quit IRC01:26
morganfainbergmy guess is it shouldn't actually conflict with anything01:26
morganfainberg(and if it would have conflicted, it would have conflicted even w/o my change to keystone.common.controllers)01:26
*** e0ne has quit IRC01:27
*** epopt37 has joined #openstack-dev01:28
*** melwitt has quit IRC01:28
*** nosnos has joined #openstack-dev01:29
*** venkatesh has quit IRC01:31
*** mszilagyi has joined #openstack-dev01:31
*** amotoki has quit IRC01:31
*** mriedem has joined #openstack-dev01:31
*** mszilagyi has quit IRC01:32
*** hemna__ is now known as hemnafk01:32
*** mszilagyi has joined #openstack-dev01:32
*** xingchao has joined #openstack-dev01:33
*** kgriffs is now known as kgriffs_afk01:33
*** mszilagyi has quit IRC01:33
*** xarses has quit IRC01:37
*** fifieldt has joined #openstack-dev01:37
*** novas0x2a|laptop has quit IRC01:38
*** venkatesh has joined #openstack-dev01:40
*** venkatesh has quit IRC01:41
*** xuhanp has joined #openstack-dev01:42
*** cpallares has joined #openstack-dev01:45
*** cpallares has quit IRC01:45
*** Edward-Zhang has joined #openstack-dev01:45
*** cpallares has joined #openstack-dev01:45
*** prad has joined #openstack-dev01:46
*** sballe has quit IRC01:47
*** sballe has joined #openstack-dev01:47
ayoungjamielennox, about https://review.openstack.org/#/c/62809/1  what I was thinking is that our current approach to XML/JSON is broken.  It should not be two different pipeline components, but something like this: https://github.com/admiyo/keystone/blob/html/keystone/contrib/html/html.py#L3201:47
ayoungBut not sure if that address the discussion you and dolphm were having in it01:48
jamielennoxayoung: completely agree with it being broken - If we move it to WSME then this gets handled for us automatically01:48
ayoungjamielennox, ++01:48
jamielennoxthen i guess we would need some way of opting-out of the middleware01:48
ayoungjamielennox, I just was looking at the change that depends on that01:49
jamielennoxthen that could get deprecated along with the V2 API01:49
ayoungWSME handles X509?01:49
ayoungPEM01:49
jamielennoxno01:49
jamielennoxbut you can add handlers for custom formates01:49
jamielennoxi don't think that'd be a WSME thing - more likely a pecan thing01:49
jamielennoxmeans that you could return a raw certificate and have both a PEM and DER handler that just work automatically01:50
jamielennoxi know that dolphm disagrees but IMO if the code doesn't work without certain middleware installed - it's not really middleware (or it's not middleware that should be in the paste config file)01:50
ayoung++01:51
*** KeithSharp has quit IRC01:51
ayoungjamielennox, and I wnat to be able to throw HTML rendering in there eventually...01:51
ayoungbut that is a different battle01:51
jamielennoxayoung: yes, i know :)01:51
ayoungjust easier with WSME/Pecan01:51
ayoungso...what to do about that abandonded patch?>01:51
jamielennoxthe xml rendering one?01:52
ayoungyeha01:52
ayoungyee Ha!01:52
ayoungYes01:52
jamielennoxit's only really a problem because i tend to hit the endpoint with my browser for testing and it has an accept: xml01:53
*** tqtran has quit IRC01:53
jamielennoxit's probably a good thing to fix though so i can bring it back01:53
jamielennoxi found it though doing the simple cert extension and with that i had gone the opposite route - having routes offload to pecan01:54
*** KeithSharp has joined #openstack-dev01:54
jamielennoxwhich is what made me start looking into if the reverse would be easier01:54
jamielennoxso i want to see the results of the pecan patch before i continue with the extension01:54
jamielennoxthen i can use that one to start figuring out how pecan extensions are loaded01:55
jamielennoxofftopic: i though install_venv.py came from oslo?01:55
*** sballe has quit IRC01:55
*** novas0x2a|laptop has joined #openstack-dev01:56
ayoungno idea...I've tended to use the run_tests.sh way of setting up the venv, but haven't looked deeper into it01:56
jamielennoxi'm pretty sure that depends on the install_venv01:56
morganfainbergayoung, let me know when you want to talk kvs01:57
ayoungnow! morganfainberg01:57
morganfainbergayoung, hehe ok01:57
ayounglet me swap01:57
morganfainbergsure01:57
ayounghttps://review.openstack.org/#/c/60742/15/keystone/token/backends/kvs.py01:57
*** xingchao_ has joined #openstack-dev01:57
ayoungwhy is this so big?01:58
morganfainbergyep01:58
morganfainbergit's a complete refactor of all kvs to use dogpile for tokens01:58
ayoungis this the default one?  Cuz I see the delete behvior calling parent01:58
ayoungso all of the dogpile ones descend from this one01:58
morganfainbergyes01:58
*** bdpayne has quit IRC01:58
bknudsoneven changed the vim line to # -*- coding: utf-8 -*-01:58
morganfainbergit currently implements the in-memory kvs01:58
ayoungline 24501:58
morganfainbergand the super is to call the abc class01:58
morganfainbergsince we implement a base functionality01:59
morganfainbergrather than raise NotImplemented01:59
ayounghow does that move tokens to the revoked list?01:59
morganfainberghuh, wait a sec.01:59
ayoungwait..what?02:00
ayoungdelete_tokens...what is that for?  Is that the cleanup call?02:00
morganfainberghold on02:00
ayoungno that is flush02:00
morganfainberghttp://git.openstack.org/cgit/openstack/keystone/tree/keystone/token/core.py#n32402:00
*** xingchao has quit IRC02:00
ayoungbetch super calls delete token one at a time02:00
morganfainbergit does the loop and calls .delete_token per token02:01
morganfainbergyep02:01
*** haomaiwang has quit IRC02:01
morganfainbergwelcome to key-value-stores02:01
ayoungOK...cool02:01
morganfainbergi like abcmeta because you can define code on the abstract class, and super call it02:01
morganfainbergyou're required to define the method, but if the superclass implements everything you need, why re-implement02:01
ayoungdamnit, I am having trrouble coming up with things to object to in patches.  bknudson is making me feel incompetent02:01
morganfainbergayoung, i know :(02:02
morganfainbergi've been feeling the same way for a while02:02
morganfainbergbknudson, if gerrit wouldn't detect "changes" this, imo, qualifies (in reality) as a "new" file02:02
*** haomaiwang has joined #openstack-dev02:02
ayoungstill there is a lot here....the internal functions add a lot of code02:02
morganfainbergayoung, there is.02:02
morganfainbergit's because i'm reworking to encompass a lot of what the memcache driver does02:03
morganfainbergremember in a couple patchsets the memcache driver is just a subclass that changes an instance variable and sets one option02:03
ayoungso, you need to eal explicitly with expriation...KVS didn't do that in the past02:03
ayoungyeah02:03
*** galstrom is now known as galstrom_zzz02:03
morganfainbergkvs beforehand said "oh i have access to the in-mem dict, let me muck with things"02:03
ayoungmorganfainberg, would this look less different if it were changes to the memcached driver instead?02:04
morganfainbergit would still be changing a lot of things02:04
ayoungplus you do locking02:04
morganfainbergespecially some optimisations since we can't do compare-and-set magic02:04
ayoungany chances of dead lock?02:04
morganfainberg(in fact, i need to make a fix to havana because that code is so bad)02:04
*** csd has quit IRC02:04
morganfainbergthe locks (in memcache) auto-expire02:05
bknudsondid kvs not handle trusts before?02:05
morganfainbergbknudson, kvs did, memcache did it poorly02:05
bknudsonthis is the only use of CONF. : CONF.trust.enabled02:05
morganfainbergi had to fix an issue oh. probably should be in the commit message02:05
ayoungmorganfainberg, shh02:05
bknudsonayoung: see, that's how you find problems.02:05
*** fifieldt has quit IRC02:05
morganfainbergbug... uhm 126008002:06
*** _cjones_ has quit IRC02:06
*** fifieldt has joined #openstack-dev02:06
ayoungbknudson, I've been through this code a few times.  Part of the problem is each time I need to remember all the earlier conversations02:06
bknudsonayoung: I agree at some point you have to hand it off.02:06
morganfainbergayoung, likely this would be less painful as a modification of the memcache driver02:06
morganfainbergunfortunately, this is .. legitimately a single change set.02:06
morganfainbergthis one really is doing only one thing, moving kvs to use the dogpile backend for token02:07
morganfainberg*cough* token backend02:07
ayoungmorganfainberg, is memcached changed in an earlier or later patch>02:07
morganfainbergayoung, later02:07
ayoungOK.02:07
morganfainbergayoung, there is still the work to fix the non-expiring keys02:07
bknudsonmorganfainberg: you could as well create a new file rather than changing existing02:07
bknudsonand then do a rename02:07
morganfainbergbknudson, i think gerrit still shows it like this02:07
bknudsonkvs2 or something02:07
ayoungthis is OK02:07
morganfainbergoh in two patches?02:07
morganfainbergbknudson, i'm happy to do that if you'd like :)02:08
ayoungno02:08
morganfainbergproceedurally i don't mind things like that if it makes it easier to review02:08
ayoungthis is OK...so long as we can map to the origianl memcached logic.  I'll just do that outside of the patch review02:08
bknudsonwell, the changes really aren't helpful here.02:08
morganfainbergbknudson, aye, it's best to look at it as new code, ignore the green/red parts02:08
morganfainbergassume it's all a nice light-green color02:09
ayoungmorganfainberg, not  a bad comment to put in to other reviewers:  compare with the memcached driver02:09
morganfainbergayoung, the biggest change is storing the expiry time in the user-index behind the scenes02:09
morganfainbergi have it open will add now.02:09
ayoungyep02:09
ayoungthis looks good.02:09
morganfainbergbut that is to avoid the compare-and-set uglyness02:09
morganfainbergthat i need to fix in havana02:09
morganfainbergthat "keystone uses 100% cpu issue"02:10
ayoungneeded?02:10
ayoungis fixed now, right02:10
morganfainbergyeah, if you have high token issuance, cas causes excessive cpu02:10
morganfainbergwith this patchset, it should be fixed because we don't do cas02:10
bknudsonsystems using neutron have high token issuance02:10
bknudsonunless they've fixed that.02:10
morganfainbergwe don't need to ask the memcache store each time for each token02:10
morganfainbergwe just pull things out of the lists if the expiry says to02:10
morganfainbergmuch much better02:11
morganfainbergfor loop > for loop and asking memcache for N items one at a time02:11
morganfainbergand if the cas fails, you have to do that loop again because "things changed"02:11
ayoungmorganfainberg, don't change it now, but it probably would have been better to A)  make the changes to the memcached driver, and then rename it to the KVS driver, with the memcached driver inheriting from it.  I'm guessing that was your origianly plan, but decided not to due to the expiring key issue?02:11
*** yaguang has joined #openstack-dev02:12
ayoungno CAS either02:12
morganfainbergayoung, actually, the plan was hit kvs first because memcache is actually used.02:12
ayoungthat uses the lock now, right>02:12
*** kenperkins_ has joined #openstack-dev02:12
*** diakunchikov_ has joined #openstack-dev02:12
morganfainbergayoung, correct02:12
ayoungtrue02:12
morganfainbergayoung, kvs is really only testing02:12
*** Chaser has quit IRC02:12
morganfainbergso, fix kvs, then once we are sure it's good, move memcache to it.02:12
ayoungchange the one that is really used and you find the bugs sooner.02:12
morganfainbergnext time i'll make it "dogpile_kvs" or some such02:12
morganfainbergexcept, we don't test the memcache one very well02:13
ayoungyeah, so this is probably better, as it is used in all the unit tests02:13
bknudsondo we need a tempest scenario for memcache?02:13
*** GheRiver1 has joined #openstack-dev02:13
morganfainbergbknudson, likely it would be good. but once we move to dogpile the code (except the back end) is all the same02:13
morganfainbergbackend = memcache client02:14
*** cdub_ has joined #openstack-dev02:14
ayoungbknudson, can-o-worms there02:14
ayoungwe plkan on using the kvs as the code for multipe bakcends, memcached is just one02:14
ayoungCassandra is the big other one, as it actually persists02:14
morganfainberg^02:14
*** sgran_ has joined #openstack-dev02:14
*** dkehn_ has joined #openstack-dev02:14
*** wfoster_ has joined #openstack-dev02:14
morganfainbergayoung, at the hackathon i need to discuss some magic code for things like cassandra02:14
ayoungkewl02:14
*** gimps has quit IRC02:14
*** wfoster has quit IRC02:14
*** cdub has quit IRC02:15
*** kenperkins has quit IRC02:15
*** dkehn has quit IRC02:15
*** diakunchikov has quit IRC02:15
*** sgran has quit IRC02:15
*** GheRivero has quit IRC02:15
*** wfoster_ has quit IRC02:15
*** wfoster_ has joined #openstack-dev02:15
morganfainbergbut.. that can be Juno specific things (for implementation)02:15
morganfainbergjust plant seeds now02:15
*** gimps has joined #openstack-dev02:15
morganfainbergomg, it's next week isn't it!02:15
*** 77CAA0A27 has joined #openstack-dev02:15
*** erkules_ has joined #openstack-dev02:16
*** 77CAA0A27 is now known as Chaser02:17
morganfainbergayoung, also in the commit message i said as much about memcache driver vs. kvs driver02:17
ayoungyeah...I need to make a hotel reservation02:17
morganfainbergayoung, i just did at the mariott courtyard02:17
morganfainbergi think i found a couple nights were $8902:17
morganfainbergand the others were $10902:18
morganfainbergor so02:18
*** xarses has joined #openstack-dev02:18
*** browne has quit IRC02:18
morganfainberg(no "group discount", just reail)02:18
morganfainbergretail*02:18
ayoungyeah...I have 2 other RHers coming, and was seeing if we needed a suite or something.  GOing to reserve now02:18
ayoungI thought there was a rackspace rate?02:18
morganfainbergmight be02:18
morganfainbergbut it was like $10/night off some nights.02:19
morganfainbergi didn't bother.02:19
*** erkules has quit IRC02:19
morganfainbergwould have saved $20 for my booking i think02:19
*** lbragstad has joined #openstack-dev02:19
morganfainbergbknudson, wow, lots of merging happneded.02:19
*** sumanthns has joined #openstack-dev02:19
*** DennyZhang has joined #openstack-dev02:20
*** jasondotstar has joined #openstack-dev02:21
*** buzztroll has quit IRC02:21
*** xchu has joined #openstack-dev02:23
*** dkehn_ is now known as dkehn02:23
*** kgriffs_afk is now known as kgriffs02:24
*** e0ne has joined #openstack-dev02:24
ayoungmorganfainberg, yeah, 99 a night, ask when you check in, or call02:28
morganfainbergayoung, yeah i'd save $2002:28
morganfainbergmine was all prepaid02:28
ayoungthat was $20 worth of beer, dagnabit!02:28
*** e0ne has quit IRC02:28
morganfainbergayoung, eh,02:29
morganfainbergi think i spilled more beer than that (sigh, good beer is expensive) this month02:29
*** amcrn has quit IRC02:29
*** buzztroll has joined #openstack-dev02:30
*** sandywalsh has quit IRC02:31
ayoungmorganfainberg, +2ed that patch.  If there are only trivial changes, and you get a +2 from another core, feel free to approve02:31
*** CaptTofu has quit IRC02:31
morganfainbergnod.02:32
morganfainbergwill do.02:32
morganfainberglikely i'll be out soon and will need to pickup tomorrow.02:32
*** sc68cal has quit IRC02:33
*** kgriffs is now known as kgriffs_afk02:34
*** nelsnels_ has joined #openstack-dev02:36
*** willingc has joined #openstack-dev02:36
*** sc68cal has joined #openstack-dev02:36
*** mriedem has quit IRC02:37
*** nelsnelson has quit IRC02:39
*** nelsnels_ has quit IRC02:41
*** nelsnelson has joined #openstack-dev02:43
*** sc68cal has quit IRC02:45
*** angdraug has quit IRC02:46
*** sc68cal has joined #openstack-dev02:46
*** hcc has joined #openstack-dev02:47
hccd02:47
*** hcc is now known as hdd_02:47
*** sc68cal has quit IRC02:48
*** sandywalsh has joined #openstack-dev02:48
*** nati_ueno has quit IRC02:50
*** ayoung has quit IRC02:50
*** sc68cal_ has joined #openstack-dev02:54
*** sc68cal_ has quit IRC02:54
*** otherwiseguy has quit IRC02:55
*** sc68cal_ has joined #openstack-dev02:56
*** changbl has joined #openstack-dev02:58
*** jasondotstar has quit IRC02:59
*** reed has quit IRC02:59
*** prad has quit IRC02:59
*** pdevine has quit IRC02:59
thingeenotmyname: did you see me, did you see me?03:00
*** sumanthns has quit IRC03:01
*** KeithSharp has quit IRC03:02
*** sarob has joined #openstack-dev03:02
*** Mandell has quit IRC03:03
*** rods2 has quit IRC03:04
*** KeithSharp has joined #openstack-dev03:04
*** blamar has quit IRC03:05
*** spzala has quit IRC03:05
*** doug_shelley66 has quit IRC03:07
*** comay has quit IRC03:11
*** buzztroll has quit IRC03:11
*** buzztroll has joined #openstack-dev03:12
*** gongysh has joined #openstack-dev03:13
*** haomaiwang has quit IRC03:13
*** haomaiwang has joined #openstack-dev03:13
*** blamar has joined #openstack-dev03:14
*** buzztroll has quit IRC03:16
*** _cjones_ has joined #openstack-dev03:17
*** buzztroll has joined #openstack-dev03:17
*** haomaiwang has quit IRC03:19
*** haomaiwang has joined #openstack-dev03:19
*** _cjones_ has quit IRC03:21
*** e0ne has joined #openstack-dev03:25
*** kgriffs_afk is now known as kgriffs03:25
*** sarob has quit IRC03:25
*** sarob has joined #openstack-dev03:26
*** gokrokve has joined #openstack-dev03:29
*** paragan has joined #openstack-dev03:29
*** paragan has quit IRC03:29
*** paragan has joined #openstack-dev03:29
*** browne has joined #openstack-dev03:30
*** e0ne has quit IRC03:30
*** arnaud___ has quit IRC03:30
*** browne has quit IRC03:30
*** arnaud__ has quit IRC03:31
*** READ10 has quit IRC03:31
*** claxton has joined #openstack-dev03:32
*** pixelb has quit IRC03:35
*** mdomsch has joined #openstack-dev03:35
*** kgriffs is now known as kgriffs_afk03:37
*** Edward-Zhang has quit IRC03:37
*** sarob has quit IRC03:38
*** sarob has joined #openstack-dev03:39
*** byeager has joined #openstack-dev03:42
*** koofoss has joined #openstack-dev03:45
*** coolsvap has quit IRC03:46
*** yaguang has quit IRC03:47
*** yaguang has joined #openstack-dev03:47
*** carlp has quit IRC03:48
*** mdomsch has quit IRC03:50
*** yaguang has quit IRC03:50
*** sarob has quit IRC03:50
*** csaba|afk is now known as csaba03:51
*** koofoss has left #openstack-dev03:52
*** fire has joined #openstack-dev03:54
*** claxton has quit IRC03:54
notmynamethingee: I did!!03:54
*** afazekas has joined #openstack-dev03:56
*** DennyZhang has quit IRC03:56
*** sarob has joined #openstack-dev04:02
*** Edward-Zhang has joined #openstack-dev04:04
*** willingc has quit IRC04:05
*** sarob has quit IRC04:07
*** amotoki has joined #openstack-dev04:07
*** harlowja is now known as harlowja_away04:07
*** vipul has quit IRC04:08
*** vipul has joined #openstack-dev04:08
*** willingc has joined #openstack-dev04:10
*** comay has joined #openstack-dev04:11
*** harlowja_away is now known as harlowja04:14
*** yaguang has joined #openstack-dev04:15
*** claxton has joined #openstack-dev04:15
*** pmathews has joined #openstack-dev04:17
*** pcm_ has quit IRC04:22
*** sumanthns has joined #openstack-dev04:25
*** e0ne has joined #openstack-dev04:25
*** jpomero has quit IRC04:26
*** arosen1 has joined #openstack-dev04:27
*** kgriffs_afk is now known as kgriffs04:27
*** novas0x2a|laptop has quit IRC04:28
*** stevemar has joined #openstack-dev04:29
*** e0ne has quit IRC04:30
*** byeager has quit IRC04:30
*** prad has joined #openstack-dev04:32
*** stevemar has quit IRC04:36
*** tongli has quit IRC04:36
*** stevemar has joined #openstack-dev04:37
*** kgriffs is now known as kgriffs_afk04:38
*** stevemar has quit IRC04:39
*** stevemar has joined #openstack-dev04:41
*** dstanek has joined #openstack-dev04:42
*** stevemar has quit IRC04:44
*** stevemar has joined #openstack-dev04:45
*** fire has quit IRC04:46
*** doude has joined #openstack-dev04:46
*** buzztroll has quit IRC04:47
*** nosnos_ has joined #openstack-dev04:47
*** branen_ has joined #openstack-dev04:48
*** xingchao has joined #openstack-dev04:48
*** bdpayne has joined #openstack-dev04:49
*** rushiagr has joined #openstack-dev04:49
*** comay_ has joined #openstack-dev04:49
*** viktors1 has joined #openstack-dev04:49
*** sdake_ has joined #openstack-dev04:49
*** fifieldt_ has joined #openstack-dev04:49
*** KeithSha_ has joined #openstack-dev04:49
*** nelsnels_ has joined #openstack-dev04:50
*** willingc has quit IRC04:50
*** martines__ has joined #openstack-dev04:50
*** asalkeld__ has joined #openstack-dev04:50
*** antigluk__ has joined #openstack-dev04:50
*** vipuls has joined #openstack-dev04:50
*** stevemar has quit IRC04:52
*** stevemar has joined #openstack-dev04:54
*** dstanek has quit IRC04:55
*** comay has quit IRC04:55
*** vipul has quit IRC04:55
*** KeithSharp has quit IRC04:55
*** changbl has quit IRC04:55
*** sandywalsh has quit IRC04:55
*** nelsnelson has quit IRC04:55
*** gimps has quit IRC04:55
*** fifieldt has quit IRC04:55
*** xingchao_ has quit IRC04:55
*** nosnos has quit IRC04:55
*** asalkeld_ has quit IRC04:55
*** krtaylor has quit IRC04:55
*** antigluk_ has quit IRC04:55
*** branen has quit IRC04:55
*** sdake has quit IRC04:55
*** viktors has quit IRC04:55
*** rpodolyaka has quit IRC04:55
*** doude_ has quit IRC04:55
*** notel has quit IRC04:55
*** martines_ has quit IRC04:55
*** stevemar has quit IRC04:55
*** lbragstad has quit IRC04:55
*** stevemar has joined #openstack-dev04:57
*** gimps has joined #openstack-dev04:57
*** notel has joined #openstack-dev04:57
*** sandywalsh has joined #openstack-dev04:57
*** changbl has joined #openstack-dev04:57
*** stevemar has quit IRC04:59
*** aeperezt has quit IRC04:59
*** stevemar has joined #openstack-dev05:00
*** lcheng has quit IRC05:00
*** lcheng has joined #openstack-dev05:01
*** stevemar has quit IRC05:02
*** rpodolyaka has joined #openstack-dev05:03
*** krtaylor has joined #openstack-dev05:03
*** stevemar has joined #openstack-dev05:04
*** pdevine has joined #openstack-dev05:04
*** zaitcev has quit IRC05:05
*** pmathews has quit IRC05:05
*** jyhc has quit IRC05:05
*** Samos123 has quit IRC05:06
*** rmk has quit IRC05:06
*** morganfainberg has quit IRC05:07
*** CrackerJackMack has quit IRC05:07
*** zaitcev has joined #openstack-dev05:07
*** stevemar has quit IRC05:09
*** stevemar has joined #openstack-dev05:10
*** buzztroll has joined #openstack-dev05:11
*** carl_baldwin has joined #openstack-dev05:11
*** stevemar has quit IRC05:12
*** stevemar has joined #openstack-dev05:14
*** sthaha has quit IRC05:15
*** stevemar has quit IRC05:17
*** rmk has joined #openstack-dev05:18
*** stevemar has joined #openstack-dev05:18
*** stevemar has quit IRC05:21
*** pmathews has joined #openstack-dev05:21
*** sthaha has joined #openstack-dev05:22
*** sthaha has quit IRC05:22
*** sthaha has joined #openstack-dev05:22
*** stevemar has joined #openstack-dev05:22
*** neeti has joined #openstack-dev05:24
*** stevemar has quit IRC05:24
*** bdpayne has quit IRC05:25
*** stevemar has joined #openstack-dev05:25
*** chandankumar has joined #openstack-dev05:27
*** stevemar has quit IRC05:27
*** stevemar has joined #openstack-dev05:28
*** kgriffs_afk is now known as kgriffs05:28
*** Anukalp has joined #openstack-dev05:29
*** skraynev has quit IRC05:30
*** stevemar has quit IRC05:30
*** galstrom_zzz is now known as galstrom05:30
*** sthaha has quit IRC05:31
*** stevemar has joined #openstack-dev05:32
*** skraynev has joined #openstack-dev05:33
*** irenab_ has joined #openstack-dev05:33
*** lexano has quit IRC05:34
*** lexano has joined #openstack-dev05:36
*** stevemar has quit IRC05:36
*** prad has quit IRC05:36
*** stevemar has joined #openstack-dev05:38
*** gokrokve has quit IRC05:38
*** kgriffs is now known as kgriffs_afk05:38
*** chandankumar_ has joined #openstack-dev05:39
*** gyee_ has quit IRC05:39
*** dstanek has joined #openstack-dev05:40
*** nshaikh has joined #openstack-dev05:40
*** galstrom is now known as galstrom_zzz05:41
*** morganfainberg has joined #openstack-dev05:41
*** sthaha has joined #openstack-dev05:42
*** sthaha has quit IRC05:42
*** sthaha has joined #openstack-dev05:42
*** AMike has joined #openstack-dev05:42
*** AMike has quit IRC05:42
*** AMike has joined #openstack-dev05:42
*** nati_ueno has joined #openstack-dev05:43
*** stevemar has quit IRC05:44
*** stevemar has joined #openstack-dev05:46
*** dstanek has quit IRC05:47
*** stevemar has quit IRC05:48
*** stevemar has joined #openstack-dev05:50
*** bdpayne has joined #openstack-dev05:51
*** stevemar has quit IRC05:51
*** UKn0Me has quit IRC05:52
*** coolsvap has joined #openstack-dev05:53
*** stevemar has joined #openstack-dev05:53
*** galstrom_zzz is now known as galstrom05:54
*** dstanek has joined #openstack-dev05:55
*** stevemar has quit IRC05:55
*** tzumainn has quit IRC05:56
*** doron_afk has quit IRC05:57
*** stevemar has joined #openstack-dev05:57
*** galstrom is now known as galstrom_zzz05:57
*** carl_baldwin has quit IRC05:59
*** stevemar has quit IRC05:59
*** stevemar has joined #openstack-dev06:00
*** stevemar has quit IRC06:03
*** mikeoutland has joined #openstack-dev06:03
*** stevemar has joined #openstack-dev06:03
*** stevemar has quit IRC06:05
*** stevemar has joined #openstack-dev06:06
*** Ryan_Lane has joined #openstack-dev06:07
*** dkuffner has joined #openstack-dev06:08
*** dstanek has quit IRC06:08
*** stevemar has quit IRC06:11
*** stevemar has joined #openstack-dev06:12
*** jamielennox is now known as jamielennox|away06:13
*** stevemar has quit IRC06:14
*** stevemar has joined #openstack-dev06:16
*** stevemar has quit IRC06:18
*** stevemar has joined #openstack-dev06:19
*** sthaha has quit IRC06:20
*** hdd_ has quit IRC06:21
*** yeylon_ has joined #openstack-dev06:21
*** stevemar has quit IRC06:24
*** arnaud__ has joined #openstack-dev06:24
*** stevemar has joined #openstack-dev06:24
*** rdas has joined #openstack-dev06:24
*** chandankumar has quit IRC06:25
*** harlowja is now known as harlowja_away06:25
*** stevemar has quit IRC06:27
*** e0ne has joined #openstack-dev06:27
*** mikeoutland has quit IRC06:27
*** stevemar has joined #openstack-dev06:28
*** kgriffs_afk is now known as kgriffs06:29
*** e0ne has quit IRC06:32
*** erkrnt has quit IRC06:32
*** stevemar has quit IRC06:32
*** bashok has joined #openstack-dev06:33
*** stevemar has joined #openstack-dev06:33
*** stevemar has quit IRC06:35
*** arnaud__ has quit IRC06:35
*** arnaud__ has joined #openstack-dev06:35
*** stevemar has joined #openstack-dev06:36
*** alex_xu has joined #openstack-dev06:37
*** stevemar has quit IRC06:38
*** erkrnt has joined #openstack-dev06:38
*** nshaikh has left #openstack-dev06:39
*** kgriffs is now known as kgriffs_afk06:39
*** stevemar has joined #openstack-dev06:40
*** bdpayne has quit IRC06:40
*** arnaud___ has joined #openstack-dev06:40
*** arnaud__ has quit IRC06:41
*** nshaikh has joined #openstack-dev06:42
*** stevemar has quit IRC06:43
*** stevemar has joined #openstack-dev06:45
*** gokrokve has joined #openstack-dev06:49
*** stevemar has quit IRC06:49
*** mrunge has joined #openstack-dev06:49
*** stevemar has joined #openstack-dev06:51
*** pmathews has quit IRC06:51
*** eglynn has joined #openstack-dev06:52
*** sgran_ is now known as sgran06:53
*** arnaud___ has quit IRC06:53
*** bvandenh has joined #openstack-dev06:53
*** arnaud__ has joined #openstack-dev06:53
*** gokrokve has quit IRC06:54
*** stevemar has quit IRC06:55
*** arnaud__ has quit IRC06:56
*** stevemar has joined #openstack-dev06:57
*** stevemar has quit IRC06:59
*** morganfainberg has quit IRC07:00
*** stevemar has joined #openstack-dev07:00
*** erkrnt has quit IRC07:00
*** buzztroll has quit IRC07:01
*** morganfainberg has joined #openstack-dev07:01
*** aditirav has joined #openstack-dev07:02
*** stevemar has quit IRC07:02
*** tkammer has joined #openstack-dev07:03
*** Drankis has joined #openstack-dev07:03
*** stevemar has joined #openstack-dev07:04
*** buzztroll has joined #openstack-dev07:05
*** stevemar has quit IRC07:06
*** markwash has quit IRC07:08
*** stevemar has joined #openstack-dev07:08
*** sergmelikyan has joined #openstack-dev07:09
*** stevemar has quit IRC07:09
*** dstufft_ has joined #openstack-dev07:09
*** pmathews has joined #openstack-dev07:10
*** dstufft has quit IRC07:10
*** eglynn has quit IRC07:11
*** markwash has joined #openstack-dev07:11
*** stevemar has joined #openstack-dev07:11
*** ilyashakhat_ has quit IRC07:12
*** morganfainberg has quit IRC07:13
*** stevemar has quit IRC07:13
*** thurloat has quit IRC07:13
*** morganfainberg has joined #openstack-dev07:14
*** stevemar has joined #openstack-dev07:15
*** bknudson has quit IRC07:15
*** huachao has joined #openstack-dev07:16
*** bknudson has joined #openstack-dev07:16
*** huachao has left #openstack-dev07:17
*** comay_ has quit IRC07:18
*** stevemar has quit IRC07:18
*** SergeyLukjanov has joined #openstack-dev07:18
*** dkuffner has quit IRC07:19
*** NikitaKonovalov has joined #openstack-dev07:21
*** jamielennox|away is now known as jamielennox07:23
*** yolanda has joined #openstack-dev07:23
*** arosen1 has quit IRC07:23
*** e0ne has joined #openstack-dev07:25
*** yolanda has quit IRC07:26
*** rushiagr is now known as rushiagr_away07:26
*** belmoreira has joined #openstack-dev07:29
*** belmoreira has quit IRC07:29
*** belmoreira has joined #openstack-dev07:30
*** kgriffs_afk is now known as kgriffs07:30
*** buzztroll has quit IRC07:30
*** doron_afk has joined #openstack-dev07:31
*** yolanda has joined #openstack-dev07:31
*** coolsvap has quit IRC07:33
*** zaitcev has quit IRC07:36
*** pmcg has quit IRC07:37
*** renlt has joined #openstack-dev07:37
*** pmcg has joined #openstack-dev07:37
*** ifarkas has joined #openstack-dev07:39
*** kgriffs is now known as kgriffs_afk07:40
*** xingchao has quit IRC07:40
*** xingchao has joined #openstack-dev07:40
*** fire has joined #openstack-dev07:42
*** Mandell has joined #openstack-dev07:43
*** pmathews has quit IRC07:44
*** coolsvap has joined #openstack-dev07:44
*** vartom111111115 has joined #openstack-dev07:45
*** pdevine has quit IRC07:45
*** andreaf has joined #openstack-dev07:45
*** doug_shelley66 has joined #openstack-dev07:46
*** e0ne has quit IRC07:47
*** SergeyLukjanov has quit IRC07:47
*** SergeyLukjanov has joined #openstack-dev07:48
*** vartom111111116 has joined #openstack-dev07:48
*** sergmelikyan has quit IRC07:49
*** vartom111111115 has quit IRC07:49
*** jcoufal has joined #openstack-dev07:50
*** dkuffner has joined #openstack-dev07:54
*** sergmelikyan has joined #openstack-dev07:54
*** nmagnezi has joined #openstack-dev07:56
*** erkules_ is now known as erkules07:57
*** jprovazn has joined #openstack-dev07:58
*** corXi has joined #openstack-dev07:58
*** neeti has quit IRC07:58
*** renlt has quit IRC07:59
*** renlt has joined #openstack-dev08:00
*** pmcg has quit IRC08:00
*** renlt has quit IRC08:00
*** rushiagr_away is now known as rushiagr08:00
*** renlt has joined #openstack-dev08:01
*** pmcg has joined #openstack-dev08:02
*** xgsa has joined #openstack-dev08:04
*** rushiagr2 has joined #openstack-dev08:09
*** xga has joined #openstack-dev08:11
*** rushiagr has quit IRC08:13
*** florentflament has joined #openstack-dev08:22
*** sushils has joined #openstack-dev08:22
*** jistr has joined #openstack-dev08:24
*** julienvey_ has joined #openstack-dev08:25
*** terrylhowe has quit IRC08:26
*** bauzas has joined #openstack-dev08:27
*** sushils has quit IRC08:27
*** sushils has joined #openstack-dev08:28
*** terrylhowe has joined #openstack-dev08:29
*** aditirav_ has joined #openstack-dev08:30
*** kpavel has joined #openstack-dev08:30
*** claxton has quit IRC08:30
*** kgriffs_afk is now known as kgriffs08:31
*** marekd|away is now known as marekd08:31
*** aditirav has quit IRC08:32
*** fbo_away is now known as fbo08:33
*** lbragstad has joined #openstack-dev08:33
*** claxton has joined #openstack-dev08:33
*** jyhc has joined #openstack-dev08:34
*** CrackerJackMack has joined #openstack-dev08:36
*** Samos123 has joined #openstack-dev08:36
*** nmagnezi has quit IRC08:37
*** sumanthns has quit IRC08:37
*** mancdaz_away is now known as mancdaz08:38
*** sahid has joined #openstack-dev08:39
*** sumanthns has joined #openstack-dev08:39
*** mancdaz is now known as mancdaz_away08:39
*** aditirav has joined #openstack-dev08:39
*** mancdaz_away is now known as mancdaz08:40
*** djinni has quit IRC08:40
*** nshaikh has left #openstack-dev08:40
*** kgriffs is now known as kgriffs_afk08:40
*** Slidey_ has quit IRC08:41
*** djinni has joined #openstack-dev08:42
*** ygbo has joined #openstack-dev08:43
*** flaper87|afk is now known as flaper8708:43
*** SergeyLukjanov has quit IRC08:44
*** Oneiroi has quit IRC08:45
*** nmagnezi has joined #openstack-dev08:45
*** csaba is now known as csaba|afk08:46
*** nati_ueno has quit IRC08:47
*** gszasz has joined #openstack-dev08:47
*** rossella_s has joined #openstack-dev08:48
*** alex_xu has quit IRC08:48
*** nshaikh has joined #openstack-dev08:48
*** jpich has joined #openstack-dev08:49
*** Ryan_Lane has quit IRC08:50
*** Oneiroi has joined #openstack-dev08:51
*** e0ne has joined #openstack-dev08:54
*** safchain has joined #openstack-dev08:56
*** romcheg has joined #openstack-dev08:57
*** romcheg has quit IRC08:57
*** romcheg has joined #openstack-dev08:57
*** buzztroll has joined #openstack-dev09:02
*** _ruhe is now known as ruhe09:04
*** saschpe has quit IRC09:05
*** buzztroll has quit IRC09:07
*** che-arne has quit IRC09:07
*** mmagr has joined #openstack-dev09:08
*** rushiagr2 is now known as rushiagr09:08
*** JordanP has joined #openstack-dev09:09
rushiagrjgriffith: wow, the milestone page is sooo good :)09:10
*** Drankis has quit IRC09:10
rushiagrjgriffith: ^^ https://launchpad.net/cinder/+milestone/icehouse-209:10
*** Edward-Zhang has quit IRC09:12
*** Drankis has joined #openstack-dev09:12
*** saschpe has joined #openstack-dev09:13
*** MaxV has joined #openstack-dev09:14
*** giulivo has joined #openstack-dev09:15
*** yassine has joined #openstack-dev09:15
*** neeti has joined #openstack-dev09:16
*** mindpixel has joined #openstack-dev09:18
*** eglynn has joined #openstack-dev09:19
*** athomas has joined #openstack-dev09:21
*** omachace has joined #openstack-dev09:22
*** jroovers has joined #openstack-dev09:25
*** SergeyLukjanov has joined #openstack-dev09:25
*** yassine has quit IRC09:25
*** yassine has joined #openstack-dev09:26
*** ativelkov has joined #openstack-dev09:29
*** johnthetubaguy has joined #openstack-dev09:30
*** kgriffs_afk is now known as kgriffs09:31
*** jp_at_hp has joined #openstack-dev09:32
*** sergmelikyan has quit IRC09:32
*** giulivo has quit IRC09:32
*** giulivo has joined #openstack-dev09:33
*** tuxtobin_ has joined #openstack-dev09:33
*** teran has joined #openstack-dev09:35
*** rushiagr is now known as rushiagr_away09:36
*** pixelb has joined #openstack-dev09:37
*** johnthetubaguy has quit IRC09:38
*** johnthetubaguy1 has joined #openstack-dev09:38
*** renlt has quit IRC09:38
*** saschpe has quit IRC09:39
*** yassine has quit IRC09:40
*** yassine has joined #openstack-dev09:41
*** claxton has quit IRC09:41
*** kgriffs is now known as kgriffs_afk09:41
*** navid__ has joined #openstack-dev09:42
*** nshaikh has quit IRC09:45
*** coolsvap has quit IRC09:46
*** yassine has quit IRC09:46
*** lbragstad has quit IRC09:46
*** claxton has joined #openstack-dev09:46
*** yassine has joined #openstack-dev09:46
*** ilyashakhat has joined #openstack-dev09:47
*** rushiagr_away is now known as rushiagr09:47
*** exed_ has joined #openstack-dev09:49
*** derekh has joined #openstack-dev09:52
*** julienvey has quit IRC09:53
*** julienvey_ is now known as julienvey09:53
*** DynamiteXXL has joined #openstack-dev09:56
*** nati_ueno has joined #openstack-dev09:58
*** jtomasek has joined #openstack-dev10:00
*** jasondotstar has joined #openstack-dev10:00
*** fire has quit IRC10:00
*** nati_ueno has quit IRC10:02
*** claxton has quit IRC10:03
*** aditirav has quit IRC10:04
*** venkatesh has joined #openstack-dev10:05
*** sergmelikyan has joined #openstack-dev10:05
*** sumansn_ has joined #openstack-dev10:06
*** sumanthns has quit IRC10:07
*** xchu has quit IRC10:07
*** kruskakli has quit IRC10:08
*** coolsvap has joined #openstack-dev10:10
*** UKn0Me has joined #openstack-dev10:10
*** teran has quit IRC10:12
*** asalkeld__ is now known as asalkeld10:14
*** rushiagr2 has joined #openstack-dev10:14
*** Anukalp has quit IRC10:15
*** UKn0Me has quit IRC10:17
*** rushiagr has quit IRC10:18
ekarlsojamielennox: around dude ?10:18
*** akrivoka has joined #openstack-dev10:18
ekarlsoor anyone that knows how it goes with the apiclient stuff10:18
*** xuhanp has quit IRC10:20
*** claxton has joined #openstack-dev10:21
*** aditirav has joined #openstack-dev10:21
*** exed_ has quit IRC10:24
*** Anukalp has joined #openstack-dev10:27
*** Mandell has quit IRC10:28
*** e0ne_ has joined #openstack-dev10:29
*** exed_ has joined #openstack-dev10:29
rushiagr2ekarlso: a little bit10:30
*** SergeyLukjanov has quit IRC10:30
ekarlsorushiagr2: is it "stable" to use ?10:31
rushiagr2ekarlso: are you talking about any specific client? I've worked only on the Cinder one10:32
*** kgriffs_afk is now known as kgriffs10:32
*** e0ne has quit IRC10:33
*** jtomasek has quit IRC10:34
*** UKn0Me has joined #openstack-dev10:34
ekarlsorushiagr2: I mean the oslo-incubator apiclient code10:35
*** martyntaylor has joined #openstack-dev10:35
rushiagr2ekarlso: awh. sorry!10:35
*** Oneiroi has quit IRC10:35
*** claxton has quit IRC10:36
*** paragan has quit IRC10:38
*** jprovazn has quit IRC10:39
*** boris-42 has quit IRC10:39
*** Oneiroi has joined #openstack-dev10:41
*** ruhe is now known as _ruhe10:42
*** kgriffs is now known as kgriffs_afk10:42
*** jpeeler has quit IRC10:44
*** nosnos_ has quit IRC10:46
*** gongysh has quit IRC10:47
*** saschpe has joined #openstack-dev10:49
*** Drankis has quit IRC10:49
*** boris-42 has joined #openstack-dev10:50
*** yassine has quit IRC10:51
*** Drankis has joined #openstack-dev10:52
*** venkatesh_ has joined #openstack-dev10:56
*** saschpe has quit IRC10:57
*** exed_ has quit IRC10:57
*** venkatesh has quit IRC10:57
*** dim_ has joined #openstack-dev10:58
*** exed_ has joined #openstack-dev10:59
jamielennoxekarlso: just a little - what are you looking for?11:01
*** rohitk has joined #openstack-dev11:01
*** _ruhe is now known as ruhe11:06
*** claxton has joined #openstack-dev11:07
florentflamentjammielennox: have you written some doc with dolph about how we could manage the transition towards better endpoints management (allowing users to choose which API version to use)?11:08
jamielennoxflorentflament: sorry, just having a couple of conversations at once11:08
ekarlsojamielennox: wondering if it's usable for a client :)11:09
florentflamentjamielennox: ok, so how can we do to start working in that direction ?11:10
jamielennoxflorentflament: ok there isn't a doc that has been written up that i know of and there are still some problems with it11:10
jamielennoxthe main problem is that we have to keep compatability with what we have and that's been a real pain11:10
jamielennoxthe thought is to that if you provide an unversioned endpoint in the service catalog then we can leave it up to the individual clients to deal with which versions are available11:11
florentflamentyes, ideally we should provide a way for a smooth transition11:11
*** jprovazn has joined #openstack-dev11:11
jamielennoxthey should be doing some sort of available version checking anyway11:11
*** UKn0Me has quit IRC11:11
jamielennoxekarlso: i know we've talked about this before :) if what you're looking for is the base managers and resources then you may as well11:11
florentflamentYes, some kind of discovery mechanism, which would have to be implemented in each client11:11
jamielennoxflorentflament: so i think i can make it work without being done in every client11:13
*** Sumeniac2 has joined #openstack-dev11:14
*** Sumeniac has quit IRC11:14
jamielennoxflorentflament: so we've been working towards making a common communication object that all clients would share11:14
florentflamentjamielennox: mmh that would ease the transition11:14
jamielennoxthe point of this is to re-use the tokens and communication parameters (certs etc) amongst all the clients11:14
*** jcoufal has quit IRC11:14
jamielennoxthe basics of this has been done in keystoneclient11:14
*** jcoufal has joined #openstack-dev11:15
jamielennoxthe next step will be auth plugins, it's here: https://review.openstack.org/#/c/60751/ and will mean that we can get rid of nova and the individual client's authentication11:15
*** venkatesh_ has quit IRC11:15
ekarlsojamielennox: I may as well what ?11:16
jamielennoxflorentflament: and then this one https://review.openstack.org/#/c/60752/ which asks the auth plugin for the url to use talking to a server11:16
*** markmc has joined #openstack-dev11:16
jamielennoxekarlso: I want to rip out the session basic work but i guess by now i will have to put that into oslo anyway11:16
ekarlsojamielennox: rip it out how ?11:17
jamielennoxekarlso: so there are some auth plugins work in apiclient that i think will be replaced soon11:17
florentflamentjamielennox: I don't know much about the auth plugins. I'll have to check that. Thanks for the links11:17
florentflamentIs there a way I can contribute to help you ?11:18
jamielennoxekarlso: however what's in base.py with regards to the managers and resources isn't going to change much for now11:18
*** yaguang has quit IRC11:18
*** ruhe is now known as _ruhe11:18
jamielennoxekarlso: i think you may as well just use it, yours wont be the only client we will have to change soon11:19
jamielennoxekarlso: which client are you looking for?11:19
ekarlsojamielennox: just looking for common api helpers :11:19
ekarlsoother words apiclienjt code11:19
*** rohitk has quit IRC11:19
jamielennoxflorentflament: ok, so what i'm thinking with that last review - once we have the auth plugin being asked for where the client should talk to we can move all that discovery into the one place11:20
jamielennoxif you look at how that last one works what it means will be that a v3 nova client will only need to say session.get('/path/to', service='compute', version='v3')11:21
jamielennoxekarlso: so an established client?11:21
jamielennoxflorentflament: so no discovery required for the nova client11:22
florentflamentjamielennox: Sounds good11:22
*** DynamiteXXL has quit IRC11:23
jamielennoxso at least we can then handle the service catalog and talking to an unversioned endpoint and finding out what is available from one centralized place (that also knows how to use the service catalog)11:23
*** _ruhe is now known as ruhe11:23
jamielennoxflorentflament: so the first thing will be the auth plugins11:24
*** asalkeld has quit IRC11:24
jamielennoxunfortunately this is a little bit of longer term planning (though i'm hoping for the majority for icehouse)11:25
florentflamentjamielennox: I agree with this approach. I'll have to have a look at this auth plugin to go further11:25
jamielennoxflorentflament: it's mostly based around the auth plugin stuff from nova if you want to look there11:25
*** aditirav has quit IRC11:25
jamielennoxit doesn't need to be compatible because it's a new way of doing things11:25
*** aditirav has joined #openstack-dev11:25
jamielennoxflorentflament: it will be good to have someone else working in this space11:26
florentflamentjamielennox: Mmh, haven't seen nova's auth plugin neither. I may look there too11:26
jamielennoxthe auth plugin review can be a little confusing because most of that review is figuring out how we can hack the existing code into the new method11:26
*** asalkeld has joined #openstack-dev11:27
jamielennoxthe problem with working client side is that we aren't allowed to break compatability at all11:28
jamielennoxand there is a lot of crap code that really needs to be ripped out11:28
florentflamentjamielennox: sure11:28
florentflamentAnyway, if going towards the auth plugin, each client will have to be updated to use the plugin.11:29
*** boris-42 has quit IRC11:29
florentflamentMaybe we can do a transition in 2 steps:11:30
*** pcm_ has joined #openstack-dev11:30
*** pcm_ has quit IRC11:30
florentflamentFirst, by maintaining current version API endpoints, and updating clients to use the auth pluging - that way compatibility will be kept during the transition11:31
*** pcm_ has joined #openstack-dev11:31
florentflamentSecond, once every client use the auth plugin, just update the plugin so that it can use unversionned API endpoints11:31
*** AndreyGrebenniko has quit IRC11:31
florentflamentjamielennox: Does it sound reasonable ?11:32
jamielennoxflorent yes and no11:32
jamielennoxhmm didn't press tab there11:32
florentflament;)11:32
jamielennoxeach client won't need to support the auth token but they will need to support the session object11:32
jamielennoxbut it's more or less the same problem11:33
*** kgriffs_afk is now known as kgriffs11:33
jamielennoxflorentflament: from most of what i've seen keystone is the main service really trying to push to a new api version11:33
jamielennoxi know there are new ones coming but is there anyone else really wanting it now?11:34
*** rohitk has joined #openstack-dev11:34
*** teran has joined #openstack-dev11:34
florentflamentjamielennox, don't know much about other project's api versions, but clearly the identity v3 API provides many very interesting features11:36
jamielennoxflorentflament: yep, we have the issue for the time being at least that auth_token (the token verification middleware) requires the v2 api being up11:36
*** che-arne has joined #openstack-dev11:37
jamielennoxflorentflament: are you looking to use the API or hack around it in your own project?11:37
*** boris-42 has joined #openstack-dev11:38
florentflamentWe are thinking about using the v3 API, mostly to benefit from the domain feature, in a near future.11:39
*** tuxtobin_ has quit IRC11:39
*** csaba|afk is now known as csaba11:39
*** michchap_ has joined #openstack-dev11:41
*** michchap has quit IRC11:41
florentflamentjamielennox, so I understand that the auth_token  requiring the v2 api may be an issue.11:41
*** claxton has quit IRC11:42
*** dstanek has joined #openstack-dev11:42
*** kgriffs is now known as kgriffs_afk11:43
jamielennoxflorentflament: so you are always able to just run the V3 client directly and it will work just fine11:43
jamielennoxit just requires knowing the url where it will be11:43
*** yamahata has quit IRC11:43
*** exed_ has quit IRC11:44
florentflamentjamielennox, still the v3 client gets its admin endpoint from the catalog11:45
*** claxton has joined #openstack-dev11:45
*** jtomasek has joined #openstack-dev11:46
jamielennoxoh right, yea forgot about that - getting late here11:46
jamielennoxso if you set client.management_url then it will override what you get from the service catalog11:47
florentflamentjamielennox, BTW, i'm not mistaking the distinction between admin and public endpoint doesn't make much sense with the v3 API. So maybe the client doesn't need to get its endpoint from the catalog11:47
jamielennoxits not a good long term solution, but there are ways of getting around it for the time being11:47
jamielennoxflorentflament: yea, we're trying to ditch the concept of admin endpoints altogether11:48
*** dstanek has quit IRC11:48
jamielennoxkeystone is the only one that uses it and it was something that was left around from the v2 api11:48
florentflamentjamielennox, True that there are ways of getting around, but I would prefer not too ; )11:48
jamielennoxfor V3 admin/public is the sam e11:48
jamielennoxflorentflament: yep i understand11:49
*** exed_ has joined #openstack-dev11:49
florentflamentjamielennox, so a way to deal with the v2/v3 issue (at least in keystoneclient) would be to not use the catalog since the auth url is already provided and can be used both as public and admin endpoint ?11:50
*** dkuffner has quit IRC11:52
florentflamentdon't know if this is the best way to go11:52
jamielennoxsomewhat, we're trying to keep using the catalog endpoints - there are times like if you have a different endpoint for a project or domain you might want to change that11:52
*** viktors1 has quit IRC11:52
jamielennoxflorentflament: nobody does that yet11:52
*** rohitk has quit IRC11:54
*** pschaef has joined #openstack-dev11:55
florentflamentjamielennox, using the catalog endpoints seems a better approach11:55
florentflament(in the long run)11:55
*** rtheis has quit IRC11:56
jamielennoxyep11:56
florentflamentjamielennox, so there's no obvious solution right now.11:56
jamielennoxno :(11:56
florentflamentjamielennox, in the end I like my approach there ; ) https://review.openstack.org/#/c/64834/11:56
jamielennoxyou can make certain situations work by hacking it in11:56
*** rfolco has joined #openstack-dev11:57
jamielennoxthat's why i never said no - it's not good for long term but it might save some problems for certain people11:57
jamielennoxthough you would have to hard code catalog entries so it's not that much better11:57
jamielennox(you can do the same thing by just asking the service catalog for that name)11:58
florentflamentjamielennox, In the mean time, I'll have a look at the auth plugin. And try and propose better long term solutions.11:58
*** rfolco_ has joined #openstack-dev11:58
*** gongysh has joined #openstack-dev11:58
jamielennoxdolph (me too) aren't a fan of adding things that will have to be supported later - but i'm not sure if that one is something we don't mind supporting anyway11:58
florentflamentjamielennox, Yes but anyway we have to fill endpoints in the catalog11:58
*** safchain has quit IRC11:58
*** UKn0Me has joined #openstack-dev11:59
florentflamentjamespage, maybe I misunderstood .. Where would I to hardcode catalog entries ?11:59
*** aditirav_ has joined #openstack-dev12:00
*** mkollaro has joined #openstack-dev12:00
florentflamentjamielennox, look at chmouel comment, I think that anyway the patch may be useful12:00
jamielennoxyou would need to add your identiyv3 and then create the client with the right endpoint name12:01
jamielennoxso it would be a very solution endpoint implementation12:01
florentflamentjamielennox, I was thinking about adding a --service_type option to the CLI client, that would allow the user to specify the name of the service type12:01
jamielennoxso the CLI is v2 only12:02
jamielennoxwe aren't supporting v3 by CLI12:02
jamielennoxit is moving towards openstack-client12:02
florentflamentjamielennox, python-openstackclient begins to support API v312:02
*** coolsvap has quit IRC12:02
florentflamentjamielennox, that's were I was hoping to add the option12:03
florentflaments/were/where/12:03
jamielennoxflorentflament: oh, ok - run it by dtroyer and co there as well to see if they are ok with supporting that12:03
*** aditirav has quit IRC12:03
*** aditirav_ is now known as aditirav12:03
jamielennoxagain if they are willing to support it there they really don't need our help12:04
jamielennoxbut it would be a good reason to have it added to the client12:04
jamielennoxgood reason/stronger incentive12:05
*** exed_ has quit IRC12:05
*** ruhe is now known as ruhe_away12:05
florentflamentWell, the openstack-client uses the keystoneclient library12:05
jamielennoxit does, it uses a bunch of them - and i think it has hacks around most of them to get them to work correctly12:05
florentflamentSo to make it work on openstackclient, the feature has to be added to the keystoneclient library12:05
*** rkukura has quit IRC12:06
florentflamentWell, I was also thinking about having Horizon working with the Identity v3 API ; )12:06
florentflamentas a next step ...12:06
*** DynamiteXXL_ has joined #openstack-dev12:07
*** ndipanov has joined #openstack-dev12:07
jamielennoxhmm, yea i can see how you could add i there that way...12:08
jamielennoxi don't know - it's not a good long term strategy and i don't know if it's a wise thing to promote because people will jump on something like that12:08
*** ruhe_away is now known as ruhe12:08
jamielennoxbut if you can clear the idea with dolphm then that's really all you need12:09
*** dkranz has joined #openstack-dev12:09
jamielennox(it actually may become easier to support a service_type option with session object anyway)12:09
*** exed_ has joined #openstack-dev12:10
florentflamentjamielennox, ; ) I've seen some patches about session objects12:11
*** dims_ is now known as dims12:11
*** rohitk has joined #openstack-dev12:11
jamielennoxflorentflament: anyway i'm  out for the night, have a chat to dolphm (west coast US) and try to convince him, it won't affect my plans at all i think and i can see your reasoning12:12
florentflamentjamielennox, ok I'll try and catch dolphm to talk about that stuff12:12
florentflamentjamielennox, thanks for the info12:13
florentflamentjamielennox, I'm gmt+112:13
jamielennoxflorentflament: any time12:13
*** fifieldt_ has quit IRC12:13
jamielennoxgmt+10 so this time is unusual for me12:13
florentflamentjamielennox, ok .. I'll manage to find reasonable hours to talk to dolphm and you ..12:14
jamielennoxheh, yep they just won't overlap12:14
florentflament;)12:15
*** dstufft_ is now known as dstufft12:15
*** belmoreira has left #openstack-dev12:17
*** mjfork has quit IRC12:17
*** belmoreira has joined #openstack-dev12:19
*** eglynn is now known as eglynn-lunch12:19
*** FunnyLookinHat has joined #openstack-dev12:22
*** derekh has quit IRC12:23
*** ruhe is now known as _ruhe12:23
*** rfolco_ has quit IRC12:23
*** aditirav has quit IRC12:24
*** claxton has quit IRC12:25
*** sumansn_ has quit IRC12:25
*** radez_g0n3 is now known as radez12:25
*** morazi has joined #openstack-dev12:26
*** saschpe has joined #openstack-dev12:29
*** yatin has joined #openstack-dev12:30
*** yassine has joined #openstack-dev12:32
*** renlt has joined #openstack-dev12:33
*** kgriffs_afk is now known as kgriffs12:34
*** exed_ has quit IRC12:34
*** renlt has quit IRC12:34
*** renlt has joined #openstack-dev12:35
*** dstanek has joined #openstack-dev12:35
*** crank has quit IRC12:35
*** rushiagr2 has quit IRC12:36
*** crank has joined #openstack-dev12:36
*** drewlander has joined #openstack-dev12:39
*** exed_ has joined #openstack-dev12:40
akrivokahmm, nova and cinder are giving me different info on availability zones12:41
akrivokahttp://paste.openstack.org/show/60874/12:41
akrivokais this expected?12:41
*** rohitk has quit IRC12:43
*** jroovers has quit IRC12:43
*** kgriffs is now known as kgriffs_afk12:44
*** dstanek has quit IRC12:47
*** sn0wb1rd has quit IRC12:47
*** sn0wb1rd has joined #openstack-dev12:49
*** _ruhe is now known as ruhe12:50
*** mrunge has quit IRC12:54
*** heyongli has joined #openstack-dev12:54
*** dkranz has quit IRC12:54
*** gmoro has quit IRC12:56
*** NikitaKonovalov has quit IRC12:57
*** derekh has joined #openstack-dev12:57
*** irenab_ is now known as _irenab12:57
*** bcrochet|bbl is now known as bcrochet13:00
*** johnthetubaguy1 is now known as johnthetubaguy13:00
*** dkranz has joined #openstack-dev13:01
*** glenng has joined #openstack-dev13:01
*** NikitaKonovalov has joined #openstack-dev13:02
*** markvoelker1 has joined #openstack-dev13:03
*** glenng1 has joined #openstack-dev13:03
*** jtomasek has quit IRC13:04
*** glenng1 has quit IRC13:04
*** dkuffner has joined #openstack-dev13:04
*** jtomasek has joined #openstack-dev13:05
*** alee_ has quit IRC13:05
antiglukI have some strange issue, https://review.openstack.org/#/c/65665/ on Zuul status is successfully checked bug no +113:06
antiglukand recheck doesn't work13:06
*** glenng has quit IRC13:06
*** gmoro has joined #openstack-dev13:07
*** dkranz has quit IRC13:08
*** sgordon has joined #openstack-dev13:09
*** eglynn-lunch is now known as eglynn13:11
*** jcoufal has quit IRC13:11
*** thurloat has joined #openstack-dev13:13
dolphmflorentflament: jamielennox: o/13:14
florentflamentdolphm, hi13:14
*** ndipanov has quit IRC13:14
florentflamentdolphm, I think jamielennox is sleeping13:15
dolphmyeah, i'm catching up on the conversation13:16
*** sandywalsh has quit IRC13:16
florentflamentdolphm, ok13:17
*** jroovers has joined #openstack-dev13:18
*** bswartz has quit IRC13:18
antigluknevermind. all works13:18
*** jroovers has quit IRC13:18
*** KeithSha_ has quit IRC13:18
*** jtomasek_ has joined #openstack-dev13:18
*** jcoufal has joined #openstack-dev13:18
dolphmflorentflament: alright, i'm caught up, but lost on what exactly you wanted to ask me13:18
*** jroovers has joined #openstack-dev13:18
dolphmflorentflament: or wanted to convince me of?13:18
florentflamentdolphm, ok ... basically I wanted to convince you that the patch https://review.openstack.org/#/c/64834/ wasn't bad13:19
dolphmflorentflament: the whole thing or just a slice of it?13:20
*** viktors has joined #openstack-dev13:20
*** jtomasek has quit IRC13:20
florentflamentdolphm, I discussed with jamielennox about the auth plugin that would allow better endpoints management.13:21
dolphmflorentflament: full stop- do not version the service type.13:22
*** KeithSharp has joined #openstack-dev13:22
dolphmflorentflament: IMO other projects have made a terrible UX choice in adopting a bunch of versioned service types. unfortunately, keystone should have been the first project to lead with a better solution but we fell behind on that front when versioning our own api. we need to provide a better solution, not adopt the same hack13:22
*** mkollaro has quit IRC13:23
dolphmflorentflament: i haven't done a full review of your patch, so if there's something worth pulling out -- i'd be interested13:23
dolphmbut end users should not be specifying service types that their client should be looking for. the entire goal of service types is to facilitate automated discovery13:24
florentflamentWell. I understand. I won't advocate for versioned service type. I'll try and help jamielennox in supporting unversionned service types.13:24
*** alexpilotti has joined #openstack-dev13:25
*** prad has joined #openstack-dev13:25
florentflamentHowever, the patch only adds an argument the Client constructor13:25
florentflamentallowing to specify the name of the service type (versus harcoded 'identity' name)13:26
*** safchain has joined #openstack-dev13:26
*** thomasem has joined #openstack-dev13:26
*** vladikr has joined #openstack-dev13:27
florentflamentdolphm, somehow there is nothing wrong in letting the user set the names of his services.13:27
*** jcoufal_ has joined #openstack-dev13:28
*** jcoufal has quit IRC13:28
dolphmflorentflament: right, that's the other half of my objection-- is not a "name" at all13:28
dolphmit's not user-defined13:28
*** gmoro has quit IRC13:29
*** ndipanov has joined #openstack-dev13:30
*** vartom111111116 has quit IRC13:30
dolphmflorentflament: your deployment is *broken* if you use an unexpected service type, and you shouldn't be putting the burden on your users to fix it13:31
*** radez is now known as radez_g0n313:31
*** sandywalsh has joined #openstack-dev13:31
*** mkollaro has joined #openstack-dev13:31
florentflamentdolphm, ok I give up. We shall keep hardcoded service types13:32
*** aeperezt has joined #openstack-dev13:33
*** Anukalp has quit IRC13:33
florentflamentdolphm, I understand. I'll look at how I can help jamielennox in managing different versions of service APIs.13:34
*** kgriffs_afk is now known as kgriffs13:35
*** achampion has quit IRC13:36
*** doron_afk is now known as doron13:36
*** rushiagr2 has joined #openstack-dev13:37
*** neeti has quit IRC13:38
*** jasondotstar has quit IRC13:38
*** prad has quit IRC13:38
*** mdomsch has joined #openstack-dev13:39
*** jasondotstar has joined #openstack-dev13:39
*** jtomasek_ has quit IRC13:39
*** CaptTofu has joined #openstack-dev13:40
*** cagrev has joined #openstack-dev13:40
*** gmoro has joined #openstack-dev13:41
*** renlt has quit IRC13:41
*** mindpixel has quit IRC13:42
*** jtomasek has joined #openstack-dev13:42
*** kgriffs is now known as kgriffs_afk13:45
*** rcj has joined #openstack-dev13:45
*** bswartz has joined #openstack-dev13:47
*** yamahata has joined #openstack-dev13:49
*** yamahata has quit IRC13:50
*** yamahata has joined #openstack-dev13:51
*** rushiagr2 is now known as rushiagr13:51
*** paragan has joined #openstack-dev13:52
*** paragan has quit IRC13:52
*** paragan has joined #openstack-dev13:52
*** doug_shelley66 has quit IRC13:52
*** sballe has joined #openstack-dev13:52
*** reIce has joined #openstack-dev13:54
*** gmoro has quit IRC13:54
reIcehi13:55
*** lexano has quit IRC13:55
dolphmreIce: o/13:56
*** dvarga has joined #openstack-dev13:58
*** bswartz has quit IRC13:59
*** mriedem has joined #openstack-dev14:00
*** dprince has joined #openstack-dev14:00
*** med_ has quit IRC14:01
*** jdob has joined #openstack-dev14:01
*** jtomasek_ has joined #openstack-dev14:02
*** jtomasek has quit IRC14:02
*** medberry has joined #openstack-dev14:02
*** medberry has quit IRC14:02
*** tzumainn has joined #openstack-dev14:03
_irenabbaoli: hi14:03
*** armax has joined #openstack-dev14:03
*** lbragstad has joined #openstack-dev14:04
*** jpeeler has joined #openstack-dev14:05
*** jpeeler has joined #openstack-dev14:05
*** noslzzp has joined #openstack-dev14:05
*** jayg|g0n3 is now known as jayg14:05
*** ndipanov has quit IRC14:07
*** amuller has joined #openstack-dev14:07
*** gmoro has joined #openstack-dev14:07
*** romcheg has quit IRC14:07
*** ndipanov has joined #openstack-dev14:07
*** romcheg has joined #openstack-dev14:08
*** xga_ has joined #openstack-dev14:08
*** xga has quit IRC14:08
*** kwss has joined #openstack-dev14:08
*** thuc has joined #openstack-dev14:08
*** amotoki has quit IRC14:09
*** _irenab has quit IRC14:10
*** heyongli has quit IRC14:11
*** coolsvap has joined #openstack-dev14:11
*** doron has left #openstack-dev14:13
*** gmoro has quit IRC14:14
*** gordc has joined #openstack-dev14:14
*** yaguang has joined #openstack-dev14:17
*** yatin has quit IRC14:18
*** peristeri has joined #openstack-dev14:19
*** ayoung has joined #openstack-dev14:21
*** prad has joined #openstack-dev14:22
*** SergeyLukjanov has joined #openstack-dev14:23
*** lbragstad has quit IRC14:25
*** gmoro has joined #openstack-dev14:26
*** michchap_ has quit IRC14:26
*** lbragstad has joined #openstack-dev14:26
*** michchap has joined #openstack-dev14:27
*** nkinder has quit IRC14:29
*** neelashah has joined #openstack-dev14:30
*** lbragstad has quit IRC14:31
*** jecarey has quit IRC14:31
*** stevemar has joined #openstack-dev14:32
*** achampion has joined #openstack-dev14:32
*** prad has quit IRC14:33
*** doug_shelley66 has joined #openstack-dev14:33
*** gmoro has quit IRC14:33
*** jmw has quit IRC14:35
*** kgriffs_afk is now known as kgriffs14:35
*** dvarga is now known as dvarga|away14:36
*** dvarga|away is now known as dvarga14:36
*** mrodden has joined #openstack-dev14:36
*** dbalog has joined #openstack-dev14:37
*** stevemar has quit IRC14:38
*** markmcclain has quit IRC14:39
*** stevemar has joined #openstack-dev14:40
*** ilyashakhat has quit IRC14:41
*** eharney has joined #openstack-dev14:41
*** neelashah has quit IRC14:41
*** mjfork has joined #openstack-dev14:42
*** FunnyLookinHat has quit IRC14:42
*** reIce has quit IRC14:42
*** vijendar has joined #openstack-dev14:42
*** pberis has joined #openstack-dev14:43
*** GheRiver1 is now known as GheRivero14:43
*** rtheis has joined #openstack-dev14:43
*** thuc has quit IRC14:43
*** thuc has joined #openstack-dev14:44
ayoungkwss, Federationg things are looking good.  Anything you are stuck on?14:45
*** kgriffs is now known as kgriffs_afk14:45
*** gmoro has joined #openstack-dev14:45
kwssayoung: not right now, just coding up the changes to my plugin at the moment14:46
ayoungkwss, cool.  JUst checking14:46
kwssayoung, thanks :)14:46
*** bashok has quit IRC14:47
*** jecarey has joined #openstack-dev14:48
*** thuc has quit IRC14:48
*** CaptTofu has quit IRC14:48
*** READ10 has joined #openstack-dev14:49
*** rods1 has joined #openstack-dev14:50
*** aveiga has joined #openstack-dev14:52
*** jtomasek_ has quit IRC14:52
*** jtomasek has joined #openstack-dev14:54
*** lbragstad has joined #openstack-dev14:54
*** terriyu has joined #openstack-dev14:55
*** cpallares has joined #openstack-dev14:56
*** rraja has joined #openstack-dev14:57
*** marun has quit IRC14:57
*** thuc has joined #openstack-dev14:57
*** prad has joined #openstack-dev14:57
*** herndon_ has joined #openstack-dev14:58
*** CaptTofu has joined #openstack-dev14:58
*** glenng has joined #openstack-dev14:59
*** bswartz has joined #openstack-dev14:59
*** rkukura has joined #openstack-dev15:00
*** carl_baldwin has joined #openstack-dev15:00
*** pmathews has joined #openstack-dev15:01
*** burt has joined #openstack-dev15:02
*** thuc has quit IRC15:02
*** CaptTofu has quit IRC15:02
*** markmcclain has joined #openstack-dev15:02
*** CaptTofu has joined #openstack-dev15:02
*** thuc has joined #openstack-dev15:02
*** gargya has joined #openstack-dev15:02
*** xga_ has quit IRC15:04
*** gordc has quit IRC15:05
*** thuc has quit IRC15:07
*** tdruiva_ has joined #openstack-dev15:07
*** CaptTofu has quit IRC15:07
*** tdruiva_ has quit IRC15:07
*** antigluk__ has quit IRC15:08
*** tdruiva_ has joined #openstack-dev15:08
*** zz_paulczar is now known as paulczar15:09
*** gordc has joined #openstack-dev15:09
marekdkwss: did you chck the libs to be used instead of pysaml ?15:09
*** kbrierly has joined #openstack-dev15:09
kwssmarekd, I'm using pyxmlsec in my latest implementation but I'll have to double check if it has any other dependencies15:11
*** gordc1 has joined #openstack-dev15:11
*** kbrierly has quit IRC15:11
*** zaneb has quit IRC15:12
*** kbrierly has joined #openstack-dev15:12
marekdkwss: but that's just for the XML, right?15:12
*** marun has joined #openstack-dev15:12
*** kbrierly has quit IRC15:12
*** kbrierly has joined #openstack-dev15:13
kwssmarekd, pyxmlsec does the signature verification, libxml2 is used to parse the XML15:14
*** gordc has quit IRC15:14
*** kbrierly has quit IRC15:15
*** neelashah has joined #openstack-dev15:15
marekdkwss: so, in other words you are going to build SAML assertions by yourself and not depend on libraries like pysaml.15:16
*** kbrierly has joined #openstack-dev15:16
*** sc68cal_ is now known as sc68cal15:17
*** sc68cal has joined #openstack-dev15:17
kwssmarekd, yes, but I only build authnrequests, the authn/attribute assertions are assumed to be passed to the plugin by the client15:17
*** jruzicka has joined #openstack-dev15:18
marekdkwss: so you trust the client passes valid SAML response, and the only thing you do is check it's signature.15:18
marekdso at least we know it was issued by a trusted IDP.15:19
*** jobewan has joined #openstack-dev15:19
*** FunnyLookinHat has joined #openstack-dev15:19
*** topol has joined #openstack-dev15:19
*** CaptTofu has joined #openstack-dev15:19
*** gordc1 has quit IRC15:20
kwssmarekd, yes, but after the attributes are extracted they are verified according to the issuing/mapping rules as well15:20
*** gordc has joined #openstack-dev15:20
*** nkinder has joined #openstack-dev15:21
*** omachace has left #openstack-dev15:21
*** navid__ has left #openstack-dev15:22
*** JordanP has quit IRC15:22
*** gmoro has quit IRC15:22
marekdyou are talking about mapping engine now (attributes -> keystone groups), or something else?15:22
*** JordanP has joined #openstack-dev15:23
*** gordc1 has joined #openstack-dev15:23
*** krotscheck has joined #openstack-dev15:23
*** rwsu has joined #openstack-dev15:23
*** dims has quit IRC15:23
*** pmathews has quit IRC15:23
*** pmcg has quit IRC15:23
kwssmarekd, the mapping is part of it, but we'd ideally like to have another stage of verification which checks that the idp is trusted to issue the given attributes15:24
*** dims has joined #openstack-dev15:24
*** pmcg has joined #openstack-dev15:25
marekdkwss: there was one proposal from David about that, I remember now.15:25
*** gordc has quit IRC15:25
*** xga has joined #openstack-dev15:25
*** jnoller has joined #openstack-dev15:26
kwssyea, I've got a simple file based issuing policy class in my plugin but we'd like to add an API for it15:26
marekdkwss: i don't know that well SAML, but does the signature mean  also guarantess that no values were changed (mitm attack)?15:26
*** mfink has joined #openstack-dev15:27
*** dkranz has joined #openstack-dev15:27
kwssmarekd, yea, the digest value of the signature can prove that the assertion is unchanged15:27
*** zaitcev has joined #openstack-dev15:27
marekdkwss: ok, no more questions.15:27
kwssmarekd, ok, feel free to buzz me again if any more pop up :)15:28
*** mfer has joined #openstack-dev15:29
*** gimps_ has joined #openstack-dev15:32
*** aswadrangnekar1 has quit IRC15:33
*** aloga has quit IRC15:33
*** aloga has joined #openstack-dev15:33
*** jorisroovers has joined #openstack-dev15:34
*** gmoro has joined #openstack-dev15:34
*** kevinconway has joined #openstack-dev15:35
*** rnirmal has joined #openstack-dev15:35
*** jdob has quit IRC15:35
rpodolyakabnemec: ping15:35
*** gimps_ has quit IRC15:35
*** jnoller has quit IRC15:35
*** kgriffs_afk is now known as kgriffs15:36
*** jdob has joined #openstack-dev15:36
*** tongli has joined #openstack-dev15:37
*** jroovers has quit IRC15:37
bnemecrpodolyaka: ack15:37
*** carlp has joined #openstack-dev15:37
rpodolyakabnemec: hey! May I ask to review https://review.openstack.org/#/c/63782/ when you have a free minute? it's kind of a blocker for oslo.db15:37
*** jnoller has joined #openstack-dev15:38
*** gordc1 has quit IRC15:38
*** tdruiva_ is now known as tdruiva15:38
*** zaneb has joined #openstack-dev15:38
bnemecrpodolyaka: Sure, I'll take a look15:39
rpodolyakabnemec: thanks a lot!15:39
*** gszasz has quit IRC15:41
*** dvarga is now known as dvarga|away15:41
*** dvarga|away is now known as dvarga15:41
*** mfink has quit IRC15:41
*** xga has quit IRC15:41
*** xga_ has joined #openstack-dev15:41
*** mfink has joined #openstack-dev15:42
*** jgrimm has joined #openstack-dev15:44
*** mfink has quit IRC15:44
*** mfink has joined #openstack-dev15:44
*** mfink has quit IRC15:45
*** otherwiseguy has joined #openstack-dev15:46
*** mfink has joined #openstack-dev15:46
*** gimps_ has joined #openstack-dev15:46
*** gargya has quit IRC15:48
*** rcleere has joined #openstack-dev15:48
*** ilyashakhat has joined #openstack-dev15:48
*** ramishra has joined #openstack-dev15:50
*** lbragstad has quit IRC15:51
*** rm_work has quit IRC15:51
stevemarmarekd ping15:52
marekdstevemar: hey15:52
*** jmckind has joined #openstack-dev15:52
*** galstrom_zzz is now known as galstrom15:52
*** gszasz has joined #openstack-dev15:53
stevemarmarekd, i missed your ping last night, i think you were asking about reviewing my patches15:53
marekdstevemar: no problem15:53
stevemarmarekd, if you could, please do :D https://review.openstack.org/#/c/60424/ and https://review.openstack.org/#/c/59848/15:53
*** chandankumar_ has quit IRC15:54
marekdstevemar: so basically this is the lateset version of the mapping engine, or just a rebase so it also contains IdP CRUD code?15:54
*** iartarisi has joined #openstack-dev15:55
stevemarjust a rebase15:55
stevemarthe engine will be in another patch15:55
chmouelbugsduggan: ping15:55
stevemardifferent patch, not a new one15:55
*** jmontemayor has joined #openstack-dev15:55
marekdstevemar: this what i was asking about :-) cause didn't know whether you are almost ready to upload new code and my comments would not be relevant.15:56
stevemarmarekd, ... the mapping engine will be in another change set, that will depend on this one15:56
*** gordc has joined #openstack-dev15:56
stevemardon't wait, just comment :D15:56
marekdstevemar: ok15:56
*** JonnyNomad has joined #openstack-dev15:57
*** markmcclain has quit IRC16:00
*** paulczar is now known as zz_paulczar16:00
*** Ruetobas has quit IRC16:01
*** gimps_ has quit IRC16:01
*** gothicmindfood has joined #openstack-dev16:02
*** gothicmindfood has quit IRC16:02
*** kenperkins_ is now known as kenperkins16:02
*** rraja has quit IRC16:02
*** joesavak has joined #openstack-dev16:02
*** zz_paulczar is now known as paulczar16:02
*** gothicmindfood has joined #openstack-dev16:02
*** gothicmindfood has quit IRC16:02
*** Ruetobas has joined #openstack-dev16:03
*** terriyu has quit IRC16:03
*** gothicmindfood has joined #openstack-dev16:04
bugsdugganchmouel: pong16:04
*** jsavak has joined #openstack-dev16:04
chmouelbugsduggan: hello,16:04
bugsdugganchmouel: hi16:05
ayoungchmouel, so...I see you are taking an interest in the SSL patch, and I was wondering if you could help drive Swift toward using the requests library.16:05
chmouelbugsduggan: I have updated the reviews directly since I have logged a  feature  request on requests16:05
bugsdugganchmouel: thanks, do you still need me to link that PDF for the requests folks?16:06
chmouelayoung: yep, down the line i think everybody would be happy with request if we can have this implemented https://github.com/kennethreitz/requests/issues/185316:06
ayoungchmouel, looking16:06
chmouelbugsduggan: that wold be good if you can link it in that review, I am looking at the code and it does not seem too hard to add it16:06
bugsdugganchmouel: will do16:06
chmouelbut stepping in a non openstack project is weird these days :)16:07
*** xga_ has quit IRC16:07
*** xga has joined #openstack-dev16:07
bugsdugganchmouel: I have a vague recollection of looking into requests before and finding that the library its relying on (urllib2 iirc) doesn't have the ability to turn SSL compression off either, hence the decision to use raw(ish) openssl stuff16:07
*** joesavak has quit IRC16:08
*** Ruetobas has quit IRC16:08
*** gordc has quit IRC16:08
*** spzala has joined #openstack-dev16:09
*** teran has quit IRC16:09
chmouelbugsduggan: yeah this may be have to be done inside urllib316:09
*** markmcclain has joined #openstack-dev16:10
bugsdugganchmouel: yes, I backed off at that point as it looked like it might take a while to land in urllib316:10
chmouelbugsduggan: i.e: here https://github.com/shazow/urllib3/blob/master/urllib3/util.py#L61016:10
chmouelbugsduggan: why? seems like they have updates like three days ago16:11
ayoungbugsduggan, does that mean we need to modify both librarires?  urllib to support the option, and requests to pass it on through?16:11
*** rm_work|away has joined #openstack-dev16:11
bugsdugganchmouel: ah, they didn't last time I checked (although in fairness that was a long time ago now)16:11
*** ifarkas has quit IRC16:11
*** medberry has joined #openstack-dev16:12
*** medberry has quit IRC16:12
*** medberry has joined #openstack-dev16:12
bugsdugganayoung: I think that is the RightThing™ to do, yes16:12
chmouelayoung, bugsduggan: it would seem like it16:12
*** herndon_ has left #openstack-dev16:12
chmouelbugsduggan: is it yours? https://github.com/shazow/urllib3/pull/30916:12
chmouelbugsduggan: well anyway the dude sent patch like 5 hours ago16:13
chmouelhooray for the timing 8-)16:13
bugsdugganchmouel: no, although that looks like it might save us all a lot of headaches!16:13
chmouelbugsduggan: yeah :)16:13
*** Ruetobas has joined #openstack-dev16:13
bugsdugganchmouel: (fyi, I'm bugsduggan on github)16:13
*** paragan has quit IRC16:14
*** rdas has quit IRC16:14
tristanCbugsduggan: hello!16:15
bugsduggantristanC: hi16:15
silehtmarkmc, hi16:15
tristanCbugsduggan: chmouel: ok, but then, how long will it takes for request to have the required feature ?16:16
*** markmcclain has quit IRC16:16
*** gordc has joined #openstack-dev16:16
*** lbragstad has joined #openstack-dev16:16
tristanCbugsduggan: maybe we can premptively switch to request module before it allow compression disabling16:16
chmoueltristanC: may take a bit of a while ideally if we can have this review passing properly to have the security folks appeased it would be great working in the meantime on the requests/urllib3  addition16:17
markmcsileht, hey16:17
silehtmarkmc, did you find some times to take a look into the notification subscriber reviews ?16:17
markmcsileht, I'm just catching up on things today, hoping to get back to oslo.messaging tomorrow16:17
silehtmarkmc, cool, good news :)16:18
*** stevemar has quit IRC16:19
tristanCchmouel: i agree we should fix this issue as soon as possible16:20
*** krotscheck has quit IRC16:20
*** alexpilotti has quit IRC16:20
*** yaguang has quit IRC16:20
*** stevemar has joined #openstack-dev16:21
*** iartarisi has quit IRC16:21
*** kpavel has quit IRC16:21
*** stevemar has quit IRC16:22
*** stevemar has joined #openstack-dev16:24
*** pmathews has joined #openstack-dev16:24
*** peristeri has quit IRC16:25
*** gyee_ has joined #openstack-dev16:25
*** nmagnezi has quit IRC16:26
tristanCbugsduggan: if you have some time, we should share our test setting... maybe I can help you reproduce the issue more easily16:26
*** peristeri has joined #openstack-dev16:26
*** ramishra has quit IRC16:27
*** belmoreira has quit IRC16:27
*** ramishra has joined #openstack-dev16:28
bugsduggantristanC: that would be great, I'm having trouble replicating what you guys are seeing at the moment16:28
*** belmoreira has joined #openstack-dev16:28
*** belmoreira has quit IRC16:28
*** armax has quit IRC16:28
*** thuc has joined #openstack-dev16:28
*** thuc_ has joined #openstack-dev16:30
*** thuc has quit IRC16:30
*** jcoufal_ has quit IRC16:31
*** hvprash_ has joined #openstack-dev16:32
*** stevemar has quit IRC16:32
david-lyledolphm: ping16:33
dolphmdavid-lyle: pong (but in a meeting)16:33
*** browne has joined #openstack-dev16:34
david-lyledolphm: looking at your project update slides (missed the talk) I saw deprecating the v2 api in i-2 as a possibility16:34
*** stevemar has joined #openstack-dev16:34
david-lyleis that correct?16:34
dolphmdavid-lyle: yes, that's done16:35
*** venkatesh has joined #openstack-dev16:35
*** asselin_ has joined #openstack-dev16:35
*** florentflament has quit IRC16:35
david-lyledolphm: what's the planned timeframe for obsolescence?16:36
david-lyleor tbd16:36
*** rushiagr2 has joined #openstack-dev16:36
*** alop has joined #openstack-dev16:36
*** venkatesh has quit IRC16:36
*** csaba is now known as csaba|afk16:37
*** browne has quit IRC16:38
*** browne has joined #openstack-dev16:39
*** stevemar has quit IRC16:39
*** rushiagr has quit IRC16:39
*** stevemar has joined #openstack-dev16:41
*** bogdando has quit IRC16:42
*** stevemar has quit IRC16:42
*** kwss has quit IRC16:44
*** stevemar has joined #openstack-dev16:44
*** CaptTofu has quit IRC16:44
*** mmagr has quit IRC16:45
*** xarses has quit IRC16:46
*** medberry is now known as med_16:47
*** SumitNaiksatam has quit IRC16:48
*** stevemar has quit IRC16:48
*** che-arne has quit IRC16:49
*** che-arne has joined #openstack-dev16:50
*** stevemar has joined #openstack-dev16:50
*** e0ne_ has quit IRC16:51
*** dkuffner has quit IRC16:51
*** zz_ewindisch is now known as ewindisch16:52
*** stevemar has quit IRC16:52
*** jculp has joined #openstack-dev16:52
*** pablosan has joined #openstack-dev16:53
*** stevemar has joined #openstack-dev16:54
*** buzztroll has joined #openstack-dev16:54
*** devoid has joined #openstack-dev16:55
*** jculp has quit IRC16:55
*** Oneiroi has quit IRC16:57
*** stevemar has quit IRC16:58
*** xmltok has joined #openstack-dev16:58
*** marekd is now known as marekd|away16:59
*** stevemar has joined #openstack-dev17:00
*** vartom111111116 has joined #openstack-dev17:00
*** tkammer has quit IRC17:02
*** stevemar has quit IRC17:02
*** derekh has quit IRC17:02
*** joesavak has joined #openstack-dev17:02
*** Oneiroi has joined #openstack-dev17:03
*** rushiagr2 is now known as rushiagr_away17:03
*** gokrokve has joined #openstack-dev17:03
*** jtomasek has quit IRC17:03
*** stevemar has joined #openstack-dev17:03
*** Mandell has joined #openstack-dev17:03
*** markmc has quit IRC17:04
*** devoid has left #openstack-dev17:04
*** tdruiva_ has joined #openstack-dev17:04
*** NikitaKonovalov has quit IRC17:04
*** mlavalle has joined #openstack-dev17:05
*** jsavak has quit IRC17:05
*** SumitNaiksatam has joined #openstack-dev17:06
*** tdruiva has quit IRC17:06
*** jsavak has joined #openstack-dev17:06
*** joesavak has quit IRC17:08
*** stevemar has quit IRC17:08
*** alexpilotti has joined #openstack-dev17:09
*** stevemar has joined #openstack-dev17:09
*** jorisroovers has quit IRC17:10
*** dvarga is now known as dvarga|away17:11
*** dvarga|away is now known as dvarga17:11
*** stevemar has quit IRC17:12
*** martyntaylor has quit IRC17:13
*** stevemar has joined #openstack-dev17:14
*** gszasz has quit IRC17:14
*** stevemar has quit IRC17:16
*** pschaef has quit IRC17:17
*** angdraug has joined #openstack-dev17:17
*** stevemar has joined #openstack-dev17:18
*** ramishra has quit IRC17:19
*** buzztroll has quit IRC17:20
*** stevemar has quit IRC17:20
*** tdruiva_ is now known as tdruiva17:20
*** markmcclain has joined #openstack-dev17:21
*** stevemar has joined #openstack-dev17:22
*** buzztroll has joined #openstack-dev17:23
*** gordc1 has joined #openstack-dev17:23
*** gordc has quit IRC17:23
*** arnaud__ has joined #openstack-dev17:25
*** arnaud has joined #openstack-dev17:25
*** bdpayne has joined #openstack-dev17:25
*** stevemar has quit IRC17:26
*** ruhe is now known as _ruhe17:27
*** vartom111111116 has quit IRC17:28
*** stevemar has joined #openstack-dev17:28
*** gargya has joined #openstack-dev17:29
*** stevemar has quit IRC17:29
*** yassine has quit IRC17:30
*** ozialien_ has quit IRC17:31
*** jistr has quit IRC17:31
*** stevemar has joined #openstack-dev17:31
*** JordanP has quit IRC17:31
*** igorodet has joined #openstack-dev17:33
*** reed has joined #openstack-dev17:33
*** aswadrangnekar has joined #openstack-dev17:34
*** comay has joined #openstack-dev17:35
*** kenperkins has quit IRC17:35
*** mancdaz is now known as mancdaz_away17:35
*** Mandell has quit IRC17:36
*** ilyashakhat has quit IRC17:36
*** corXi has quit IRC17:36
*** gordc1 has quit IRC17:37
*** NikitaKonovalov has joined #openstack-dev17:37
*** buzztroll has quit IRC17:38
*** aswadrangnekar has quit IRC17:38
*** buzztroll has joined #openstack-dev17:38
*** nmagnezi has joined #openstack-dev17:39
*** kenperkins has joined #openstack-dev17:39
*** MaxV has quit IRC17:40
*** stevemar has quit IRC17:40
*** rushiagr_away is now known as rushiagr217:40
*** kenperkins has quit IRC17:41
*** gordc has joined #openstack-dev17:42
*** stevemar has joined #openstack-dev17:42
*** nati_ueno has joined #openstack-dev17:42
*** willingc has joined #openstack-dev17:44
*** stevemar has quit IRC17:44
*** xarses has joined #openstack-dev17:44
*** stevemar has joined #openstack-dev17:46
*** jbryce has joined #openstack-dev17:46
*** stevemar has quit IRC17:47
*** gokrokve has quit IRC17:49
*** safchain has quit IRC17:49
*** ijw has joined #openstack-dev17:49
*** stevemar has joined #openstack-dev17:49
ijwfungi: ping17:50
*** gordc has quit IRC17:50
*** DynamiteXXL_ has quit IRC17:50
*** gordc has joined #openstack-dev17:51
*** gordc has quit IRC17:51
*** KeithSharp has quit IRC17:51
fungiijw: hi there17:52
ijwfungi: I think in certain twisty situations you could probably trigger that ipv6 issue, but you may require a warped mind17:52
*** eglynn has quit IRC17:53
ijwSpecifically, any hypervisor that isn't libvirt, and ipv6 support turned off in Openstack17:53
*** jbryce has quit IRC17:54
*** KeithSharp has joined #openstack-dev17:54
fungiijw: thanks17:55
*** jsavak has quit IRC17:55
*** SumitNaiksatam_ has joined #openstack-dev17:55
*** NikitaKonovalov has quit IRC17:56
*** dvarga is now known as dvarga|away17:56
*** SumitNaiksatam has quit IRC17:57
*** SumitNaiksatam_ is now known as SumitNaiksatam17:57
*** rm_work|away is now known as rm_work17:57
*** rm_work has joined #openstack-dev17:57
*** stevemar has quit IRC17:59
*** afazekas has quit IRC18:00
*** BobBall is now known as BobBallAway18:00
*** stevemar has joined #openstack-dev18:01
*** CaptTofu has joined #openstack-dev18:01
*** jroovers has joined #openstack-dev18:01
*** gokrokve has joined #openstack-dev18:01
*** NikitaKonovalov has joined #openstack-dev18:01
*** jorisroovers has joined #openstack-dev18:01
morganfainbergstevemar, ping18:01
*** moted has quit IRC18:01
*** akrivoka has quit IRC18:01
stevemarmorganfainberg hola18:02
morganfainbergstevemar, looking for a quick pair of eyes on https://review.openstack.org/#/c/65377/18:02
*** nmagnezi has quit IRC18:02
morganfainbergsuper simple cleanup stuff.18:02
morganfainbergbut don't want it to get lost.18:02
morganfainbergif its worth splitting into multiple patches i can do that today18:03
*** gokrokve has quit IRC18:03
*** moted has joined #openstack-dev18:04
*** dvarga|away is now known as dvarga18:04
*** ygbo has quit IRC18:04
*** jnoller has quit IRC18:05
*** jroovers has quit IRC18:06
stevemarmorganfainberg - yeah its a bunch of random stuff :)18:06
stevemarmorganfainberg but very trivial18:06
*** rushiagr2 is now known as rushiagr_away18:06
*** jmeridth has quit IRC18:06
stevemardoes it need a rebase?18:07
morganfainbergit was actually meant to be additions to the business logic patchset18:07
stevemarlast update as on the 7th18:07
*** harlowja_away is now known as harlowja18:07
morganfainbergbut that one was approved before i could upload a new one18:07
morganfainbergnah, it should not require a rebase18:07
morganfainbergit's parent was my assignment first class one18:07
morganfainbergthe one that removes the disable user logic from delete_domain18:08
*** jpich has quit IRC18:08
stevemarapproved18:08
*** dvarga is now known as dvarga|away18:08
*** dvarga|away is now known as dvarga18:08
stevemaryay18:08
morganfainbergcool18:08
*** paulczar is now known as zz_paulczar18:08
morganfainbergstevemar, I'm super happy that code is all in now.18:08
*** tqtran has joined #openstack-dev18:08
morganfainbergso much cleanup in Icehouse for keystone so far18:08
*** athomas has quit IRC18:09
stevemarcleanup is good18:09
morganfainbergyes.18:09
*** hvprash_ has quit IRC18:09
morganfainbergif the rest of the cleanup gets done, i think working on Keystone in Juno is going to start becoming easier18:09
*** teran has joined #openstack-dev18:10
morganfainberggenerally speaking, things look better and better18:10
*** martines__ has quit IRC18:11
*** joesavak has joined #openstack-dev18:11
*** martines has joined #openstack-dev18:11
*** thuc_ has quit IRC18:12
*** jdurgin1 has joined #openstack-dev18:12
*** sdake_ has quit IRC18:12
*** rushiagr_away is now known as rushiagr218:12
*** thuc has joined #openstack-dev18:13
morganfainbergstevemar, also, OMG merge rebase craziness18:13
stevemarmorganfainberg, ugh i know18:13
morganfainbergstevemar, sorry :(18:13
morganfainberga lot of that is my fault18:13
*** xga has quit IRC18:13
morganfainbergthe assignment first class + deletion logic changes touched a ton of things18:14
morganfainbergoh my, look at the time18:15
morganfainbergi need to head into the office!18:15
*** _cjones_ has joined #openstack-dev18:15
* morganfainberg was distracted by emails and code 18:15
*** jsavak has joined #openstack-dev18:15
morganfainberguhm... be back in a few18:15
*** johnthetubaguy has quit IRC18:15
stevemarmorganfainberg, work from home day18:15
morganfainbergstevemar, work from bed? :P nah, need to chat w/ people @ office18:16
morganfainbergand... i'm lacking good quality caffination at home18:16
*** otherwiseguy has quit IRC18:16
stevemarmorganfainberg, and we're back to normal typing... all the pizza i was eating is done18:17
morganfainbergstevemar, and i _might_ be a coffee snob18:17
stevemarmorganfainberg, i know full well that you are ^_-18:17
*** thuc has quit IRC18:17
*** morganfainberg is now known as needscoffee18:17
stevemardolphm has promised good coffee at hackathon18:17
needscoffeestevemar, i know18:18
*** joesavak has quit IRC18:19
*** rm_work has quit IRC18:19
*** csd has joined #openstack-dev18:20
*** thuc has joined #openstack-dev18:20
*** thuc has quit IRC18:21
*** thuc has joined #openstack-dev18:21
*** dvarga is now known as dvarga|away18:21
*** dvarga|away is now known as dvarga18:22
*** thuc has quit IRC18:22
*** thuc has joined #openstack-dev18:22
*** julienvey has quit IRC18:23
*** rm_work|away has joined #openstack-dev18:23
*** rm_work|away is now known as rm_work18:23
*** rm_work has joined #openstack-dev18:23
ayoung*might*?18:23
needscoffeeayoung, lol18:24
ayoungany Nova devs:  can one user view another user's keypairs?18:25
*** xgsa has quit IRC18:25
needscoffeeayoung, the ssh keypairs?18:25
ayoungneedscoffee, yeah18:25
needscoffeeayoung, i believe so, since iirc you can select a keypair.18:25
needscoffeeayoung, but... i might be confusing it with aws18:26
ayoungneedscoffee, I can only seem to see my own on our internal OS system18:26
needscoffeei'll look once i'm in the office if you don't have an aswer (have a dev system setup there)18:26
needscoffeeanswer before i'm there18:26
ayoungneedscoffee, I'll find out18:26
needscoffeek18:26
needscoffeeyeah, i might be confusing it w/ AWS.18:26
*** mlavalle has quit IRC18:27
*** galstrom is now known as galstrom_zzz18:31
*** amuller has quit IRC18:33
*** stevemar has quit IRC18:35
*** stevemar has joined #openstack-dev18:37
*** asselin_ has quit IRC18:38
*** thuc has quit IRC18:39
*** thuc has joined #openstack-dev18:40
ayoungrussellb, do you know if it is possible for one user to see another users keypairs in Nova?  If I want to create a vm, and have another team member be able to log in to it, what is the usual approach?  Manual Keypair management, or is there some way to use the Nova keypairs?18:40
*** jnoller has joined #openstack-dev18:40
*** stevemar has quit IRC18:42
*** thuc_ has joined #openstack-dev18:42
russellbayoung: keypairs in nova are owned by individual users18:43
russellbso, you can only see your own18:43
*** thuc_ has quit IRC18:43
russellbalso, nova only lets you specify a single key18:43
*** stevemar has joined #openstack-dev18:43
russellbso i guess you'd get it set up with 1 automatically, and add the rest some other way18:43
*** thuc_ has joined #openstack-dev18:44
russellbwhether that's custom user data stuff to cloud init, or some other means18:44
*** thuc has quit IRC18:44
russellbpuppet, chef, etc18:44
*** thuc_ has quit IRC18:45
*** thuc has joined #openstack-dev18:45
ayoungrussellb, that is what I thought.  Would it make sense to  do something like expose some keypairs per (user/project) and then all members of the project could view them and, potenaitlly add them to an image?18:45
*** che-arne has quit IRC18:45
*** dstanek has joined #openstack-dev18:45
russellbyeah, might make sense to expose a keypair to a whole project instead of just a user18:45
russellbjust not supported right now AFAIK18:45
*** ndipanov has quit IRC18:46
russellbalso i'm not sure if nova is the right long term place for storing these keys anyway18:46
russellbjust there for historical reasons18:46
ayoungright, just that Nova needs to be aware of them regardless of where they are stored18:46
russellbyeah18:46
*** kenperkins has joined #openstack-dev18:46
*** rushiagr2 has quit IRC18:47
*** epim has joined #openstack-dev18:47
*** amcrn has joined #openstack-dev18:47
*** sarob has joined #openstack-dev18:49
*** dstanek has quit IRC18:50
*** zzelle has joined #openstack-dev18:50
*** zz_paulczar is now known as paulczar18:51
*** _ruhe is now known as ruhe18:52
*** rcj has quit IRC18:53
*** stevemar has quit IRC18:53
*** epim has quit IRC18:54
*** stevemar has joined #openstack-dev18:55
*** beagles has quit IRC18:56
*** stevemar has quit IRC18:56
*** MaxV has joined #openstack-dev18:56
*** jruzicka has quit IRC18:56
*** dvarga is now known as dvarga|away18:57
*** dvarga|away is now known as dvarga18:57
*** stevemar has joined #openstack-dev18:58
*** dstanek has joined #openstack-dev18:59
*** stevemar has quit IRC19:00
*** cagrev_ has joined #openstack-dev19:00
*** b3nt_pin has joined #openstack-dev19:01
*** mlavalle has joined #openstack-dev19:01
*** b3nt_pin is now known as beagles19:01
*** e0ne has joined #openstack-dev19:01
*** NikitaKonovalov has quit IRC19:02
*** stevemar has joined #openstack-dev19:02
*** galstrom_zzz is now known as galstrom19:02
*** cagrev has quit IRC19:03
*** dstanek has quit IRC19:04
*** epim has joined #openstack-dev19:04
*** tqtran1 has joined #openstack-dev19:05
*** mdomsch has quit IRC19:05
*** dstanek has joined #openstack-dev19:05
*** alexpilotti has quit IRC19:06
*** tqtran has quit IRC19:06
*** danielbruno has joined #openstack-dev19:08
*** stevemar has quit IRC19:08
*** alexpilotti has joined #openstack-dev19:09
*** wwallnrr__ has joined #openstack-dev19:09
*** stevemar has joined #openstack-dev19:10
*** MaxV has quit IRC19:11
*** stevemar has quit IRC19:11
*** vartom111111116 has joined #openstack-dev19:12
*** dvarga is now known as dvarga|away19:12
*** dvarga|away is now known as dvarga19:12
*** SergeyLukjanov has quit IRC19:13
*** stevemar has joined #openstack-dev19:13
*** gargya has quit IRC19:13
*** sahid has quit IRC19:13
*** MaxV has joined #openstack-dev19:14
*** rossella_s has quit IRC19:14
*** kgriffs is now known as kgriffs_afk19:14
*** rossella_s has joined #openstack-dev19:15
*** rossella_s has quit IRC19:15
*** tqtran has joined #openstack-dev19:17
*** stevemar has quit IRC19:17
*** stevemar has joined #openstack-dev19:18
*** melwitt has joined #openstack-dev19:19
*** treeg has joined #openstack-dev19:20
*** treeg has left #openstack-dev19:20
*** tqtran1 has quit IRC19:20
*** stevemar has quit IRC19:22
*** rcleere has quit IRC19:22
*** vikasd has joined #openstack-dev19:23
*** doug_shelley66 has quit IRC19:23
*** stevemar has joined #openstack-dev19:24
*** doug_shelley66 has joined #openstack-dev19:24
*** belmoreira has joined #openstack-dev19:25
ayoungdolphm, is the Credentials API the appropriate replacement for having KeyPairs directly in Nova?  Should Nova query Keystone for the Keypairs for a user?19:26
*** sushils has quit IRC19:27
*** stevemar has quit IRC19:27
jaypipesayoung: had a couple questions for you on https://review.openstack.org/#/c/63570/ if you have a moment. thx in advance!19:27
ayoungjaypipes, lemme pull that up19:28
jaypipescheers man19:28
ayoungjaypipes, fire 'way19:28
jaypipesayoung: FYI, I def think the credentials API is the perfect place for keypair management.19:28
*** ijw has quit IRC19:28
jaypipesayoung: questions are in the review inline :)19:28
ayoungjaypipes, so..if we use the cred api, should keys be exposer per project?19:28
ayoungexposed19:28
jaypipesayoung: per project, yes.19:29
ayoungie:  I want everyone in my "IdM" project to be able to inject my keys into VMs that they spin up?19:29
*** willingc has quit IRC19:29
*** stevemar has joined #openstack-dev19:29
*** thuc has quit IRC19:29
ayoungSo we would need to be able to query credential based on some project association19:29
jaypipesayoung: yes.19:30
*** doug_shelley66 has quit IRC19:30
*** thuc has joined #openstack-dev19:30
jaypipesayoung: GET /$tenant/keypairs19:30
ayoung$project  dude!19:30
jaypipessorry, $project :) old habits die hard...19:30
ayoungheheh19:30
jaypipes:)19:30
ayoungjaypipes, your comment on the review is correct19:31
ayoungthe sql upgrade tests you point out are the right idea19:31
ayounghttps://github.com/openstack/keystone/blob/master/keystone/tests/test_sql_upgrade.py#L60919:31
jaypipesk, great. just wanted to verify with you before I went further..19:31
ayoungyous can be pretty minimalistic, just confirm the column names after upgrade19:31
ayoungsorry, 'yous' should read 'youses'19:32
*** MaxV has quit IRC19:32
*** sushils has joined #openstack-dev19:32
jaypipesayoung: I got yous.19:32
ayoungWikked Awesome19:32
jaypipeslol.19:32
jaypipesayoung: on the other question?19:32
ayounglooking now19:32
jaypipeskk19:32
*** rnirmal has quit IRC19:33
ayoungthe nesting thing was answered by you in IRC:  we don't query by region yet.  Addthe SQL tests and this is good by me19:33
jaypipesok dokey, will do. many thx!19:34
ayoungbe nice to put this one to bed19:34
jaypipesayoung: yup. more patches related to regions will build on it (like how to deal with the endpoint.region mappings that already exist in a deploy)19:34
*** pdevine has joined #openstack-dev19:34
*** thuc has quit IRC19:34
*** danielbruno has quit IRC19:35
*** thuc has joined #openstack-dev19:35
*** otherwiseguy has joined #openstack-dev19:35
*** doug_shelley66 has joined #openstack-dev19:36
*** rcleere has joined #openstack-dev19:38
*** stevemar has quit IRC19:38
*** stevemar has joined #openstack-dev19:39
*** rnirmal has joined #openstack-dev19:39
*** doug_shelley66 has quit IRC19:40
*** colinmcnamara has joined #openstack-dev19:40
*** doug_shelley66 has joined #openstack-dev19:40
*** markmcclain has quit IRC19:42
*** kenperkins has quit IRC19:43
*** spzala has quit IRC19:44
ayoungjaypipes, https://blueprints.launchpad.net/keystone/+spec/project-scoped-credentials19:44
*** ruhe is now known as _ruhe19:44
jaypipesayoung: ++19:45
*** dstanek has quit IRC19:46
*** novas0x2a|laptop has joined #openstack-dev19:47
*** danielbruno has joined #openstack-dev19:47
*** danielbruno has quit IRC19:47
*** danielbruno has joined #openstack-dev19:47
*** Mandell has joined #openstack-dev19:47
*** stevemar has quit IRC19:49
*** dkuffner has joined #openstack-dev19:50
*** sarob has quit IRC19:50
*** sarob has joined #openstack-dev19:51
*** stevemar has joined #openstack-dev19:51
*** sarob has quit IRC19:53
ayoungjaypipes, https://blueprints.launchpad.net/nova/+spec/credentials-from-keystone19:53
*** sarob has joined #openstack-dev19:53
*** antigluk_ has joined #openstack-dev19:53
*** needscoffee is now known as morganfainberg19:54
*** blamar has quit IRC19:54
*** stevemar has quit IRC19:55
*** david-lyle_ has joined #openstack-dev19:55
morganfainbergchmouel, ping19:56
*** gokrokve has joined #openstack-dev19:56
morganfainbergchmouel, i know you're not US time, but... wanted to bug you about a devstack review if you have a moment19:56
*** markmcclain has joined #openstack-dev19:56
*** stevemar has joined #openstack-dev19:57
morganfainbergchmouel, and i se you responding to emails every now and again ;)19:57
*** dvarga is now known as dvarga|away19:58
*** MaxV has joined #openstack-dev19:58
*** noslzzp has quit IRC19:58
*** CaptTofu has quit IRC19:59
*** sushils has quit IRC20:00
*** antigluk_ has quit IRC20:01
jaypipesayoung: "Nova only has maintains a store" :)20:02
ayoungDid I write that?20:02
*** dvarga|away is now known as dvarga20:02
jaypipesyup :)20:02
*** antigluk_ has joined #openstack-dev20:02
jaypipesayoung: lmao.20:02
*** antigluk_ has quit IRC20:03
jaypipesayoung: very Yoda-esque.20:03
ayoungjaypipes, glad I am here to entertain you.20:03
jaypipes:)20:03
ayoungJoe Pesci style20:03
morganfainbergayoung, what no nick change for that?20:03
*** danielbruno has quit IRC20:04
*** ayoung is now known as tommy-devito20:04
*** antigluk_ has joined #openstack-dev20:04
morganfainbergayoung, anything else you need from me blocking the revocation event stuff (tokens or what have you)?20:04
morganfainbergtommy-devito, before i start working on memcache, hmac/encrypt, etc for it20:04
*** tommy-devito is now known as ayoung20:05
morganfainbergor other things, want to ensure i'm not holding you up20:05
ayoungmorganfainberg, nope20:05
morganfainbergayoung, ok good.20:05
morganfainbergayoung, cause, revocation events = win20:05
ekarlsohorizon folks here ?20:05
*** radez_g0n3 is now known as radez20:05
ayoungno pressure on nothin20:05
*** vipuls is now known as vipuls-away20:05
morganfainbergphsaw,20:05
*** vipuls-away is now known as vipuls20:05
morganfainbergyou got that20:05
morganfainbergno problem.20:05
*** rcj has joined #openstack-dev20:05
*** sushils has joined #openstack-dev20:06
*** antigluk_ has quit IRC20:06
*** rpodolyaka1 has joined #openstack-dev20:07
*** antigluk_ has joined #openstack-dev20:07
*** antigluk_ has quit IRC20:08
*** boris-42 has quit IRC20:08
*** SergeyLukjanov has joined #openstack-dev20:09
*** antigluk_ has joined #openstack-dev20:09
*** xga has joined #openstack-dev20:10
*** dvarga is now known as dvarga|away20:11
*** dvarga|away is now known as dvarga20:11
*** alexpilotti has quit IRC20:11
*** SergeyLukjanov has quit IRC20:11
*** kgriffs_afk is now known as kgriffs20:12
*** rpodolyaka1 has left #openstack-dev20:13
*** spzala has joined #openstack-dev20:14
*** henrynash has quit IRC20:14
*** xga has quit IRC20:15
*** antigluk_ has quit IRC20:15
*** sdake has joined #openstack-dev20:16
*** sdake has quit IRC20:16
*** sdake has joined #openstack-dev20:16
*** antigluk_ has joined #openstack-dev20:16
*** boris-42 has joined #openstack-dev20:17
*** Drankis has quit IRC20:19
*** vipuls is now known as vipuls-away20:21
*** dkuffner has quit IRC20:22
*** nkinder has quit IRC20:23
*** antigluk_ has quit IRC20:23
*** dkuffner has joined #openstack-dev20:24
*** antigluk_ has joined #openstack-dev20:24
*** yolanda has quit IRC20:25
*** briancli1e is now known as briancline20:25
*** alexpilotti has joined #openstack-dev20:27
*** rfolco has quit IRC20:28
*** gothicmindfood has quit IRC20:30
*** eharney has quit IRC20:30
*** antigluk_ has quit IRC20:30
*** dkuffner has quit IRC20:31
*** antigluk_ has joined #openstack-dev20:31
*** rkukura has quit IRC20:32
*** colinmcnamara has quit IRC20:33
*** cagrev_ has quit IRC20:34
*** tdruiva has quit IRC20:34
*** kenperkins has joined #openstack-dev20:36
*** antigluk_ has quit IRC20:37
*** antigluk_ has joined #openstack-dev20:38
*** tdruiva has joined #openstack-dev20:38
*** tdruiva has quit IRC20:39
*** cagrev_ has joined #openstack-dev20:40
*** mjfork_ has joined #openstack-dev20:41
*** spzala has quit IRC20:41
*** mjfork has quit IRC20:43
*** mjfork_ is now known as mjfork20:43
*** antigluk_ has quit IRC20:44
*** stevemar has quit IRC20:45
*** antigluk_ has joined #openstack-dev20:45
*** KataiKou has joined #openstack-dev20:46
*** otherwiseguy has quit IRC20:46
KataiKouDo we have the draft of the Installation Guide for Icehouse posted anywhere?20:46
*** radix__ has quit IRC20:46
*** stevemar has joined #openstack-dev20:47
*** browne has quit IRC20:48
*** jamespage_ has joined #openstack-dev20:48
*** Sumeniac2 has quit IRC20:49
*** pdevine has quit IRC20:49
*** antigluk_ has quit IRC20:50
*** drewlander has quit IRC20:51
*** antigluk_ has joined #openstack-dev20:52
*** denis_makogon_ has joined #openstack-dev20:52
*** paulczar is now known as zz_paulczar20:52
*** denis_makogon_ is now known as denis_makogon20:52
*** cpallares has quit IRC20:53
*** dprince has quit IRC20:53
*** KataiKou has left #openstack-dev20:54
*** sandywalsh has quit IRC20:54
*** antigluk_ has quit IRC20:54
*** antigluk_ has joined #openstack-dev20:56
*** dstanek has joined #openstack-dev21:01
*** stevemar has quit IRC21:01
*** zz_paulczar is now known as paulczar21:01
*** Sumeniac has joined #openstack-dev21:01
*** cagrev_ has quit IRC21:02
*** cagrev__ has joined #openstack-dev21:02
*** herndon has joined #openstack-dev21:02
*** stevemar has joined #openstack-dev21:02
*** csd has quit IRC21:02
*** dbalog has quit IRC21:04
*** stevemar has quit IRC21:04
*** eharney has joined #openstack-dev21:05
*** stevemar has joined #openstack-dev21:05
*** hartsocks has quit IRC21:05
*** hartsocks has joined #openstack-dev21:06
*** cagrev__ has quit IRC21:06
*** jamespage_ has quit IRC21:07
*** antigluk_ has quit IRC21:07
*** ayoung has quit IRC21:07
*** Sumeniac has quit IRC21:07
*** sandywalsh has joined #openstack-dev21:07
*** antigluk_ has joined #openstack-dev21:08
*** vipuls-away is now known as vipuls21:08
*** MaxV has quit IRC21:09
*** antigluk_ has quit IRC21:09
*** buzztroll has quit IRC21:10
*** buzztroll has joined #openstack-dev21:10
*** antigluk_ has joined #openstack-dev21:11
*** Sumeniac has joined #openstack-dev21:11
*** fbo is now known as fbo_away21:12
*** kenperkins has quit IRC21:14
*** stevemar has quit IRC21:14
*** epim has quit IRC21:15
*** buzztroll has quit IRC21:15
*** stevemar has joined #openstack-dev21:15
*** epim has joined #openstack-dev21:15
*** antigluk_ has quit IRC21:16
*** jamielennox is now known as jamielennox|away21:17
*** stevemar has quit IRC21:17
*** antigluk_ has joined #openstack-dev21:17
*** dbalog has joined #openstack-dev21:19
*** antigluk_ has quit IRC21:19
*** stevemar has joined #openstack-dev21:19
*** e0ne has quit IRC21:20
*** stevemar has quit IRC21:20
*** gokrokve has quit IRC21:21
*** antigluk_ has joined #openstack-dev21:21
*** gokrokve has joined #openstack-dev21:22
*** kenperkins has joined #openstack-dev21:22
*** stevemar has joined #openstack-dev21:22
*** rcj has quit IRC21:23
*** stevemar has quit IRC21:23
*** nkinder has joined #openstack-dev21:24
*** antigluk_ has quit IRC21:24
*** stevemar has joined #openstack-dev21:25
*** antigluk_ has joined #openstack-dev21:26
*** otherwiseguy has joined #openstack-dev21:26
*** gokrokve has quit IRC21:26
*** antigluk_ has quit IRC21:27
*** sandywalsh has quit IRC21:27
*** colinmcnamara has joined #openstack-dev21:27
*** colinmcnamara has quit IRC21:27
*** nmagnezi has joined #openstack-dev21:29
*** stevemar has quit IRC21:29
*** antigluk_ has joined #openstack-dev21:29
*** joesavak has joined #openstack-dev21:29
*** mdomsch has joined #openstack-dev21:29
*** stevemar has joined #openstack-dev21:31
*** antigluk_ has quit IRC21:32
*** stevemar has quit IRC21:32
*** jsavak has quit IRC21:32
*** antigluk_ has joined #openstack-dev21:33
*** jsavak has joined #openstack-dev21:33
*** dkuffner has joined #openstack-dev21:33
*** dvarga is now known as dvarga|away21:34
*** dvarga|away is now known as dvarga21:34
*** stevemar has joined #openstack-dev21:34
*** antigluk_ has quit IRC21:34
*** joesavak has quit IRC21:35
*** dstanek has quit IRC21:35
*** antigluk_ has joined #openstack-dev21:35
*** belmoreira has quit IRC21:37
*** nmagnezi has quit IRC21:37
*** sgordon has quit IRC21:38
*** stevemar has quit IRC21:38
*** willingc has joined #openstack-dev21:40
*** stevemar has joined #openstack-dev21:40
*** antigluk_ has quit IRC21:40
*** sandywalsh has joined #openstack-dev21:41
*** antigluk_ has joined #openstack-dev21:42
*** stevemar has quit IRC21:42
morganfainbergstevemar, when do you fly into SAT? next week?21:42
morganfainbergof course... he logs out just as i ask a question21:43
*** topol has quit IRC21:43
*** stevemar has joined #openstack-dev21:44
*** thuc has quit IRC21:44
*** antigluk_ has quit IRC21:44
*** thomasem has quit IRC21:45
*** thuc has joined #openstack-dev21:45
*** pdevine has joined #openstack-dev21:45
*** romcheg has quit IRC21:45
*** csd has joined #openstack-dev21:46
*** sc68cal has quit IRC21:46
*** antigluk_ has joined #openstack-dev21:46
*** romcheg has joined #openstack-dev21:46
*** sc68cal has joined #openstack-dev21:47
*** DennyZhang has joined #openstack-dev21:47
paulczarI made a srewup with a review and merged in some changes from head with my updates …   is there a way to nuke out a specific patch set from gerrit ?21:47
*** antigluk_ has quit IRC21:47
*** herndon has quit IRC21:48
*** stevemar has quit IRC21:48
*** antigluk_ has joined #openstack-dev21:49
*** aeperezt has quit IRC21:49
*** thuc has quit IRC21:49
*** antigluk_ has quit IRC21:50
*** sarob has quit IRC21:50
*** FunnyLookinHat has quit IRC21:50
*** dvarga has quit IRC21:50
*** sarob has joined #openstack-dev21:51
*** jdob has quit IRC21:52
*** antigluk_ has joined #openstack-dev21:52
*** DennyZhang has quit IRC21:53
*** sarob_ has joined #openstack-dev21:53
*** antigluk_ has quit IRC21:54
*** david_lyle has joined #openstack-dev21:55
*** sarob has quit IRC21:56
*** FunnyLookinHat has joined #openstack-dev21:56
*** FunnyLookinHat has quit IRC21:56
*** FunnyLookinHat has joined #openstack-dev21:56
*** nati_ueno has quit IRC21:56
*** dklyle has joined #openstack-dev21:57
*** gfidente has joined #openstack-dev21:57
morganfainbergpaulczar, in waht way the whole review? or just a single item?21:57
morganfainbergpaulczar, if you just push a "new" fixed change over the top, the latest patchset in a review wins21:58
paulczarmorganfainberg: cool,  that's what I was planning on doing … just didn't want to start pushing more bad review on top of bad reviews if that wasn't the right way to go21:58
morganfainbergin some cases with drafts you can delete patchsets but... i don't remember the specific rules gerrit applies to that.21:58
morganfainbergpaulczar, we've all done it :)21:59
*** nati_ueno has joined #openstack-dev21:59
*** david-lyle_ has quit IRC21:59
*** otherwiseguy has quit IRC22:00
morganfainbergpaulczar, it happens to the best of us. don't worry about it too much.  heck i've accidently pushed a patchset i forgot to fix a merge conflict in a few times22:00
*** dklyle has quit IRC22:00
morganfainbergpaulczar, yes, i was embarassed by that :P22:00
*** otherwiseguy has joined #openstack-dev22:00
*** thuc has joined #openstack-dev22:00
*** erkrnt has joined #openstack-dev22:00
*** david_lyle has quit IRC22:01
paulczarmorganfainberg: it's hard enough to distinguish my work from that of a cat running across a keyboard in the first place,  so I try not to add silly mistakes to the mix :)22:02
morganfainbergpaulczar, hmm, maybe i should hire a cat then.  my code might become clearer. :P22:03
*** nati_ueno has quit IRC22:03
*** mfink has quit IRC22:04
*** nati_ueno has joined #openstack-dev22:04
*** erkrnt has quit IRC22:04
*** erkrnt has joined #openstack-dev22:05
*** browne has joined #openstack-dev22:05
*** willingc has quit IRC22:06
*** jmontemayor has quit IRC22:06
*** dsirrine has quit IRC22:08
*** markwash has quit IRC22:10
*** pcm_ has quit IRC22:11
*** dims has quit IRC22:12
*** gfidente has quit IRC22:12
*** jgrimm has quit IRC22:13
*** rtheis has quit IRC22:13
*** doug_shelley66 has quit IRC22:13
*** CaptTofu has joined #openstack-dev22:14
*** vartom111111117 has joined #openstack-dev22:14
*** gokrokve has joined #openstack-dev22:14
*** jbryce has joined #openstack-dev22:16
*** mestery has quit IRC22:16
*** vartom111111116 has quit IRC22:17
*** alexpilotti has quit IRC22:17
*** dims has joined #openstack-dev22:18
*** mestery has joined #openstack-dev22:19
*** dbalog has quit IRC22:23
*** vladikr has quit IRC22:23
*** UKn0Me has quit IRC22:23
*** jprovazn has quit IRC22:24
*** markwash has joined #openstack-dev22:24
*** asalkeld has quit IRC22:25
mriedemgot a sqlalchemy question if someone has any tips - trying to update each row in a table where column x's value is y, but i need to set the new value to something unique,22:25
mriedemdoing this in a db migration, so not sure if i need to use the model query stuff like in the nova db apis, or if i can do this with sql expression API22:26
mriedemi.e. i don't think table.update().values(x=z).where(x=y) will work since z needs to be unique for each result of x22:26
*** radix_ has joined #openstack-dev22:27
*** asalkeld has joined #openstack-dev22:27
*** bswartz has quit IRC22:28
*** hartsocks1 has joined #openstack-dev22:28
*** flaper87 is now known as flaper87|afk22:30
*** hartsocks has quit IRC22:30
*** e0ne has joined #openstack-dev22:31
*** dkuffner has quit IRC22:32
*** ijw has joined #openstack-dev22:33
*** aeperezt has joined #openstack-dev22:33
*** kenperkins has quit IRC22:33
*** markwash has quit IRC22:35
*** rods2 has joined #openstack-dev22:35
*** rods1 has quit IRC22:35
*** mfer has quit IRC22:35
*** jayg is now known as jayg|g0n322:35
*** e0ne has quit IRC22:35
*** dbalog has joined #openstack-dev22:36
*** mriedem has quit IRC22:39
*** jmckind has quit IRC22:40
*** mfink has joined #openstack-dev22:40
*** nelsnels_ has quit IRC22:41
lifelessfungi: any chance you can review 65414? solum folk feeling blocked by it22:45
*** rwsu has quit IRC22:45
*** doug_shelley66 has joined #openstack-dev22:46
*** thuc has quit IRC22:47
*** thuc has joined #openstack-dev22:47
*** mfink has quit IRC22:48
*** rockyg has joined #openstack-dev22:49
*** kgriffs is now known as kgriffs_afk22:49
*** vartom111111117 has quit IRC22:49
*** radez is now known as radez_g0n322:51
*** morazi has quit IRC22:52
*** neelashah has quit IRC22:54
*** nati_ueno has quit IRC22:54
*** markmcclain has quit IRC22:54
nkinderdolphm: have a minute to discuss https://bugs.launchpad.net/ossn/+bug/1254619 ?22:55
*** nati_ueno has joined #openstack-dev22:56
*** nati_ueno has quit IRC22:57
*** hartsocks1 has quit IRC22:57
*** nati_ueno has joined #openstack-dev22:57
*** jorisroovers has quit IRC22:57
*** DennyZhang has joined #openstack-dev22:58
*** achampion has quit IRC22:59
*** thuc has quit IRC22:59
*** burt has quit IRC22:59
*** thuc has joined #openstack-dev22:59
*** sarob_ has quit IRC23:01
*** mdomsch has quit IRC23:01
*** sarob has joined #openstack-dev23:01
*** paulczar is now known as zz_paulczar23:02
*** kbrierly has quit IRC23:02
*** DennyZhang has quit IRC23:03
*** thuc has quit IRC23:04
*** willingc has joined #openstack-dev23:05
*** sarob has quit IRC23:06
*** tongli has quit IRC23:06
*** vijendar has quit IRC23:07
*** denis_makogon has quit IRC23:07
fungilifeless: sure, bumping 65414 up in priority23:07
*** jecarey has quit IRC23:08
*** mkollaro has quit IRC23:08
*** jbryce has quit IRC23:10
*** jamielennox|away is now known as jamielennox23:13
*** mikeoutland has joined #openstack-dev23:14
*** jsavak has quit IRC23:14
*** yamahata has quit IRC23:14
*** romcheg has quit IRC23:15
*** rkukura has joined #openstack-dev23:15
*** mkollaro has joined #openstack-dev23:15
*** dstufft has quit IRC23:16
*** dstufft has joined #openstack-dev23:17
*** rcleere has quit IRC23:19
*** kgriffs_afk is now known as kgriffs23:20
*** jobewan has quit IRC23:20
*** pablosan has quit IRC23:20
*** lbragstad has quit IRC23:23
*** pablosan has joined #openstack-dev23:23
*** kgriffs is now known as kgriffs_afk23:29
*** dkranz has quit IRC23:33
*** morazi has joined #openstack-dev23:34
*** alexpilotti has joined #openstack-dev23:35
*** sballe has quit IRC23:36
*** kenperkins has joined #openstack-dev23:36
*** prad has quit IRC23:36
*** zzelle has quit IRC23:36
*** sballe has joined #openstack-dev23:36
*** READ10 has quit IRC23:38
*** jnoller has quit IRC23:38
*** romcheg has joined #openstack-dev23:40
*** romcheg has quit IRC23:40
*** markwash has joined #openstack-dev23:43
*** CaptTofu has quit IRC23:43
*** tkay has joined #openstack-dev23:43
sdagueharlowja: how is the taskflow release coming?23:44
harlowjasdague ok, just a few reviews that need to get approve, hopefully by tommoro23:44
sdagueok23:45
*** CaptTofu has joined #openstack-dev23:45
sdagueplease let me know when it gets to the pip mirrors so I can recheck that review and see what else is broken23:45
harlowjanp23:45
harlowjawill do23:46
*** galstrom is now known as galstrom_zzz23:46
*** antigluk_ has joined #openstack-dev23:49
*** epim has quit IRC23:50
*** antigluk_ has quit IRC23:51
*** epim has joined #openstack-dev23:53
*** antigluk_ has joined #openstack-dev23:53
*** thuc has joined #openstack-dev23:54
*** epim has quit IRC23:54
*** antigluk_ has quit IRC23:54
*** antigluk_ has joined #openstack-dev23:56
*** vipuls is now known as vipuls-away23:56
*** jasondotstar has quit IRC23:56
bknudsonis it too late to move kds from keystone to its own repository?23:57
morganfainbergbknudson, likely for Icehouse23:58
*** vipuls-away is now known as vipuls23:58
*** antigluk_ has quit IRC23:58
bknudson"tox -r -e py27" is giving me an error -- Could not find any downloads that satisfy the requirement netifaces>=0.523:58
morganfainbergbknudson, doesn't mean it hurts to ask23:58
bknudsonmorganfainberg: have you seen that one?23:59
*** peristeri has quit IRC23:59
morganfainbergbknudson, no.23:59
morganfainbergcheckout of a specific review?23:59
*** antigluk_ has joined #openstack-dev23:59
morganfainbergor current head?23:59

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