Tuesday, 2013-10-22

*** danwent has joined #openstack-dev00:00
*** bpokorny has joined #openstack-dev00:00
*** spzala has joined #openstack-dev00:00
*** rongze has quit IRC00:01
*** pmathews has quit IRC00:01
*** radsy has joined #openstack-dev00:01
*** tomoe_ has quit IRC00:02
*** pjd2 has joined #openstack-dev00:04
*** jamespage_ has quit IRC00:04
*** xuhaiwei has joined #openstack-dev00:05
*** gyee has quit IRC00:05
*** vipul-away is now known as vipul00:10
*** dolphm_afk has quit IRC00:11
*** dolphm_a_ has joined #openstack-dev00:14
*** xarses has quit IRC00:15
*** sumanthns has quit IRC00:18
*** markmcclain has joined #openstack-dev00:19
*** neoXsys has quit IRC00:20
*** novas0x2a|laptop has quit IRC00:21
*** matsuhashi has joined #openstack-dev00:21
*** novas0x2a|laptop has joined #openstack-dev00:21
*** ngoracke has joined #openstack-dev00:21
*** thomasm has joined #openstack-dev00:22
*** xuhaiwei has quit IRC00:22
*** thomasm is now known as Guest3058000:22
*** SumitNaiksatam has quit IRC00:25
*** sarob has joined #openstack-dev00:26
jamielennoxbknudson: sorry i missed that conversation earlier, do the comments on discovery: https://review.openstack.org/#/c/38414/ answer your questions?00:26
bknudsonjamielennox: let me look00:26
*** Guest30580 has quit IRC00:27
*** buzztrol_ has quit IRC00:28
*** buzztroll has joined #openstack-dev00:28
*** HenryG_ has joined #openstack-dev00:29
*** buzztrol_ has joined #openstack-dev00:29
*** sarob has quit IRC00:31
*** senk has joined #openstack-dev00:31
bknudsonjamielennox: why would the parameters to fetch_available_versions have to change?00:31
bknudsonit shouldn't require authentication00:31
*** HenryG has quit IRC00:31
jamielennoxSo the two things i'm worried about is passing a session object to fetch_available_versions00:31
*** pjd2 has quit IRC00:32
bknudsonmaybe I should be reviewing the sessions change first00:32
jamielennoxif you have one from a different client you should reuse it, and also there was some discussion about that this would be an easily cachable result and that would likely want to happen on the session00:32
*** buzztroll has quit IRC00:33
jamielennoxalso you will need/want to pass that session object down into where the client is actually created00:33
jamielennoxIt might be that we just support both methods at least for now00:34
bknudsonI think we should consider that to be a higher level function that would be implemented using the more primitive functions00:34
*** zul has quit IRC00:34
*** kenperkins has quit IRC00:34
bknudsonit seems like being able to fetch the available versions is the most basic thing you can do.00:34
bknudsonwithout caching00:34
bknudsonand then caching would be built on top of that00:35
jamielennoxso available versions returns a constructor object that has all the information needed to create a new client00:35
*** beagles has quit IRC00:35
*** beagles has joined #openstack-dev00:35
*** jdurgin1 has left #openstack-dev00:35
*** angdraug has quit IRC00:35
jamielennoxthe second problem i had with the signature is the return value00:35
*** shakayumi has quit IRC00:36
jamielennoxat the moment it returns a dictionary with a tuple version as the key and the constructor object as the value00:36
*** jdurgin1 has joined #openstack-dev00:36
bknudsonthat's an excellent question and goes to the heart of how can anyone even use identity api.00:36
jamielennoxi'm not sure that's correct, it maybe should be a list00:36
dolphm_a_bknudson: o/ can you fix the first sentence in the description of bug 124285500:37
uvirtbotLaunchpad bug 1242855 in keystone "Removing role adds role with LDAP backend" [Undecided,In progress] https://launchpad.net/bugs/124285500:37
*** senk has left #openstack-dev00:37
bknudsondolphm_a_: it's always hard to write a sentence that makes sense for these problems that depend on a configuration and action!00:37
jamielennoxi had thought that as the signature to client.Client is really simple that i can keep the other function private for a while until we have a real use case for it00:37
bknudsonjamielennox: we have a use case for getting the versions, it's so that applications can figure out what version the server supports.00:38
dolphm_a_bknudson: what you wrote sounds like a critical? but i don't think the bug is00:38
*** jaypipes has quit IRC00:38
dolphm_a_bknudson: i mean, i know i'm not understanding what you meant00:39
bknudsondolphm_a_: it requires admin to exploit00:39
*** dolphm_a_ is now known as dolphm00:39
*** markmcclain has quit IRC00:39
*** sushils has quit IRC00:39
*** cpallares has quit IRC00:40
jamielennoxbknudson: not really, the use case is to get a client that can be used that is guaranteed to be pointed at a minimum identity API version00:40
*** cpallares has joined #openstack-dev00:40
jamielennoxbknudson: i don't think it is to list the available options - i don't care. If i'm doing an operation i just want to know if it is available or not, what IS available often doesn't matter00:40
*** spzala has quit IRC00:40
*** shakayumi has joined #openstack-dev00:42
dolphmyou're both right00:42
*** pjd2 has joined #openstack-dev00:42
bknudsondolphm: I updated the text... https://bugs.launchpad.net/keystone/+bug/124285500:42
dolphmas a client, i may do something different based on what api version is available -- so i might just want to get the list of versions and handle it msyelf00:42
uvirtbotLaunchpad bug 1242855 in keystone "Removing role adds role with LDAP backend" [Undecided,In progress]00:42
dolphmor i may require v 3.x and want to abort if that's not available00:43
*** reed has quit IRC00:43
dolphmor i may know how to use v3.1, but if it's not available, i can skip those bits and deal with v3.000:43
*** reed has joined #openstack-dev00:44
bknudsondolphm: do you think we should have a fetch_available_versions API?00:44
jamielennoxdolphm: ok, yep the above was too strongly put i definately see that as a use case, i just meant that I don't know how i want to consume the list of versions yet so i was going to keep that bit private until we had a user for it00:44
bknudsonthe arguments would be whatever's required to connect (not authenticate)00:44
bknudsonand it would return a list of versions00:44
bknudsonthe other question is -- does it include extensions info?00:45
dolphmbknudson: erm... this is a critical, isn't it?00:45
jamielennoxbknudson: so returning strings and URLs, not objects00:45
dolphmbknudson: sure, i would use that00:45
dolphmbknudson: fetch_available_versions00:45
dolphmi'd expect a list of tuples as the result, i suppose00:45
jamielennoxbknudson: not as yet, but i got that extension stuff passed identity-api for 3.2 so that we could do a similar process for extensions00:45
bknudsondolphm: the bug is pretty nasty.00:46
*** tanisdl has quit IRC00:46
bknudsonI mean you think you've removed authority and it's actually granted00:46
*** faramir1 has joined #openstack-dev00:46
bknudsonjamielennox: If the extensions are returned with the same REST call then seems like it should all be returned together by the client.00:47
dolphmor something like {(3, 2): 'http://identity/v3/'}00:47
jamielennoxbknudson: they aren't in the same call there is a similar call at /v3/extensions i think00:47
jamielennoxdolphm: the dictionary is what i do at the moment00:47
bknudsonjamielennox: ok, I thought they were all together, so a separate API makes more sense.00:47
dolphmjamielennox: with tuples as keys or values?00:48
jamielennoxthe tuple of API version as the key00:48
jamielennoxthe value is a constructor object00:48
dolphmworks for me00:48
dolphmerm00:48
dolphmso not a primitive?00:48
jamielennoxso you can say available_versions(auth_url=....)[3.0]()00:49
dolphm(side rant- we need to stop using "auth_url")00:49
morganfainbergdolphm, ++00:49
jamielennoxdolphm: ++00:49
morganfainberg(see i am lurking around here)00:49
bknudsonwhat's wrong with auth_url00:49
morganfainbergsomewhere...00:49
bknudsonidentity_url?00:50
jamielennoxbknudson: i don't like the confusion between auth_url and endpoint00:50
dolphmbknudson: because it's an identity service endpoint00:50
bknudsonidentity_endpoint00:50
dolphmbknudson: that's better00:50
*** pjd2 has quit IRC00:50
morganfainbergyep.00:50
jamielennoxi'm hoping that once we have pluggable auth the endpoint variable will move to another object and we can just have url=00:50
*** booga has quit IRC00:50
bknudsonI'm not sure about endpoint since it's not really the "end"... there's more beyond it.00:51
morganfainbergdolphm, i still like the concept of using a srv record00:51
morganfainbergor similar (at least supporting it)00:51
dolphmme too00:52
*** devoid has joined #openstack-dev00:52
*** adalbas has quit IRC00:52
*** nosnos has joined #openstack-dev00:52
*** dsirrine has joined #openstack-dev00:52
dolphmi'm wondering if it's possible to make devstack support it00:52
*** nermina has quit IRC00:52
morganfainbergdolphm, likely, devstack can … pretty much do whatever it wants ;)00:53
jamielennoxthat would be cool00:53
*** networkstatic has quit IRC00:53
*** sarob has joined #openstack-dev00:53
dolphmthis is not untrue00:53
morganfainbergdolphm, side note, looks like i finally am getting back to "normal" here… offices moved, house moved… starting to write code again.. *phew*00:53
*** networkstatic has joined #openstack-dev00:53
*** joesavak has joined #openstack-dev00:54
dolphmmorganfainberg: YAY00:54
*** devoid has left #openstack-dev00:54
dolphmmorganfainberg: i added you to some code reviews today ;)00:54
jamielennoxmorganfainberg: was just thinking it seems like a while since i've seen you00:54
morganfainbergjamielennox, yeah i've been fighting the move house move office, etc hell00:54
*** jsavak has joined #openstack-dev00:54
morganfainbergdolphm, i'll start looking at the queue here again.  i've been trying to toss in when i have a few minutes.00:55
morganfainbergjamielennox, but… it's all settling down just in time to hit the 15hr flight to HK! ;)00:55
morganfainberg(yay for wifi on the flight)00:55
jamielennoxanyway trying to draw people back to the original point: if you look at the _get_versions_from_response() function, that already returns things as {(2,0): 'http://host/v2.0', (3,0): 'http://host/v3'} i can change that around and make that public00:56
dolphmi don't think i have wifi :(00:56
jamielennoxwifi on the flight? seriously? we're still not allowed to turn our phone on00:56
dolphmjamielennox: ?00:56
dolphmjamielennox: you can use whatever > 10,000 ft00:57
*** nati_ueno has quit IRC00:57
morganfainbergjamielennox, we can't turn on cell phones (cell data) but a lot of planes provide wifi and you can use just about anything (short of a ham radio) > 10,000ft00:57
dolphmjamielennox: and back on the original point-- you said hte value was a constructor object, but your example there is just strings00:57
*** sarob has quit IRC00:57
jamielennoxanyway no wifi on planes00:57
*** zul has joined #openstack-dev00:58
jamielennoxyea, two different functions00:58
*** nermina has joined #openstack-dev00:58
morganfainbergjamielennox, oh, so you're going to have a different dataset (the contructor objecT)?00:58
jamielennox_get_versions_from_response() takes a requests.Response object returns strings00:58
morganfainbergor are we still dealing with strings?00:58
jamielennoxavailable versions turns strings into _KeystoneVersion constructor objects00:58
morganfainbergah, argument != return00:58
*** joesavak has quit IRC00:58
bknudsonjamielennox: so if you have an auth_url or _endpoint of http://host , you get the 2 (on latest keystone)00:58
morganfainbergerm arg_type00:59
bknudsonbut if you have http://host/v2.0 you get just v2 ?00:59
jamielennoxbknudson: full name00:59
morganfainbergjamielennox, ?00:59
dolphmif you give me a public method to list versions like your example up there, i'd be super happy00:59
jamielennoxbknudson: so that it gets passed off to keystoneclient.v3.Client(auth_url=)00:59
jamielennoxmorganfainberg: not sure what your question was.. the _get_versions_from_response was just a helper function, but i can easily rearrange that to be public01:00
jamielennoxthat's why it took a response object01:00
morganfainbergno i meant full name?01:00
morganfainbergnot sure what you mean by full name01:00
jamielennoxoh full qualified url01:00
morganfainbergAH.01:01
morganfainbergok ok, now it makes sense01:01
jamielennoxmy fingers are sometimes faster than my brain01:01
*** cpallares has quit IRC01:01
morganfainbergeh, we just have a lot of overloaded terminology, i always figure it's better to ask01:01
*** radez_g0n3 is now known as radez01:01
*** cpallares has joined #openstack-dev01:01
morganfainbergyeah having that be public could be very useful01:02
bknudsonI guess it could be extended in the future to return a dict-like object that's callable01:02
bknudsonshould say it would return a dict where the endpoint is a string-like object that's callable, and returns a client.01:04
*** buzztrol_ has quit IRC01:04
*** buzztroll has joined #openstack-dev01:05
jamielennoxbknudson: so the reason i hvae the constructor factory is that most things passed to the client.Client() function need to get passed to the client.v2_0.Client or v3.Client01:05
bknudsonand could override [] to be smarter about handling version #s.01:05
*** buzztroll has quit IRC01:05
*** buzztroll has joined #openstack-dev01:05
jamielennoxif you did available_versions(auth_url = ...) etc you would need to parse the return value, and use the url as the auth_url for the next call to the appropriate client01:06
*** zul has quit IRC01:06
jamielennoxwith the example i gave before i can say available_versions(auth_url=....)[3.0](username='jamielennox', password='abc123')01:06
jamielennoxand auth_url is automatically passed through to the real client object01:07
morganfainbergjamielennox, hrm.  there is something that rubs me the wrong way about that01:07
bknudsonthat's pretty neat.01:07
morganfainbergnot the concept…the implementation01:08
morganfainbergerm, description01:08
bknudsonI'd like to keep it simple at first.01:08
*** yaguang has quit IRC01:08
*** yolanda has quit IRC01:08
bknudsonThe fancy stuff can be added later.01:08
morganfainbergbknudson, fair enough.01:09
morganfainbergbknudson, i'm trying to put my finger on what is bugging me about it01:09
morganfainbergbknudson, it's nothing major…but something…. is setting off the bells, yanno how that goes sometimes?01:09
bknudsonmorganfainberg: is it the use of a float for the version?01:09
morganfainbergbknudson, that is likely it.01:09
jamielennoxthe same thing would work with available_versions(auth_url=...., username='jamielennox', password='abc123')[3.0]() whatever, it's just otherwise i need to return the client Class that should be used and the url to use with it01:09
bknudsonmorganfainberg: the concern that the args for 2.0 aren't the same is for 3.0?01:09
morganfainbergbknudson, i think we really should be 100% tuple for version01:09
jamielennoxso klass, url = available_versions(auth_url=...);   klass(auth_url=url, username='jamielennox')01:10
bknudsonjamielennox: both of the calls, where the args are in available_versions or in the factory call are making sense to me01:11
jamielennoxmorganfainberg: i like that idea too, but https://etherpad.openstack.org/p/api-version-discovery-proposal has been out for a while and it specifies floats01:11
bknudsonI'd like to see it as an add-on after the basic function is done.01:12
*** haomaiwang has joined #openstack-dev01:12
jamielennoxand the current Client(..).version value is a string01:12
bknudsonwe could add a new version that returns a tuple.01:13
bknudsonClient.version_tuple01:13
jamielennoxbknudson, it's on my 1.0 list01:13
jamielennoxnot necessarily version_tuple but figure out what Client(..).version actually means cause at the moment telling me that it's 'v3' doesn't help at all01:14
*** kbrierly has quit IRC01:14
jamielennoxs/at all/very much01:15
*** neelashah has joined #openstack-dev01:16
*** erfanian has joined #openstack-dev01:16
*** mrodden has quit IRC01:16
*** erfanian has quit IRC01:16
*** jamespage_ has joined #openstack-dev01:17
*** erkules_ has joined #openstack-dev01:17
jamielennoxanyway01:18
*** melwitt has quit IRC01:19
jamielennoxshould available_versions return a dict with version->url or a list of tuples (version, url)?01:19
*** buzztroll has quit IRC01:19
*** buzztroll has joined #openstack-dev01:20
*** erkules has quit IRC01:20
bknudsonjamielennox: with a dict you could do [(3,0)] ?01:20
*** buzztroll has quit IRC01:20
*** jamespage_ has quit IRC01:20
*** buzztroll has joined #openstack-dev01:20
bknudsonjamielennox: the [(3,0)] worked for me, so I'm good with a dict.01:21
jamielennoxyea, a tuple is hashable so you can use it as a dictionary key01:21
bknudsonis there any reason I'd want to go the other way around... figure out the version for the endpoint?01:22
bknudsonI can't think of a reason to do that.01:22
bknudsonso I think a dict of version tuple -> endpoint works for me.01:22
jamielennoxnot that i can think of01:22
jamielennoxbut, you do need to know if it's stable01:23
bknudsonso there's more info...01:23
jamielennoxso it would probably need to be a dictionary as the value with at least {'url': 3.0, 'stable': 'beta'} or something01:23
*** dsirrine has quit IRC01:23
bknudsonwould there be both a stable and unstable for a version?01:23
*** markwash has quit IRC01:23
jamielennoxso there's no reason you couldn't just stick url in there as well01:23
jamielennoxbut at which point you may as well just use the constructor objects i've already got01:24
bknudsonwhat does the API return, is it a list of objects?01:24
jamielennoxbknudson: not for the same version i think, but you would want to know if for example the upcoming 3.2 that is listed is stable or not for use01:24
bknudsonthe REST call01:24
jamielennoxi think it's a list of dicts01:25
*** dims has quit IRC01:26
jamielennoxit's not keyed01:26
bknudsonjamielennox: after looking at this, seems like the most basic thing we could do is have a list of objects, just like the REST api returns.01:26
*** erfanian has joined #openstack-dev01:26
*** HenryG_ has quit IRC01:26
bknudsonthen you can build whatever extra functionality on top of that.01:27
jamielennoxbknudson: yea, i thought about that, but is there ever a situation where you will have multiple urls for the same version?01:28
*** rongze has joined #openstack-dev01:28
jamielennoxif not then the benefit of indexing the dict comes at no cost01:28
bknudsonjamielennox: it's kind of odd right now that the server returns v3.0 but it's actually more like 3.201:28
jamielennoxyea, that's a bug01:29
jamielennoxit is suppoesd to be 3.101:29
bknudsonshould we have both a 3.0 and a 3.1 ?01:29
*** guohliu has joined #openstack-dev01:29
bknudsonthey'd both have the same "self" link01:29
*** cpallares1 has joined #openstack-dev01:30
*** danwent has quit IRC01:30
*** cpallares has quit IRC01:30
jamielennoxwe shouldn't need to because 3.1 includes all of 3.001:30
jamielennoxbut there is no reason we couldn't01:30
jamielennoxthe more likely is we have a stable 3.1 and an unstable 3.201:31
*** zbitter has joined #openstack-dev01:31
*** yolanda has joined #openstack-dev01:31
bknudsonI guess it depends on what an application would expect... if it's looking for "v3.0" explicitly then it would break if we only had "v3.1"01:32
jamielennoxyea01:32
jamielennoxok, lets just support the list01:32
bknudsonYou could make it as simple as just call the REST API (/) and return the parsed dict from JSON01:34
bknudsoncould "normalize" if you call with / or /v3 or /v2.0 by putting v3 or v2 in []01:34
*** zaneb has quit IRC01:35
*** singhs has quit IRC01:36
*** rongze has quit IRC01:37
*** dot has joined #openstack-dev01:38
*** tomoe_ has joined #openstack-dev01:38
*** pjd2 has joined #openstack-dev01:39
*** haomaiwang has quit IRC01:39
jamielennoxthe normalize part is handled already, but yea, i could just have it return a list of dicts straight from the server01:41
*** SlickNik has quit IRC01:42
*** SlickNik has joined #openstack-dev01:43
*** xingchao has joined #openstack-dev01:43
*** dims has joined #openstack-dev01:44
*** mrodden has joined #openstack-dev01:44
*** dot has quit IRC01:44
*** jsavak has quit IRC01:44
*** cpallares has joined #openstack-dev01:45
*** cpallares1 has quit IRC01:45
*** networkstatic is now known as networkstatic_Zz01:52
*** zyluo has joined #openstack-dev01:55
*** dims has quit IRC01:55
morganfainbergjamielennox, i like bknudson's idea with normalize handling in the [] (e.g. [v2])01:58
morganfainbergit does mirror closely what we already have.01:59
jamielennoxmorganfainberg: i don't think that's what he meant01:59
*** slic has joined #openstack-dev01:59
morganfainbergjamielennox, hrm.01:59
jamielennoxif you call / you get a list of versions01:59
morganfainbergoh01:59
morganfainbergi see01:59
morganfainbergyeah01:59
jamielennoxif you call eg /v2.0 you get one version01:59
*** novas0x2a|laptop has quit IRC01:59
morganfainbergmake it an implicit return of what is available.02:00
jamielennoxto override [] would mean createing a new object with a custom __getitem__02:00
morganfainbergeh, not like we don't do that all over the place in other projects :P02:00
morganfainbergkeystone seems to do less of the make this like a dict…no really02:00
*** beagles has quit IRC02:00
comaya question around '[upgrade_levels]' in havana, particuarly wrt nova's conductor02:01
comaydoes using it negate the ability to perform conductor operations remotely (use_local=false)?02:01
*** alunch has quit IRC02:01
jamielennoxmorganfainberg: except where it shouldn't, like AccessInfo has a dict base class02:01
*** networkstatic_Zz is now known as networkstatic02:01
*** pjd2 has quit IRC02:01
*** radsy has quit IRC02:01
morganfainbergcomay, if no one answers you here #openstack-nova might also be able to help (people lurk in both places)02:02
morganfainbergjamielennox, right02:02
*** stevemar has joined #openstack-dev02:02
morganfainbergjamielennox, wow, a couple weeks paying less attention to IRC i feel like the code has moved significantly without my noticing.02:03
morganfainbergjamielennox, (not that i actually has, i just feel… behind)02:03
comayah, thanks morganfainberg; digging through nova/cmd/compute.py, it seems one precludes the other02:03
morganfainbergcomay, that seems icky =/  but i haven't taken a serious look at that part of nova in a while.02:04
morganfainbergi'm sure there is a good reason for that02:04
comayor just as likely, i'm misreading something :)02:05
*** burris has joined #openstack-dev02:06
comay(the content was i was bringing just a havana nova-compute node into grizzly installation and struggling with the nova-conductor API versions)02:06
*** haomaiwang has joined #openstack-dev02:06
*** 17WAAEJ0O has quit IRC02:06
comay(it's either too high or too low - sounds like the goldilocks)02:07
*** twoputt has quit IRC02:07
*** singhs has joined #openstack-dev02:08
*** pjd2 has joined #openstack-dev02:12
*** asalkeld_lunch is now known as asalkeld02:14
*** SlickNik has quit IRC02:14
*** SlickNik has joined #openstack-dev02:15
*** radez is now known as radez_g0n302:16
*** stevemar has quit IRC02:22
*** sumanthns has joined #openstack-dev02:25
ayoungjamielennox, about the "region" patch in the client.  I think that we are going to have something happen server side, and I suspect that the client side approach is wrong.02:26
*** rongze has joined #openstack-dev02:26
jamielennoxayoung: the existing client side approach is wrong02:27
jamielennoxbut i have no choice because it was supported there for a while about 4 releases ago02:27
*** xarses has joined #openstack-dev02:27
ayoungjamielennox, so what is your patch working around?02:28
jamielennoxeverywhere i've put region handling on the client side i've put great big deprecated comments02:28
jamielennoxthere is a bug02:28
ayoungthe bug looks like a feature request to me02:28
jamielennoxbut the best explanation i saw was in a review comment by Cody dated Oct 902:29
ayoungjamielennox, its like, they decided "hey we are going to add this attribute."  And then "Why are you not filtering on our attribute?"02:29
jamielennoxso the problem was the attribute was added previously02:29
jamielennoxand then removed and we broke compatabillity02:29
jamielennoxthis is why i was so against it in the first few patches and i considered it a feature request02:30
ayoungjamielennox, define "we"02:30
jamielennoxbut he's right we used to allow it02:30
jamielennoxkeystoneclient02:30
ayoungallow it is one thing, but you look like you are doing client side filtering on it02:30
jamielennoxi've no idea who's fault it was02:30
jamielennox:)02:30
ayoungwhat's git blame say?02:31
jamielennoxhere is where it was added to keystoneclient: https://review.openstack.org/#/c/20294/02:31
jamielennoxhere is where it was taken away: https://review.openstack.org/#/c/20404/02:31
*** asalkeld has quit IRC02:32
jamielennoxanyway client side filtering is fine02:32
ayoungjamielennox, so it looks like it was removed unintentionally?02:32
jamielennoxyou just shouldn't filter by setting the region as a parameter on the service catalog02:32
jamielennoxyea, it was unintentional02:33
jamielennoxbut it should never have been allowed like that in the first place02:33
ayoungok, since I approved the change that broke it...02:34
jamielennoxdo you follow what the patch is fixing?02:34
ayoungjamielennox, yeah, and I am worried that we gave life to something we now need to support02:34
jamielennoxversion 1.002:34
jamielennoxayoung: my notes: https://etherpad.openstack.org/p/keystoneclient-1.002:35
ayoungjamespage, So we support client side filtering by region of the endpoints.  Anything else nasty like this that I missed?02:35
*** prad has joined #openstack-dev02:36
ayoungaside from pinging the wrong person?02:36
*** prad has quit IRC02:36
jamielennoxxchat has an option so tab complete fills the last person that spoke, i'm not sure why that's not the default02:36
*** asalkeld has joined #openstack-dev02:36
ayounglet me find that02:37
*** asalkeld has left #openstack-dev02:37
morganfainbergjamielennox, thats a neat feature02:37
jamielennoxin preferences: interface > Input Box > Nick completion sorted02:38
ayoungXChat preferences -> Input Box -> Nick Completions Sorted -> Last-spoke order02:38
*** reed has quit IRC02:38
ayoungheh02:38
jamielennoxjamespage: your worries are over02:38
ayoungjamielennox, until you try to ping yourself02:39
jamielennoxso client side filtering of the service catalog is fine - it's even good02:39
jamielennoxit's just that a ServiceCatalog should be considered shared so you shouldn't be installing a region into it02:39
morganfainbergnew plan, randomly change name to something close to who jamielennox is talking to and interject randomly.02:40
jamielennoxmorganfainberg: you've got an evil mind02:40
morganfainbergayoung, i don't see an issue in filtering the service catalog in this context02:40
ayoungmorganfainberg, its just wrong to do client side what, in this case, should be done server side.  Band aid on a sucking chest wound.02:40
jamielennoxi wrote out a whole scenario about sharing the catalog between swift and keystone - i *think* that's reasonable02:41
morganfainbergayoung, looks more like a gauze bandage we need to change out soon… but at least the blood isn't all over the floor.02:41
jamielennoxayoung: 2 things, 1 you might need multiple regions 2. server side region filtering hasn't been done yet and we need something in the mean time02:41
ayoungmorganfainberg, no, its worse than that.  He's dead Jim.02:42
morganfainbergayoung, lol02:42
morganfainbergjamielennox, i think the latter is the more salient point.02:42
ayoungjamielennox, we had a BP and and API spec for a Region extension to the Service catalog, but He-Who-Must-Not-Be-Named-in-IRC -2ed it and it died.  We resurrected it today02:42
jamielennoxwell the above link is my raw ongoing list of things i want for a 1.0, the client summit proposal got approved so we'll be talking about something client02:43
morganfainbergoh huh i should see what sessions were approved02:43
ayounghttps://review.openstack.org/#/c/27563/02:43
*** nermina has quit IRC02:44
ayoungHTML got the axe, no surprise there.  I should have submitted it as a Horizon session02:44
morganfainbergayoung, ah i thought that was who you were talking about02:44
ayoungOh yeah02:44
ayoungHe was pretty cool back when were both in Slythering02:45
ayoungtry typing that without adding an 'g'  it is impossible02:45
ayoungSlytherin02:45
ayoungI had to backspace it02:46
morganfainbergyeah, g just wants to jump onto the end of that word02:46
morganfainbergevery time02:46
*** pixelb has quit IRC02:46
*** SumitNaiksatam has joined #openstack-dev02:46
*** xingcha__ has joined #openstack-dev02:47
*** rongze_ has joined #openstack-dev02:47
morganfainbergayoung, i think the /regions resource is a "good idea"™02:48
ayoungmorganfainberg, we all do.  I think his complain has been covered too.  We had a pretty extensive discussion today.  Filter is part of the API, just as an extension ,and should cover selectively filtering by region or what a region will show.02:49
morganfainbergayoung, yeah, i would agree with that assessment02:49
*** rongze has quit IRC02:49
morganfainbergayoung, unrelated, started work on the new KVS stuff.  hopefully by the end of the week i'll have the new base changes done.02:49
*** xingchao has quit IRC02:50
morganfainbergayoung, need an opinion though, should we keep keystone.common.kvs in it's current state for now and add deprecation and make this "new thing" something like keystone.common.dkvs or similar"02:50
ayoungmorganfainberg, sounds good.  I'd like it if the old options were supported, and were one liners like "extends dogpile(memcached)"02:51
morganfainbergayoung, that would be my initial thought… at least for a release (maybe +2)02:51
morganfainbergtoss some deprecation warnings in.  I don't want to rip the carpet out from under anyone with this change02:52
*** pjd2 has quit IRC02:52
*** Shaan7 has quit IRC02:52
ayoungmorganfainberg, I'm not 100% sure that the existing filtering is sufficient.  I suspect we will need filtering on the hierarchical regions themselves.  A company may want to return a differnt set of availabel regions depending on a users contract, and that will probably be an implicit filter beyond what he's spec'ed out, but that can probably be and  incremental feature addition.02:52
ayoungI think that KVS stuff might be the killer feature in Icehouse.  It will certainly be used.02:53
*** cpallares1 has joined #openstack-dev02:53
morganfainbergayoung, that's a good point.  I am not sure if it's an "add-on" for rregions though.  it's more like a wholly separate filtering syntax.02:54
morganfainbergerm approach02:54
ayoungmorganfainberg, it is an addition fopr the admin API.02:54
*** cpallares has quit IRC02:54
morganfainbergayoung, ah in that context, yes02:54
morganfainbergok02:54
ayoungit is not explicit filtering, it is hidden from the user02:54
morganfainbergoh, sort of like endpoint filtering works currently02:54
morganfainbergbut, probably a bit more enforceable.02:55
ayoungmorganfainberg, yeah, really just extending the concept to the new other object in the service catalog02:55
*** dolphm_ has joined #openstack-dev02:55
morganfainbergayoung, maybe that could be a good approach, make endpoint filtering more "catalog" filtering.02:56
morganfainbergit would need some reworking, but it essentially solves the same basic concept.02:56
morganfainbergis there a need to have two separate catalog filtering mechanisms (e.g. is endpoint filtering different enough to warrant that)02:57
jamielennoxmorganfainberg: as you were here for the conversation earlier, if i use available_versions for the function that returns a bunch of raw strings, what should i use for the function that returns the constructor objects02:57
*** dolphm has quit IRC02:57
ayoungmorganfainberg, yep, since enumeration of regions is hierarchical, it is not covered by endpoint filtering02:57
ayoungglobal->us->west->bay_area02:57
morganfainbergayoung, hm. right02:57
morganfainberg->i_swear_our_transit_isnt_on_strike02:58
morganfainbergtoo soon?02:58
ayoungbut while all customer see us->west and us->east  the intel community also sees us->intel02:58
morganfainbergmaybe i'm feeling loopy tonight.02:58
ayoung"tonight?"  and what do we say on Passover?02:58
morganfainberglol.  why is this night different than all other nights?02:59
morganfainbergor in my family "why did aunt soandso get to cook the brisket again?"02:59
ayoungHeh02:59
ayoungDid she boil it?  My Wife's Aunt once Boiled the Turkey02:59
ayoungshudder03:00
morganfainbergayoung, she cooked it for like 1hr03:00
morganfainbergand glared at people who didn't eat it03:00
morganfainbergit was aweful03:00
ayoungthat is like pan seared brisket03:00
morganfainbergjamielennox, available_clients?03:00
*** cpallares1 has quit IRC03:00
*** cpallares has joined #openstack-dev03:00
morganfainbergjamielennox, i might be mis-reading the question03:01
ayoungOK...bed time here in the global->us->east  region03:01
jamielennoxayoung: night03:01
morganfainbergayoung, it is near that time here as well for me.03:01
morganfainbergayoung, catch ya tomorrow03:01
jamielennoxmorganfainberg: that's the right idea, i just need a new function name03:01
morganfainbergjamielennox, depends on how complex you want it03:02
*** colinmcnamara has joined #openstack-dev03:02
*** cpallares has quit IRC03:02
morganfainbergjamielennox, it might be soemthing as simple as .available_clients or .available_versions_clients03:03
*** cpallares has joined #openstack-dev03:03
jamielennoxmorganfainberg: i'll use available_clients, i'm going to keep it private for now anyway i think03:03
morganfainberghrm. maybe .available_version_objects ?03:03
morganfainbergjamielennox, i think that is the most analogous and descriptive you can be03:03
*** singhs has quit IRC03:03
morganfainbergjamielennox, yeah make it private until we are sure we want it public (better approach than the inverse)03:04
*** zhiyan has joined #openstack-dev03:04
jamielennoxmorganfainberg: indeed03:05
jamielennoxmorganfainberg: have a look: https://review.openstack.org/#/c/3841403:06
morganfainbergjamielennox, hehe, i see what you did there… get me to look at it when sleepy :P03:06
morganfainbergjamielennox, looking now03:06
jamielennoxmorganfainberg: that's ok, no one else will be able to review it till tomorrow anyway03:07
morganfainbergjamielennox, hehe03:07
*** cpallares has quit IRC03:07
jamielennoxmorganfainberg: where/why did you move?03:07
*** markwash has joined #openstack-dev03:07
*** cpallares has joined #openstack-dev03:07
morganfainbergjamielennox, about 4.4 miles from the previous place, and suffice to say it involved lawyers and unlivable conditions.03:07
*** colinmcnamara has quit IRC03:08
morganfainbergjamielennox, of the ruined carpet (dog … messes seeped into the carpet and padding), deferred maintenance, etc.03:08
morganfainbergtype.03:08
jamielennoxmorganfainberg: oh, right - so not exactly leaving on amicable terms03:08
*** cpallares has quit IRC03:08
*** colinmcnamara has joined #openstack-dev03:09
morganfainbergjamielennox, i'm hoping that i wont need more lawyer time to get the last few things buttoned up03:09
*** cpallares has joined #openstack-dev03:09
morganfainbergjamielennox, and my work moved to our new permanent offices :)03:09
morganfainbergsuper nice.03:09
jamielennoxcool03:10
morganfainbergwell permanent until we grow significantly headcount wise03:10
jamielennoxhow big is it now?03:10
*** senk has joined #openstack-dev03:10
*** paragan has joined #openstack-dev03:10
*** paragan has joined #openstack-dev03:10
*** colinmcnamara has quit IRC03:13
*** cpallares has quit IRC03:13
*** cpallares1 has joined #openstack-dev03:13
*** cpallares1 has quit IRC03:15
*** cpallares has joined #openstack-dev03:15
*** pmathews has joined #openstack-dev03:15
*** stevemar has joined #openstack-dev03:17
*** cpallares has quit IRC03:18
*** cpallares has joined #openstack-dev03:19
*** xjiujiu has joined #openstack-dev03:21
*** senk has left #openstack-dev03:23
*** vladan has quit IRC03:26
*** dolphm_ has quit IRC03:29
*** dolphm has joined #openstack-dev03:29
*** xjiujiu has quit IRC03:31
*** xjiujiu has joined #openstack-dev03:32
*** dolphm has quit IRC03:34
*** vladan has joined #openstack-dev03:35
*** buzztroll has quit IRC03:36
*** buzztroll has joined #openstack-dev03:37
*** cpallares1 has joined #openstack-dev03:38
*** cpallares has quit IRC03:38
*** dot has joined #openstack-dev03:40
*** buzztroll has quit IRC03:41
*** pmathews has quit IRC03:42
*** pmathews has joined #openstack-dev03:43
*** macjack has joined #openstack-dev03:45
*** aditirav has joined #openstack-dev03:45
*** aditirav has joined #openstack-dev03:46
*** dot has quit IRC03:46
*** xjiujiu has quit IRC03:46
*** xjiujiu has joined #openstack-dev03:47
*** sumanth has quit IRC03:48
*** garyk has quit IRC03:48
*** comay has quit IRC03:51
*** asalkeld has joined #openstack-dev03:52
*** jecarey has quit IRC03:53
*** comay has joined #openstack-dev03:57
*** buzztroll has joined #openstack-dev04:00
*** xjiujiu has quit IRC04:02
*** xjiujiu has joined #openstack-dev04:02
*** chandankumar has joined #openstack-dev04:05
*** haomaiwang has quit IRC04:07
*** haomaiwang has joined #openstack-dev04:08
*** buzztroll has quit IRC04:12
*** haomaiwang has quit IRC04:12
*** buzztroll has joined #openstack-dev04:12
*** yolanda has quit IRC04:13
*** buzztroll has quit IRC04:17
*** vladan has quit IRC04:19
*** xjiujiu has quit IRC04:19
*** neelashah has quit IRC04:19
*** xjiujiu has joined #openstack-dev04:20
*** sarob has joined #openstack-dev04:22
*** vladan has joined #openstack-dev04:24
*** buzztroll has joined #openstack-dev04:24
*** cpallares1 has quit IRC04:26
*** cpallares has joined #openstack-dev04:26
*** kbrierly has joined #openstack-dev04:27
*** guohliu has quit IRC04:27
*** tomoe_ has quit IRC04:29
*** xjiujiu has quit IRC04:31
*** rongze_ has quit IRC04:31
*** xjiujiu has joined #openstack-dev04:31
*** rongze has joined #openstack-dev04:32
*** erfanian has quit IRC04:35
*** sumanthns has quit IRC04:35
*** vladan has quit IRC04:35
*** buzztroll has quit IRC04:36
*** rongze has quit IRC04:37
*** buzztroll has joined #openstack-dev04:37
*** cpallares has quit IRC04:39
*** cpallares has joined #openstack-dev04:39
*** xjiujiu has quit IRC04:40
*** xjiujiu has joined #openstack-dev04:40
*** guohliu has joined #openstack-dev04:41
*** buzztroll has quit IRC04:41
*** vladan has joined #openstack-dev04:42
*** yeylon__ has joined #openstack-dev04:43
*** kushal has joined #openstack-dev04:44
*** sarob has quit IRC04:45
*** sarob has joined #openstack-dev04:45
*** buzztroll has joined #openstack-dev04:48
*** xjiujiu has quit IRC04:49
*** xjiujiu has joined #openstack-dev04:49
*** buzztroll has quit IRC04:49
*** buzztroll has joined #openstack-dev04:50
*** sarob_ has joined #openstack-dev04:50
*** sarob has quit IRC04:50
morganfainbergjamielennox, added a comment (no -1 or +) to the review.04:50
morganfainbergjamielennox, just something worth considering04:50
*** sarob_ has quit IRC04:51
morganfainbergi'll look more closely when i'm not ½ asleep04:51
morganfainbergbefore giving a +/- score to the code.04:51
*** sarob has joined #openstack-dev04:51
*** xchu has joined #openstack-dev04:52
*** pmathews has quit IRC04:52
jamielennoxso you mean if someone asks for a client.Client(version=(4, 0)) don't even bother hitting the server?04:52
*** xchu has quit IRC04:53
morganfainbergjamielennox, basically04:53
jamielennoxshould be a fairly easy addition04:53
morganfainbergjamielennox, client wont know what the hell to do with it, it shouldn't even try.04:53
jamielennoxi'm not sure if it buys much04:53
*** mjbright_ has joined #openstack-dev04:54
morganfainbergjamielennox, it also should be able to be directly queried e.g. client.supported_versions04:54
jamielennoxi mean if you want to use client version 4 you are going to need to have keystoneclient>=3.0 in your requirements.txt04:54
*** buzztroll has quit IRC04:54
*** nshaikh has joined #openstack-dev04:54
morganfainbergthis is more for a 3rd party (e.g. me) writing code that may be 3.0 aware in the future…and have 4.0 functionality04:55
morganfainbergso, use 4.0 if it's there… i'd rather say "client.can_support_Version(x) no? fall back"04:55
morganfainbergit's a convienence feature04:55
morganfainbergit saves a try 4.0 oh that failed, try 3.0, oh that failed, try 2.004:56
morganfainbergsome servers may have mis-matched clients on them in the wild04:56
*** sarob has quit IRC04:56
*** yeylon__ has quit IRC04:56
morganfainbergi'm trying to think as an end consumer not an OpenStack project.04:56
*** cpallares has quit IRC04:57
morganfainbergjamielennox, like i said, it's just a thought, it's wy i didn't -1 for it.04:57
*** kumaranvram has joined #openstack-dev04:57
*** cpallares has joined #openstack-dev04:57
morganfainbergi'll add a score when i'm not loopy.04:58
morganfainberg:)04:58
jamielennoxno worries, thanks for taking a look04:58
*** ykhodork has quit IRC04:58
*** afazekas has quit IRC04:58
*** sumanth has joined #openstack-dev04:59
*** cpallares has quit IRC05:00
*** cpallares has joined #openstack-dev05:00
*** ArcTanSusan has joined #openstack-dev05:00
*** pmathews has joined #openstack-dev05:01
*** haomaiwang has joined #openstack-dev05:01
*** matsuhashi has quit IRC05:01
*** matsuhashi has joined #openstack-dev05:02
*** matsuhashi has quit IRC05:02
*** matsuhashi has joined #openstack-dev05:03
*** haomaiwang has quit IRC05:03
*** boris-42 has joined #openstack-dev05:04
*** devoid has joined #openstack-dev05:05
*** vladan has quit IRC05:05
*** devoid has left #openstack-dev05:06
*** Loquacity has quit IRC05:06
*** comay has quit IRC05:06
*** cpallares1 has joined #openstack-dev05:06
*** cpallares has quit IRC05:06
*** SlickNik has quit IRC05:07
*** aditirav has quit IRC05:07
*** aditirav has joined #openstack-dev05:07
*** SlickNik has joined #openstack-dev05:07
*** aditirav has quit IRC05:07
*** buzztroll has joined #openstack-dev05:08
*** aditirav has joined #openstack-dev05:08
*** haomaiwang has joined #openstack-dev05:11
*** sumanthns has joined #openstack-dev05:13
*** sumanthns has quit IRC05:15
*** xjiujiu has quit IRC05:15
*** aeperezt has quit IRC05:15
*** xjiujiu has joined #openstack-dev05:15
*** vladan has joined #openstack-dev05:17
*** cpallares1 has quit IRC05:18
*** cpallares has joined #openstack-dev05:19
*** ArcTanSusan has quit IRC05:19
*** afazekas has joined #openstack-dev05:20
*** buzztroll has quit IRC05:23
*** buzztroll has joined #openstack-dev05:24
*** xjiujiu has quit IRC05:24
*** buzztroll has quit IRC05:24
*** buzztroll has joined #openstack-dev05:24
*** xjiujiu has joined #openstack-dev05:24
*** vipul has quit IRC05:25
*** vipul has joined #openstack-dev05:26
*** senk has joined #openstack-dev05:26
*** cpallares has quit IRC05:27
*** cpallares1 has joined #openstack-dev05:27
*** sushils has joined #openstack-dev05:29
*** cpallares1 has quit IRC05:31
*** cpallares has joined #openstack-dev05:31
*** sumanth has quit IRC05:33
*** senk has quit IRC05:33
*** asalkeld has quit IRC05:33
*** asalkeld has joined #openstack-dev05:33
*** matsuhashi has quit IRC05:35
*** matsuhashi has joined #openstack-dev05:36
*** yeylon__ has joined #openstack-dev05:36
*** sandeepr_ltp has joined #openstack-dev05:36
*** matsuhashi has quit IRC05:36
*** matsuhashi has joined #openstack-dev05:37
*** haomaiwang has quit IRC05:39
*** haomaiwa_ has joined #openstack-dev05:39
*** jtomasek has joined #openstack-dev05:41
*** dot has joined #openstack-dev05:42
*** xjiujiu has quit IRC05:42
*** xjiujiu has joined #openstack-dev05:43
*** e1mer has joined #openstack-dev05:45
*** e1mer has joined #openstack-dev05:45
*** cpallares1 has joined #openstack-dev05:48
*** dot has quit IRC05:48
*** cpallares has quit IRC05:48
*** sumanth has joined #openstack-dev05:48
*** reed has joined #openstack-dev05:49
*** ykhodork has joined #openstack-dev05:49
*** guohliu has quit IRC05:49
*** mpavlase has joined #openstack-dev05:50
*** cpallares1 has quit IRC05:51
*** cpallares has joined #openstack-dev05:51
*** buzztroll has quit IRC05:53
*** ArcTanSusan has joined #openstack-dev05:53
*** xjiujiu has quit IRC05:53
*** xjiujiu has joined #openstack-dev05:54
*** jtomasek has quit IRC05:56
*** mrunge has joined #openstack-dev05:56
*** cpallares has quit IRC05:56
*** cpallares has joined #openstack-dev05:57
*** Loquacity has joined #openstack-dev05:57
*** haomaiwang has joined #openstack-dev05:57
*** cpallares has quit IRC05:59
*** haomaiwa_ has quit IRC06:00
*** cpallares has joined #openstack-dev06:00
*** vladan has quit IRC06:00
*** vipul is now known as vipul-away06:00
*** faramir1 has quit IRC06:02
*** sarob has joined #openstack-dev06:02
*** cpallares has quit IRC06:02
*** cpallares has joined #openstack-dev06:02
*** guohliu has joined #openstack-dev06:02
*** cpallares has quit IRC06:03
*** cpallares1 has joined #openstack-dev06:03
*** xjiujiu has quit IRC06:04
*** xjiujiu has joined #openstack-dev06:04
*** vladan has joined #openstack-dev06:04
*** vipul-away is now known as vipul06:05
*** zaitcev has quit IRC06:05
*** sarob has quit IRC06:07
*** rohitk has joined #openstack-dev06:07
*** anniec has quit IRC06:08
*** cpallares1 has quit IRC06:08
*** cpallares has joined #openstack-dev06:09
*** cpallares has quit IRC06:10
*** cpallares1 has joined #openstack-dev06:10
*** rushiagr has joined #openstack-dev06:11
*** markwash has quit IRC06:12
*** MaxV has joined #openstack-dev06:12
*** bmelande_ has quit IRC06:13
*** SlickNik has quit IRC06:14
*** SlickNik has joined #openstack-dev06:14
*** vartom9 has joined #openstack-dev06:14
*** yamahata has quit IRC06:15
*** prekarat has joined #openstack-dev06:15
*** xjiujiu has quit IRC06:16
*** xjiujiu has joined #openstack-dev06:16
*** sushils has quit IRC06:16
*** haomaiwa_ has joined #openstack-dev06:17
*** amerine has joined #openstack-dev06:17
*** cpallares1 has quit IRC06:17
*** cpallares has joined #openstack-dev06:18
*** markwash has joined #openstack-dev06:18
*** e0ne has joined #openstack-dev06:18
*** sandeepr_ltp has quit IRC06:18
*** sandeepr_ltp has joined #openstack-dev06:19
*** haomaiwang has quit IRC06:21
*** cpallares has quit IRC06:21
*** cpallares has joined #openstack-dev06:21
*** yamahata has joined #openstack-dev06:22
*** marios has quit IRC06:23
*** anniec has joined #openstack-dev06:23
*** cpallares has quit IRC06:23
*** marios has joined #openstack-dev06:23
*** cpallares has joined #openstack-dev06:23
*** MaxV has quit IRC06:24
*** MaxV has joined #openstack-dev06:24
*** xjiujiu has quit IRC06:25
*** jcoufal has joined #openstack-dev06:25
*** cpallares has quit IRC06:25
*** xjiujiu has joined #openstack-dev06:25
*** cpallares has joined #openstack-dev06:25
*** xchu has joined #openstack-dev06:26
*** faramir1 has joined #openstack-dev06:26
*** cpallares has quit IRC06:28
*** cpallares has joined #openstack-dev06:28
*** neeti has joined #openstack-dev06:28
*** eglynn has joined #openstack-dev06:29
*** MaxV has quit IRC06:29
*** burris has quit IRC06:29
*** anniec_ has joined #openstack-dev06:30
*** vladan has quit IRC06:30
*** egallen has joined #openstack-dev06:31
*** anniec has quit IRC06:32
*** anniec_ is now known as anniec06:32
*** vartom10 has joined #openstack-dev06:32
*** martyntaylor has joined #openstack-dev06:32
*** vladan has joined #openstack-dev06:33
*** vartom9 has quit IRC06:33
*** xjiujiu has quit IRC06:34
*** xqueralt has joined #openstack-dev06:34
*** pmathews has quit IRC06:34
*** cpallares has quit IRC06:34
*** cpallares1 has joined #openstack-dev06:34
*** xjiujiu has joined #openstack-dev06:34
*** pmathews has joined #openstack-dev06:35
*** eglynn has quit IRC06:35
*** amotoki has joined #openstack-dev06:36
*** cpallares1 has quit IRC06:36
*** cpallares has joined #openstack-dev06:36
*** cpallares1 has joined #openstack-dev06:37
*** cpallares has quit IRC06:37
*** boris-42 has quit IRC06:38
*** mjbright_ has quit IRC06:40
*** markwash has quit IRC06:40
*** cpallares1 has quit IRC06:40
*** cpallares has joined #openstack-dev06:40
*** e0ne has quit IRC06:41
*** e0ne has joined #openstack-dev06:41
*** e0ne has quit IRC06:42
*** sumanth has quit IRC06:42
*** cpallares has quit IRC06:42
*** e0ne has joined #openstack-dev06:42
*** cpallares has joined #openstack-dev06:42
*** amotoki has quit IRC06:42
*** haomaiwang has joined #openstack-dev06:48
*** xjiujiu has quit IRC06:48
*** xjiujiu has joined #openstack-dev06:49
*** imsurit has joined #openstack-dev06:49
*** cpallares1 has joined #openstack-dev06:51
*** cpallares has quit IRC06:51
*** haomaiwa_ has quit IRC06:52
*** yamahata has quit IRC06:53
*** nebulta has joined #openstack-dev06:54
*** ykhodork has quit IRC06:56
*** kpepple has quit IRC06:57
*** sumanth has joined #openstack-dev06:58
*** rongze has joined #openstack-dev06:58
*** kpepple has joined #openstack-dev06:58
*** rongze has quit IRC06:58
*** rongze has joined #openstack-dev06:59
*** rongze has joined #openstack-dev06:59
*** reidrac has joined #openstack-dev07:00
*** xga has joined #openstack-dev07:01
*** xga_ has joined #openstack-dev07:01
*** xjiujiu has quit IRC07:01
*** xchu has quit IRC07:02
*** xjiujiu has joined #openstack-dev07:02
*** ykhodork has joined #openstack-dev07:02
*** cpallares1 has quit IRC07:02
*** cpallares has joined #openstack-dev07:02
*** ykhodork has quit IRC07:02
*** e0ne has quit IRC07:03
*** e0ne has joined #openstack-dev07:03
*** cpallares has quit IRC07:04
*** e0ne has quit IRC07:04
*** cpallares has joined #openstack-dev07:04
*** e0ne has joined #openstack-dev07:04
*** zyluo has quit IRC07:05
*** faramir1 has quit IRC07:05
*** e0ne has quit IRC07:06
*** imsurit has quit IRC07:06
*** cdub_ has quit IRC07:06
*** e0ne has joined #openstack-dev07:06
*** devvesa has joined #openstack-dev07:07
*** belmoreira has joined #openstack-dev07:08
*** cpallares has quit IRC07:08
*** cpallares has joined #openstack-dev07:08
*** e0ne has quit IRC07:11
*** xqueralt has quit IRC07:12
*** cpallares has quit IRC07:12
*** cpallares has joined #openstack-dev07:12
*** cpallares has quit IRC07:14
*** cpallares has joined #openstack-dev07:14
*** stevemar has quit IRC07:15
*** CaptTofu has quit IRC07:15
*** CaptTofu has joined #openstack-dev07:15
*** faramir1 has joined #openstack-dev07:17
*** Alssi has quit IRC07:18
*** cpallares1 has joined #openstack-dev07:18
*** cpallares has quit IRC07:18
*** xchu has joined #openstack-dev07:19
*** cpallares1 has quit IRC07:21
*** cpallares has joined #openstack-dev07:21
*** jprovazn has joined #openstack-dev07:21
*** xchu_ has joined #openstack-dev07:22
*** xchu__ has joined #openstack-dev07:22
*** larsbutler has joined #openstack-dev07:24
*** cpallares1 has joined #openstack-dev07:24
*** cpallares has quit IRC07:24
*** xchu has quit IRC07:25
*** xchu has joined #openstack-dev07:25
*** xchu_ has quit IRC07:26
*** belmoreira has quit IRC07:26
*** belmoreira has joined #openstack-dev07:26
*** pasm has joined #openstack-dev07:26
*** shardy_afk is now known as shardy07:27
*** cpallares has joined #openstack-dev07:27
*** cpallares1 has quit IRC07:27
*** xchu__ has quit IRC07:27
*** xchu has quit IRC07:27
*** xchu has joined #openstack-dev07:27
*** YorikSar has quit IRC07:28
*** prekarat has quit IRC07:28
*** cpallares1 has joined #openstack-dev07:28
*** prekarat1 has joined #openstack-dev07:28
*** cpallares has quit IRC07:28
*** YorikSar has joined #openstack-dev07:29
*** jtomasek has joined #openstack-dev07:30
*** xga__ has joined #openstack-dev07:30
*** xga_ has quit IRC07:31
*** xga has quit IRC07:31
*** pasm has quit IRC07:31
*** xga has joined #openstack-dev07:32
*** cpallares1 has quit IRC07:32
*** cpallares has joined #openstack-dev07:32
*** ifarkas has quit IRC07:33
*** anniec has left #openstack-dev07:36
*** jistr has joined #openstack-dev07:37
*** cpallares has quit IRC07:39
*** cpallares1 has joined #openstack-dev07:39
*** gszasz has joined #openstack-dev07:39
*** YorikSar has quit IRC07:40
*** davidhadas has quit IRC07:40
*** MaxV has joined #openstack-dev07:42
*** giulivo has joined #openstack-dev07:42
*** martyntaylor has quit IRC07:43
*** cpallares1 has quit IRC07:43
*** cpallares has joined #openstack-dev07:43
*** YorikSar has joined #openstack-dev07:46
*** toddnni has quit IRC07:46
*** DinaBelova has joined #openstack-dev07:47
*** ArcTanSusan has quit IRC07:48
*** sushils has joined #openstack-dev07:49
*** exed has joined #openstack-dev07:50
*** freedomhui has joined #openstack-dev07:51
*** exed has quit IRC07:51
*** gmurphy has joined #openstack-dev07:51
*** che-arne has quit IRC07:52
*** jimfehlig has quit IRC07:52
*** exed has joined #openstack-dev07:53
*** haomaiwang has quit IRC07:54
*** rushiagr2 has joined #openstack-dev07:55
*** rushiagr has quit IRC07:56
*** ifarkas has joined #openstack-dev07:58
*** Mandell has quit IRC07:59
*** Mandell has joined #openstack-dev07:59
*** faramir1 has quit IRC08:00
*** romcheg has joined #openstack-dev08:00
*** boris-42 has joined #openstack-dev08:01
*** senk has joined #openstack-dev08:02
*** ifarkas has quit IRC08:02
*** ifarkas has joined #openstack-dev08:02
*** eglynn has joined #openstack-dev08:03
*** amerine has quit IRC08:04
*** boden has joined #openstack-dev08:04
*** Mandell has quit IRC08:04
*** jpich has joined #openstack-dev08:05
*** romcheg has quit IRC08:05
*** READ10 has joined #openstack-dev08:05
*** corXi has joined #openstack-dev08:05
*** aditirav_ has joined #openstack-dev08:06
*** xga_ has joined #openstack-dev08:08
*** senk has quit IRC08:08
*** martyntaylor has joined #openstack-dev08:10
*** aditirav has quit IRC08:11
*** aditirav_ is now known as aditirav08:11
*** xga__ has quit IRC08:11
*** corXi_ has joined #openstack-dev08:11
*** yassine has joined #openstack-dev08:11
*** xga has quit IRC08:11
*** toddnni has joined #openstack-dev08:11
*** xga has joined #openstack-dev08:11
*** dachary has quit IRC08:12
*** dachary has joined #openstack-dev08:12
*** aditirav_ has joined #openstack-dev08:12
*** xqueralt has joined #openstack-dev08:12
*** martyntaylor has quit IRC08:14
*** CaptTofu has quit IRC08:14
*** corXi has quit IRC08:14
*** CaptTofu has joined #openstack-dev08:15
*** aditirav has quit IRC08:16
*** aditirav_ is now known as aditirav08:16
*** romcheg has joined #openstack-dev08:16
*** aditirav has quit IRC08:16
*** martyntaylor has joined #openstack-dev08:17
*** aditirav has joined #openstack-dev08:17
*** exed has quit IRC08:17
*** safchain has joined #openstack-dev08:17
*** pmathews has quit IRC08:18
*** alexpilotti has joined #openstack-dev08:18
*** CaptTofu has quit IRC08:19
*** fbo_away is now known as fbo08:19
*** exed has joined #openstack-dev08:19
*** rushiagr3 has joined #openstack-dev08:21
*** romcheg has quit IRC08:21
*** freedomhu has joined #openstack-dev08:21
*** rushiagr2 has quit IRC08:21
*** yamahata has joined #openstack-dev08:22
*** cdub_ has joined #openstack-dev08:22
alexpilottijd__: hi08:24
*** freedomhui has quit IRC08:25
*** faramir1 has joined #openstack-dev08:25
*** rongze has quit IRC08:25
*** romcheg has joined #openstack-dev08:25
alexpilottijd__: I'm having some issues understanding a ceilometer-agent-compute issue08:26
*** derekh has joined #openstack-dev08:26
*** viktors has joined #openstack-dev08:27
*** rongze has joined #openstack-dev08:29
*** nshaikh has left #openstack-dev08:29
*** rushiagr4 has joined #openstack-dev08:29
*** rushiagr3 has quit IRC08:29
*** toddnni_ has joined #openstack-dev08:31
*** gszasz has quit IRC08:33
*** gszasz has joined #openstack-dev08:34
*** toddnni has quit IRC08:35
*** e0ne has joined #openstack-dev08:35
*** e0ne_ has joined #openstack-dev08:36
*** sergmelikyan has quit IRC08:37
alexpilottijd__: they get solved by setting the full service_credentials in the ceilometer conf file on compute, but I'd like to be sure I'm doing the right thing :-)08:37
*** e0ne has quit IRC08:40
*** bashok has joined #openstack-dev08:41
*** davidhadas has joined #openstack-dev08:43
*** buzztroll has joined #openstack-dev08:46
*** networkstatic has quit IRC08:48
*** Alexei_987 has joined #openstack-dev08:50
*** terriyu has quit IRC08:50
*** buzztroll has quit IRC08:51
*** terriyu has joined #openstack-dev08:51
*** DinaBelova has quit IRC08:54
*** e1mer has quit IRC08:54
*** xchu has quit IRC08:56
*** martyntaylor has quit IRC09:01
*** larsbutler has quit IRC09:02
*** cpallares has quit IRC09:04
*** cpallares has joined #openstack-dev09:04
*** senk has joined #openstack-dev09:04
*** markmc has joined #openstack-dev09:05
*** cpallares1 has joined #openstack-dev09:07
*** cpallares has quit IRC09:07
*** yamahata has quit IRC09:08
*** senk has quit IRC09:09
*** reed has quit IRC09:11
*** max_lobur has joined #openstack-dev09:13
*** macjack has quit IRC09:13
*** marun_ has joined #openstack-dev09:13
*** beagles has joined #openstack-dev09:14
*** marun has quit IRC09:14
*** marun_ is now known as marun09:14
*** cpallares1 has quit IRC09:15
*** cpallares has joined #openstack-dev09:15
*** faramir1 has quit IRC09:15
*** cpallares has quit IRC09:18
*** cpallares1 has joined #openstack-dev09:18
*** cpallares1 has quit IRC09:21
*** cpallares has joined #openstack-dev09:21
*** cpallares1 has joined #openstack-dev09:23
*** cpallares has quit IRC09:23
*** rushiagr has joined #openstack-dev09:25
*** e1mer has joined #openstack-dev09:25
*** rushiagr has quit IRC09:25
*** martyntaylor has joined #openstack-dev09:26
*** READ10 has quit IRC09:26
*** cpallares1 has quit IRC09:26
*** cpallares has joined #openstack-dev09:26
*** sergmelikyan has joined #openstack-dev09:27
*** faramir1 has joined #openstack-dev09:27
*** cdub_ has quit IRC09:27
*** cdub_ has joined #openstack-dev09:28
*** rushiagr has joined #openstack-dev09:29
*** martyntaylor has quit IRC09:30
*** cpallares1 has joined #openstack-dev09:31
*** cpallares has quit IRC09:31
*** ngoracke has quit IRC09:32
*** kushal has quit IRC09:33
*** haomaiwang has joined #openstack-dev09:33
*** exed has quit IRC09:34
*** exed has joined #openstack-dev09:35
*** cpallares has joined #openstack-dev09:37
*** cpallares1 has quit IRC09:37
*** cdub_ has quit IRC09:38
*** READ10 has joined #openstack-dev09:40
*** cpallares has quit IRC09:43
*** cpallares has joined #openstack-dev09:43
*** haomaiwang has quit IRC09:44
*** mmagr has joined #openstack-dev09:44
*** cpallares1 has joined #openstack-dev09:45
*** cpallares has quit IRC09:45
*** egallen has quit IRC09:46
*** buzztroll has joined #openstack-dev09:46
*** roz has joined #openstack-dev09:46
*** cdub_ has joined #openstack-dev09:47
*** lucasagomes has joined #openstack-dev09:48
*** egallen has joined #openstack-dev09:48
*** roz has joined #openstack-dev09:49
*** martyntaylor has joined #openstack-dev09:50
*** buzztroll has quit IRC09:51
*** kushal has joined #openstack-dev09:51
*** roz is now known as AndreaRosa09:52
*** Ruetobas has quit IRC09:52
*** cpallares1 has quit IRC09:53
*** cpallares has joined #openstack-dev09:54
*** cpallares has quit IRC09:56
*** cpallares1 has joined #openstack-dev09:56
*** faramir1 has quit IRC09:57
*** Ruetobas has joined #openstack-dev09:57
*** CaptTofu has joined #openstack-dev09:59
*** radez_g0n3 is now known as radez10:00
*** pixelb has joined #openstack-dev10:00
*** egallen has quit IRC10:02
*** athomas has joined #openstack-dev10:04
*** nshaikh has joined #openstack-dev10:05
*** ccorrigan has quit IRC10:06
*** ccorrigan has joined #openstack-dev10:07
*** READ10 has quit IRC10:13
*** cpallares has joined #openstack-dev10:15
*** cpallares1 has quit IRC10:15
*** cpallares1 has joined #openstack-dev10:18
*** cpallares has quit IRC10:18
*** avishayb has joined #openstack-dev10:18
*** yamahata has joined #openstack-dev10:19
*** sandeepr_ltp has quit IRC10:19
*** exed has quit IRC10:20
*** cpallares1 has quit IRC10:22
*** cpallares has joined #openstack-dev10:22
*** adalbas has joined #openstack-dev10:24
*** cpallares has quit IRC10:24
*** cpallares has joined #openstack-dev10:25
*** CaptTofu has quit IRC10:25
*** CaptTofu has joined #openstack-dev10:25
*** READ10 has joined #openstack-dev10:26
*** cpallares has quit IRC10:26
*** cpallares has joined #openstack-dev10:26
*** xga__ has joined #openstack-dev10:27
*** xga_ has quit IRC10:27
*** cpallares has quit IRC10:28
*** xga has quit IRC10:28
*** cpallares1 has joined #openstack-dev10:28
*** xga_ has joined #openstack-dev10:28
*** cpallares has joined #openstack-dev10:30
*** cpallares1 has quit IRC10:30
*** CaptTofu has quit IRC10:30
*** prekarat has joined #openstack-dev10:31
*** erkules_ is now known as erkules10:32
*** CaptTofu has joined #openstack-dev10:32
*** prekarat1 has quit IRC10:34
*** cpallares has quit IRC10:34
*** cpallares has joined #openstack-dev10:34
*** cpallares1 has joined #openstack-dev10:36
*** cpallares has quit IRC10:36
*** larsbutler has joined #openstack-dev10:36
*** yamahata has quit IRC10:39
*** yeylon_ has joined #openstack-dev10:40
*** cpallares has joined #openstack-dev10:41
*** cpallares1 has quit IRC10:41
*** prekarat has quit IRC10:42
*** xingcha__ has quit IRC10:42
*** yeylon__ has quit IRC10:43
*** cpallares1 has joined #openstack-dev10:45
*** cpallares has quit IRC10:45
*** rushiagr has quit IRC10:46
*** rushiagr has joined #openstack-dev10:47
*** buzztroll has joined #openstack-dev10:47
*** cpallares has joined #openstack-dev10:48
*** cpallares1 has quit IRC10:48
*** yeylon_ has quit IRC10:49
*** athomas has quit IRC10:50
*** yamahata has joined #openstack-dev10:51
*** buzztroll has quit IRC10:51
*** guohliu has quit IRC10:53
*** jruzicka has joined #openstack-dev10:53
*** cdub_ has quit IRC10:53
*** rongze has quit IRC10:54
*** cpallares has quit IRC10:54
*** cpallares has joined #openstack-dev10:55
*** rongze has joined #openstack-dev10:55
*** prekarat has joined #openstack-dev10:56
*** athomas has joined #openstack-dev10:56
*** yamahata has quit IRC10:58
*** rongze has quit IRC10:59
*** haomaiwang has joined #openstack-dev11:00
*** dims has joined #openstack-dev11:00
*** gszasz has quit IRC11:00
*** rkukura has quit IRC11:01
*** CaptTofu has quit IRC11:02
*** CaptTofu has joined #openstack-dev11:02
*** yeylon_ has joined #openstack-dev11:04
*** jcoufal has quit IRC11:04
*** prekarat has quit IRC11:05
*** senk has joined #openstack-dev11:05
*** READ10 has quit IRC11:06
*** CaptTofu has quit IRC11:07
*** senk has quit IRC11:10
*** CaptTofu has joined #openstack-dev11:12
*** radez is now known as radez_g0n311:14
*** cpallares has quit IRC11:15
*** cpallares has joined #openstack-dev11:15
*** exed has joined #openstack-dev11:15
*** neeti has quit IRC11:20
*** davidhadas_ has joined #openstack-dev11:20
*** romcheg has left #openstack-dev11:21
*** egallen has joined #openstack-dev11:22
*** insanidade has joined #openstack-dev11:22
*** rushiagr has quit IRC11:23
*** prekarat has joined #openstack-dev11:24
*** cpallares has quit IRC11:24
*** cpallares has joined #openstack-dev11:24
*** e0ne_ has quit IRC11:25
*** e0ne has joined #openstack-dev11:25
*** neeti has joined #openstack-dev11:25
*** mrunge has quit IRC11:26
*** rushiagr has joined #openstack-dev11:26
*** e0ne has quit IRC11:27
*** e0ne has joined #openstack-dev11:28
*** paragan has quit IRC11:28
*** mkollaro has joined #openstack-dev11:29
*** morazi has joined #openstack-dev11:29
*** lucasagomes is now known as lucas-lunch11:30
*** aditirav_ has joined #openstack-dev11:31
*** avishayb has quit IRC11:31
*** aditirav has quit IRC11:33
*** aditirav_ is now known as aditirav11:33
*** freedomhu has quit IRC11:35
*** dolphm has joined #openstack-dev11:37
*** drewlander has joined #openstack-dev11:37
*** FunnyLookinHat has joined #openstack-dev11:40
*** avishayb has joined #openstack-dev11:40
*** tellesnobrega has quit IRC11:42
*** dolphm has quit IRC11:43
*** dolphm has joined #openstack-dev11:44
*** exed has quit IRC11:44
*** aditirav_ has joined #openstack-dev11:44
*** exed has joined #openstack-dev11:45
*** tellesnobrega has joined #openstack-dev11:46
*** aditirav has quit IRC11:47
*** aditirav_ is now known as aditirav11:47
*** buzztroll has joined #openstack-dev11:47
tellesnobregamorganfainberg: hi, can i discuss a bug with you?11:48
*** mriedem has joined #openstack-dev11:48
*** dolphm has quit IRC11:49
*** ygbo has joined #openstack-dev11:50
*** yamahata has joined #openstack-dev11:51
*** pcm_ has joined #openstack-dev11:51
*** HenryG has joined #openstack-dev11:52
*** buzztroll has quit IRC11:52
*** mmagr has quit IRC11:55
*** garyk has joined #openstack-dev11:56
*** mmagr has joined #openstack-dev11:57
*** tmclaugh[work] has joined #openstack-dev11:57
*** dstanek has joined #openstack-dev11:58
*** jcoufal has joined #openstack-dev12:00
*** sgordon has joined #openstack-dev12:00
*** e1mer has quit IRC12:00
*** dkranz has joined #openstack-dev12:01
*** xga has joined #openstack-dev12:01
*** aditirav_ has joined #openstack-dev12:01
*** aditirav has quit IRC12:01
*** aditirav_ is now known as aditirav12:01
*** sumanthns has joined #openstack-dev12:02
*** xga_ has quit IRC12:02
*** xga__ has quit IRC12:02
*** mpavlase1 has joined #openstack-dev12:03
*** xga_ has joined #openstack-dev12:03
*** mkollaro has quit IRC12:03
*** mkollaro1 has joined #openstack-dev12:03
*** mkollaro1 is now known as mkollaro12:03
*** cpallares has quit IRC12:04
*** aditirav has quit IRC12:04
*** aditirav has joined #openstack-dev12:04
*** mpavlase has quit IRC12:05
*** afazekas has quit IRC12:05
*** senk has joined #openstack-dev12:06
*** aditirav has quit IRC12:08
*** aditirav has joined #openstack-dev12:08
*** e1mer has joined #openstack-dev12:10
*** senk has quit IRC12:10
*** e0ne has quit IRC12:10
*** e0ne has joined #openstack-dev12:11
*** che-arne has joined #openstack-dev12:12
*** ygbo has quit IRC12:13
*** yamahata has quit IRC12:13
*** galstrom_zzz is now known as galstrom12:13
*** aditirav has quit IRC12:13
*** aditirav has joined #openstack-dev12:14
*** galstrom is now known as galstrom_zzz12:14
*** e0ne has quit IRC12:15
*** e0ne_ has joined #openstack-dev12:15
*** evgenyf_ has joined #openstack-dev12:15
*** dsirrine has joined #openstack-dev12:16
*** gszasz has joined #openstack-dev12:17
*** dolphm has joined #openstack-dev12:18
*** sarob has joined #openstack-dev12:18
*** mmagr has quit IRC12:21
*** dstufft has quit IRC12:21
*** afazekas has joined #openstack-dev12:21
*** lucas-lunch is now known as lucasagomes12:21
dolphmttx: o/12:21
*** dstufft has joined #openstack-dev12:22
*** sarob has quit IRC12:25
*** sarob has joined #openstack-dev12:26
ttxdolphm: o/12:27
dolphmttx: just wanted to make you aware of bug 124285512:27
uvirtbotLaunchpad bug 1242855 in keystone "Removing role adds role with LDAP backend" [Critical,In progress] https://launchpad.net/bugs/124285512:27
*** kumaranvram has quit IRC12:27
*** nosnos has quit IRC12:27
ttxdolphm: hmmkay12:28
*** nosnos has joined #openstack-dev12:28
ttxadded to the ossa queue12:28
*** haomaiwa_ has joined #openstack-dev12:28
*** rushiagr2 has joined #openstack-dev12:28
*** rushiagr has quit IRC12:29
*** thomasm has joined #openstack-dev12:30
*** mmagr has joined #openstack-dev12:30
*** thomasm is now known as Guest7048212:30
*** sarob has quit IRC12:30
*** haomaiwang has quit IRC12:31
*** rushiagr2 has quit IRC12:32
*** nosnos has quit IRC12:32
*** colinmcnamara has joined #openstack-dev12:33
*** rongze has joined #openstack-dev12:35
*** colinmcnamara has quit IRC12:35
*** colinmcnamara has joined #openstack-dev12:36
*** haypo has joined #openstack-dev12:36
*** toddnni_ has quit IRC12:37
*** Jabadia has joined #openstack-dev12:37
Jabadiabest way to attach complete disk to a vm ?12:38
Jabadiafrom compute.12:38
Jabadiacompute = host.12:38
*** garyk has left #openstack-dev12:38
*** anteaya has joined #openstack-dev12:39
*** marekd|away is now known as marekd12:40
*** CaptTofu has quit IRC12:40
*** colinmcnamara has quit IRC12:40
*** CaptTofu has joined #openstack-dev12:40
*** bashok has quit IRC12:41
*** vartom10 has quit IRC12:42
*** paragan has joined #openstack-dev12:42
*** bpokorny has quit IRC12:42
*** CaptTofu has quit IRC12:45
*** slic has quit IRC12:46
*** bswartz has quit IRC12:46
*** toddnni has joined #openstack-dev12:48
*** buzztroll has joined #openstack-dev12:48
*** xga has quit IRC12:49
*** xga_ has quit IRC12:50
*** xga has joined #openstack-dev12:50
*** xga_ has joined #openstack-dev12:50
*** bingbu has joined #openstack-dev12:50
*** bingbu has quit IRC12:51
*** ayoung has quit IRC12:51
*** bingbu has joined #openstack-dev12:52
*** toddnni_ has joined #openstack-dev12:53
*** toddnni has quit IRC12:53
*** buzztroll has quit IRC12:53
*** aditirav has quit IRC12:56
*** kevinconway has quit IRC12:56
*** topol has joined #openstack-dev12:58
*** joesavak has joined #openstack-dev12:58
*** DennyZhang has joined #openstack-dev12:59
*** gordc has joined #openstack-dev12:59
*** afazekas has quit IRC12:59
*** dguitarbite has joined #openstack-dev12:59
*** mpavlase1 has quit IRC13:00
*** dkranz has quit IRC13:02
*** exed has quit IRC13:02
*** mpavlase has joined #openstack-dev13:03
*** xga__ has joined #openstack-dev13:03
*** dprince has joined #openstack-dev13:04
*** dguitarbite has left #openstack-dev13:04
*** kevinconway has joined #openstack-dev13:05
*** bpokorny has joined #openstack-dev13:05
*** vladikr has joined #openstack-dev13:05
*** mkollaro has quit IRC13:05
*** xga has quit IRC13:07
*** READ10 has joined #openstack-dev13:07
*** sumanthns has quit IRC13:07
*** xga_ has quit IRC13:07
*** dsirrine has quit IRC13:07
*** kushal has quit IRC13:08
*** xga has joined #openstack-dev13:08
*** dsirrine has joined #openstack-dev13:08
*** neelashah has joined #openstack-dev13:08
*** toddnni has joined #openstack-dev13:08
*** macjack has joined #openstack-dev13:08
*** toddnni_ has quit IRC13:10
*** prekarat has quit IRC13:11
*** kbringard has joined #openstack-dev13:12
*** prekarat has joined #openstack-dev13:12
*** dguitarbite has joined #openstack-dev13:13
*** dsirrine has quit IRC13:13
*** nermina has joined #openstack-dev13:13
*** dguitarbite has left #openstack-dev13:14
*** dstanek has quit IRC13:14
*** exed has joined #openstack-dev13:15
*** aspiers has joined #openstack-dev13:16
*** dsirrine has joined #openstack-dev13:17
*** jayg|g0n3 is now known as jayg13:18
*** ben_duyujie has joined #openstack-dev13:21
*** dstanek has joined #openstack-dev13:21
*** mkollaro has joined #openstack-dev13:21
*** dvarga has joined #openstack-dev13:22
*** afazekas has joined #openstack-dev13:23
*** bswartz has joined #openstack-dev13:23
*** bknudson has left #openstack-dev13:23
*** anniec has joined #openstack-dev13:23
*** omachace has joined #openstack-dev13:24
*** blamar has joined #openstack-dev13:25
*** rkukura has joined #openstack-dev13:27
*** anniec_ has joined #openstack-dev13:27
*** anniec has quit IRC13:28
*** anniec_ is now known as anniec13:28
*** stevemar has joined #openstack-dev13:32
*** yamahata has joined #openstack-dev13:32
*** Shaan7 has joined #openstack-dev13:33
*** gszasz is now known as gszasz_police13:33
*** neeti has quit IRC13:33
*** gszasz_police is now known as gszasz13:35
*** Shaan7 has quit IRC13:36
*** Shaan7 has joined #openstack-dev13:36
*** alop has joined #openstack-dev13:38
*** burt has joined #openstack-dev13:39
*** yamahata has quit IRC13:40
*** nkinder has joined #openstack-dev13:40
*** yamahata has joined #openstack-dev13:41
*** bknudson has joined #openstack-dev13:41
*** lbragstad has joined #openstack-dev13:44
*** dkranz has joined #openstack-dev13:45
*** jecarey has joined #openstack-dev13:45
*** alunduil has quit IRC13:46
*** afazekas has quit IRC13:47
*** guohliu has joined #openstack-dev13:48
*** buzztroll has joined #openstack-dev13:48
*** ayoung has joined #openstack-dev13:49
*** zbitter is now known as zaneb13:50
*** buzztroll has quit IRC13:53
*** sarob has joined #openstack-dev13:53
*** dims has quit IRC13:54
*** enikanorov has quit IRC13:56
*** dguitarbite has joined #openstack-dev13:56
*** enikanorov has joined #openstack-dev13:56
*** FunnyLookinHat has quit IRC13:56
*** alunch has joined #openstack-dev13:58
*** radez_g0n3 is now known as radez13:58
*** sandywalsh has joined #openstack-dev13:59
*** thedodd has joined #openstack-dev14:00
*** jistr has quit IRC14:00
*** e1mer has quit IRC14:00
*** noslzzp has joined #openstack-dev14:01
*** freedomhui has joined #openstack-dev14:02
*** e1mer has joined #openstack-dev14:02
*** davidhadas__ has joined #openstack-dev14:02
*** rcleere has joined #openstack-dev14:02
*** davidhadas___ has joined #openstack-dev14:02
*** jistr has joined #openstack-dev14:02
*** HenryG has quit IRC14:04
*** davidhadas_ has quit IRC14:04
*** yamahata has quit IRC14:04
*** davidhadas has quit IRC14:05
*** changbl has quit IRC14:06
*** colinmcnamara has joined #openstack-dev14:06
*** colinmcnamara has quit IRC14:06
*** colinmcnamara has joined #openstack-dev14:06
*** sarob has quit IRC14:07
*** READ10 has quit IRC14:07
*** dims has joined #openstack-dev14:07
*** johnthetubaguy has joined #openstack-dev14:09
*** yamahata has joined #openstack-dev14:10
*** tstevenson has joined #openstack-dev14:11
*** ben_duyujie has quit IRC14:11
*** dguitarbite has quit IRC14:13
*** HenryG has joined #openstack-dev14:13
*** READ10 has joined #openstack-dev14:13
*** dguitarbite has joined #openstack-dev14:13
*** freedomhui has quit IRC14:14
*** luisg has joined #openstack-dev14:14
*** dguitarbite has quit IRC14:14
*** burris has joined #openstack-dev14:14
*** dolphm_ has joined #openstack-dev14:14
*** dguitarbite has joined #openstack-dev14:15
*** yamahata has quit IRC14:15
*** dguitarbite has quit IRC14:16
*** bcrochet has quit IRC14:16
*** dguitarbite has joined #openstack-dev14:16
*** sarob has joined #openstack-dev14:16
*** qiren has quit IRC14:17
*** yamahata has joined #openstack-dev14:17
*** egallen has quit IRC14:17
*** dkehn has quit IRC14:17
*** bcrochet has joined #openstack-dev14:18
*** dolphm has quit IRC14:19
*** dolphm_ has quit IRC14:19
*** colinmcnamara has quit IRC14:19
*** qiren has joined #openstack-dev14:19
*** ygbo has joined #openstack-dev14:20
*** jamespage_ has joined #openstack-dev14:20
*** egallen has joined #openstack-dev14:21
*** egallen has quit IRC14:21
*** tmclaugh[work] has quit IRC14:22
*** bingbu has quit IRC14:23
*** egallen has joined #openstack-dev14:24
*** eharney has joined #openstack-dev14:25
*** ben_duyujie has joined #openstack-dev14:25
*** qiren has quit IRC14:26
*** dolphm has joined #openstack-dev14:26
*** jamespage_ has quit IRC14:27
*** qiren has joined #openstack-dev14:27
*** CaptTofu has joined #openstack-dev14:27
*** egallen has quit IRC14:28
*** reed has joined #openstack-dev14:29
*** insanidade has quit IRC14:30
*** egallen has joined #openstack-dev14:30
*** freedomhu has joined #openstack-dev14:31
*** MaxV has quit IRC14:34
*** rongze has quit IRC14:34
bknudsonKeystone has this file keystone/tests/_ldap_livetests.py ...14:34
bknudsonwith the switch to testr, how do I run the tests?14:34
*** rongze has joined #openstack-dev14:34
bknudsontox -e py27 _ldap_livetests doesn't do it.14:34
dolphmbknudson: testr _ldap_livetests ?14:35
dolphmdstanek: ^14:35
*** alunduil has joined #openstack-dev14:35
*** nebulta has quit IRC14:35
*** colinmcnamara has joined #openstack-dev14:36
*** swills has quit IRC14:36
*** ngoracke has joined #openstack-dev14:36
*** dkranz has quit IRC14:37
*** swills has joined #openstack-dev14:37
bknudsonI tried changing the name to ldap_livetests.py and testr still doesn't find it for some reason14:37
*** xjiujiu has quit IRC14:37
*** datsun180b has joined #openstack-dev14:37
bknudsonIt doesn't show up in "python -m subunit.run discover -t . ./keystone/tests --list"14:37
*** senk has joined #openstack-dev14:37
*** swills has quit IRC14:37
*** swills has joined #openstack-dev14:37
*** colinmcnamara has quit IRC14:38
*** FunnyLookinHat has joined #openstack-dev14:39
*** rongze has quit IRC14:39
*** dguitarbite has quit IRC14:39
dolphmbknudson: hmm, i wonder if testr hates the underscore prefix14:40
*** jimfehlig has joined #openstack-dev14:40
*** jprovazn has quit IRC14:41
*** sumanth has quit IRC14:41
*** dguitarbite has joined #openstack-dev14:42
dolphmbknudson: let me know if i'm overlooking something on https://review.openstack.org/#/c/49986/14:42
*** bmelande has joined #openstack-dev14:42
*** dolphm has quit IRC14:42
*** jaypipes has joined #openstack-dev14:43
*** datsun180b has quit IRC14:44
*** e1mer has quit IRC14:44
*** datsun180b has joined #openstack-dev14:44
*** jistr has quit IRC14:44
*** utlemming has joined #openstack-dev14:45
*** sandeepr_ltp has joined #openstack-dev14:46
*** aspiers has quit IRC14:47
*** sumanthns has joined #openstack-dev14:48
*** tsufiev has quit IRC14:49
*** danwent has joined #openstack-dev14:49
*** rkukura has quit IRC14:49
*** pablosan has joined #openstack-dev14:49
*** buzztroll has joined #openstack-dev14:49
*** mestery has quit IRC14:49
*** dkranz has joined #openstack-dev14:49
*** adepti37 has quit IRC14:50
*** chandankumar has quit IRC14:50
*** ffio has joined #openstack-dev14:51
*** dot has joined #openstack-dev14:51
*** chandankumar has joined #openstack-dev14:51
*** haypo has left #openstack-dev14:51
*** Jabadia has quit IRC14:51
*** tmclaugh[work] has joined #openstack-dev14:51
*** rkukura has joined #openstack-dev14:52
*** rushiagr has joined #openstack-dev14:53
*** buzztroll has quit IRC14:53
*** dolphm has joined #openstack-dev14:53
*** adepti37 has joined #openstack-dev14:53
*** dguitarbite has quit IRC14:54
*** bmelande has quit IRC14:54
*** jvrbanac has joined #openstack-dev14:55
*** bmelande has joined #openstack-dev14:55
*** rohitk has quit IRC14:56
*** dscannell has joined #openstack-dev14:57
*** danpb has joined #openstack-dev14:58
*** matsuhashi has quit IRC14:58
*** carl_baldwin has joined #openstack-dev14:58
*** chenxu has joined #openstack-dev14:58
*** matsuhashi has joined #openstack-dev14:59
*** dubsquared has joined #openstack-dev14:59
*** chandankumar has quit IRC15:00
*** topol has quit IRC15:00
*** amotoki has joined #openstack-dev15:01
*** chandankumar has joined #openstack-dev15:02
*** jvrbanac has quit IRC15:02
*** sarob has quit IRC15:02
*** eharney has quit IRC15:03
*** matsuhashi has quit IRC15:03
*** chandankumar has quit IRC15:04
*** dubsquared has quit IRC15:04
*** dubsquared has joined #openstack-dev15:04
*** chandankumar has joined #openstack-dev15:04
*** jmontemayor has joined #openstack-dev15:04
*** sumanth has joined #openstack-dev15:05
*** utlemming has quit IRC15:05
*** sthaha has quit IRC15:05
*** reidrac has quit IRC15:05
*** utlemming has joined #openstack-dev15:05
*** omachace has left #openstack-dev15:05
*** sushils has quit IRC15:06
*** toddnni_ has joined #openstack-dev15:08
*** toddnni has quit IRC15:08
*** rushiagr has quit IRC15:08
*** sushils has joined #openstack-dev15:09
*** kbrierly has quit IRC15:09
*** tanisdl has joined #openstack-dev15:09
*** e0ne_ has quit IRC15:09
*** e0ne has joined #openstack-dev15:10
*** kbrierly has joined #openstack-dev15:10
*** utlemming has quit IRC15:11
*** radez is now known as radez_g0n315:11
*** changbl has joined #openstack-dev15:12
*** boris-42 has quit IRC15:12
*** rushiagr has joined #openstack-dev15:12
*** sumanth has quit IRC15:12
*** ffio has quit IRC15:13
*** radez_g0n3 is now known as radez15:14
*** e0ne has quit IRC15:14
*** dot has quit IRC15:14
*** utlemming has joined #openstack-dev15:15
*** dot has joined #openstack-dev15:16
*** eharney has joined #openstack-dev15:17
*** pmathews has joined #openstack-dev15:17
*** vkmc has joined #openstack-dev15:17
*** vkmc has quit IRC15:17
*** vkmc has joined #openstack-dev15:17
*** corXi_ has quit IRC15:17
*** ifarkas has quit IRC15:17
*** READ10 has quit IRC15:18
*** cdub_ has joined #openstack-dev15:18
*** prekarat has quit IRC15:19
*** avishayb has quit IRC15:20
*** dprince has quit IRC15:20
*** zul has joined #openstack-dev15:22
*** evgenyf_ has quit IRC15:22
*** jasond` has joined #openstack-dev15:23
*** evgenyf_ has joined #openstack-dev15:25
*** rnirmal has joined #openstack-dev15:26
*** nshaikh has left #openstack-dev15:26
*** YorikSar has quit IRC15:27
*** dubsquared has quit IRC15:27
*** YorikSar has joined #openstack-dev15:28
*** xingchao has joined #openstack-dev15:28
*** dubsquared has joined #openstack-dev15:28
*** YorikSar has quit IRC15:28
*** samuelbercovici has joined #openstack-dev15:29
*** samuelbercovici has quit IRC15:29
*** imsurit has joined #openstack-dev15:30
*** dubsquar_ has joined #openstack-dev15:30
*** johnthetubaguy1 has joined #openstack-dev15:31
*** egallen has quit IRC15:31
*** anniec has quit IRC15:31
*** dubsquared has quit IRC15:31
*** topol has joined #openstack-dev15:32
*** johnthetubaguy has quit IRC15:32
*** ben_duyujie has quit IRC15:34
*** vladikr_ has joined #openstack-dev15:34
*** e0ne has joined #openstack-dev15:34
*** haomaiwa_ has quit IRC15:34
*** dubsquar_ is now known as wayne__15:35
*** rongze has joined #openstack-dev15:35
*** belmoreira has quit IRC15:36
*** danpb has quit IRC15:36
*** CaptTofu has quit IRC15:36
dstanekdolphm, bknudson: looking now15:36
dstanekdolphm, bknudson: are those test not normally run in the test cycle?15:37
*** CaptTofu has joined #openstack-dev15:37
bknudsondstanek: I was able to work around it by renaming _ldap_livetests.py to test_ldap_live.py15:37
*** johnthetubaguy1 is now known as johnthetubaguy15:38
dstanekbknudson: k, i'll look in a few then when i finish up what i'm doing15:38
*** larsbutler has quit IRC15:38
bknudsondstanek: the _ldap_livetests.py (there's also a live test for sql) doesn't normally run... it requires an actual ldap server.15:38
*** HenryG has quit IRC15:38
*** HenryG has joined #openstack-dev15:38
dstanekbknudson: in https://review.openstack.org/#/c/49986 do you need to test that bind is never called?15:38
*** mpavlase has quit IRC15:38
*** xingchao has quit IRC15:39
*** vladikr_ has quit IRC15:39
*** rongze has quit IRC15:39
*** xga has quit IRC15:40
*** marios has quit IRC15:40
*** jasond` has left #openstack-dev15:40
*** marios_ has joined #openstack-dev15:40
*** xga__ has quit IRC15:40
*** enikanorov1 has joined #openstack-dev15:40
*** xingchao has joined #openstack-dev15:40
*** enikanorov1 has quit IRC15:41
*** iartarisi has joined #openstack-dev15:41
*** CaptTofu has quit IRC15:41
*** enikanorov has quit IRC15:41
*** enikanorov_ has joined #openstack-dev15:41
*** blamar has quit IRC15:42
bknudsondstanek: do you want a new test added?15:42
*** rushiagr2 has joined #openstack-dev15:43
*** jcoufal has quit IRC15:43
*** cdub_ has quit IRC15:43
*** rushiagr has quit IRC15:43
bknudsondstanek: the test_user_api_get_connection_no_user_password test was added because there was a security bug.15:43
*** litong has joined #openstack-dev15:44
bknudsonmaybe a better option is to 'common_ldap.register_handler('fake://', fakeldap.FakeLdap)' after CreateMock?15:45
bknudsonthe lambda is just the first thing I came up with.15:45
*** mkollaro has quit IRC15:45
bknudsondstanek: looks like that's also what you suggested.15:46
*** marekd is now known as marekd|away15:46
*** xga has joined #openstack-dev15:47
*** xga_ has joined #openstack-dev15:47
*** yaguang has joined #openstack-dev15:47
*** rushiagr3 has joined #openstack-dev15:47
*** rushiagr2 has quit IRC15:48
*** aeperezt has joined #openstack-dev15:49
*** buzztroll has joined #openstack-dev15:50
*** Guest70482 has quit IRC15:50
*** blamar has joined #openstack-dev15:51
*** rushiagr3 has quit IRC15:51
*** omachace has joined #openstack-dev15:51
*** omachace has left #openstack-dev15:51
*** alop has quit IRC15:52
*** imsurit has quit IRC15:52
*** zaitcev has joined #openstack-dev15:53
*** cdub_ has joined #openstack-dev15:53
*** Shaan7 has quit IRC15:53
*** viktors has left #openstack-dev15:54
*** Shaan7 has joined #openstack-dev15:54
*** imsurit has joined #openstack-dev15:54
*** buzztroll has quit IRC15:54
*** rushiagr3 has joined #openstack-dev15:54
*** markwash has joined #openstack-dev15:56
*** aspiers has joined #openstack-dev15:57
*** tmclaugh[work] has quit IRC15:58
*** enmand has joined #openstack-dev15:58
*** rkukura has quit IRC15:58
*** xga__ has joined #openstack-dev15:58
*** pasm has joined #openstack-dev15:59
*** xga_ has quit IRC15:59
pasmhi guys15:59
*** xga has quit IRC16:00
*** xga_ has joined #openstack-dev16:00
pasmwho can help me about keystone?16:00
*** rushiagr3 has quit IRC16:00
*** rkukura has joined #openstack-dev16:01
dstanekbknudson: based on the test comment bind isn't supposed to be called, but i don't think that was being checked16:01
*** Ruetobas has quit IRC16:01
dolphmpasm: depends on what your question is :) ask away!16:01
*** xarses has quit IRC16:02
pasmit's about the definition of a custom identity backend for keystone16:02
*** CaptTofu has joined #openstack-dev16:02
alexpilottimriedem: pring16:02
*** rohitk has joined #openstack-dev16:03
*** Ruetobas has joined #openstack-dev16:03
*** xqueralt has quit IRC16:03
*** davidhadas___ has quit IRC16:03
*** davidhadas__ has quit IRC16:04
pasmdolphm: do you know where i can find some documentation? (read the code is not a valid answer... :-))16:04
*** hemna has joined #openstack-dev16:04
mriedemalexpilotti: pong16:05
*** sandywalsh has quit IRC16:05
*** cdub_ has quit IRC16:06
*** gyee has joined #openstack-dev16:06
dolphmpasm: well, the identity drivers are "defined" by the base identity.Driver class https://github.com/openstack/keystone/blob/master/keystone/identity/core.py#L564-L73616:06
*** markwash has quit IRC16:07
*** DennyZhang has quit IRC16:07
alexpilottimriedem: hi there, we are having the Hyper-V meeting, in case you'd like to join :-)16:07
dolphmpasm: but if you want less code :P http://docs.openstack.org/developer/keystone/api/keystone.identity.core.html16:07
*** yamahata has quit IRC16:07
*** alop has joined #openstack-dev16:07
*** yamahata has joined #openstack-dev16:07
*** DennyZhang has joined #openstack-dev16:07
pasmdolphm: heheh... at the moment i defined a file (custom.py) that "should" implement my identity backend16:07
mriedemalexpilotti: getting caught up on about 4 days of reviews, so not today16:07
*** Ruetobas has quit IRC16:07
*** lsmola has quit IRC16:07
alexpilottimriedem: np!16:07
dolphmpasm: are you writing this against master or a stable branch?16:08
pasmdolphm: i extended the class identity.Driver16:08
*** senk has left #openstack-dev16:08
pasmdolphm: stable/havana16:08
*** sandeepr_ltp has quit IRC16:08
*** safchain has quit IRC16:08
dolphmpasm: (master is now using ABCMeta classes, so you'll get better feedback about the gaps in your implementation)16:08
dolphmpasm: you can also test your class based on keystone.tests.test_backend:IdentityTests16:09
*** dscannell has left #openstack-dev16:09
pasmdolphm: ok16:10
*** imsurit has quit IRC16:10
*** CaptTofu has quit IRC16:11
*** CaptTofu has joined #openstack-dev16:11
*** jvrbanac has joined #openstack-dev16:11
pasmdolphm: i will try...16:11
*** xingchao has quit IRC16:12
pasmdolphm: thankyou16:12
*** evgenyf_ has quit IRC16:12
*** Ruetobas has joined #openstack-dev16:14
*** ifarkas has joined #openstack-dev16:15
*** cdub_ has joined #openstack-dev16:16
*** CaptTofu has quit IRC16:16
*** paragan has quit IRC16:16
*** jvrbanac has quit IRC16:18
*** yassine has quit IRC16:20
*** cdub_ has quit IRC16:20
*** zul has quit IRC16:20
*** mrodden has quit IRC16:21
*** radez is now known as radez_g0n316:22
*** nermina has quit IRC16:22
*** xarses has joined #openstack-dev16:22
*** martyntaylor has quit IRC16:23
*** radez_g0n3 is now known as radez16:23
*** markmc has quit IRC16:24
*** booga has joined #openstack-dev16:24
*** ciocari has joined #openstack-dev16:25
*** spzala has joined #openstack-dev16:25
*** yolanda has joined #openstack-dev16:26
*** tmclaugh[work] has joined #openstack-dev16:27
*** jpich has quit IRC16:29
*** ericw has quit IRC16:30
*** bmelande has quit IRC16:30
*** hemna has quit IRC16:31
*** CaptTofu has joined #openstack-dev16:31
*** ericw has joined #openstack-dev16:31
*** pberis has quit IRC16:33
*** ykhodork has joined #openstack-dev16:33
*** hemna has joined #openstack-dev16:33
*** angdraug has joined #openstack-dev16:34
*** hartsocks has joined #openstack-dev16:34
*** adalbas has quit IRC16:34
*** thingee_zzz is now known as thingee16:34
*** jvrbanac has joined #openstack-dev16:35
*** rongze has joined #openstack-dev16:36
*** mrodden has joined #openstack-dev16:36
*** sumanthns has quit IRC16:37
*** sumanthns has joined #openstack-dev16:37
*** gszasz has quit IRC16:39
*** buzztroll has joined #openstack-dev16:40
*** anteaya has quit IRC16:40
*** rongze has quit IRC16:40
*** networkstatic has joined #openstack-dev16:40
*** ygbo has quit IRC16:40
*** adalbas has joined #openstack-dev16:42
*** yamahata has quit IRC16:43
*** max_lobur has quit IRC16:43
*** derekh has quit IRC16:44
*** ericw has quit IRC16:44
*** fbo is now known as fbo_away16:44
*** vladikr has quit IRC16:45
*** mestery has joined #openstack-dev16:46
*** markwash has joined #openstack-dev16:46
*** ericw has joined #openstack-dev16:47
*** vladikr has joined #openstack-dev16:47
*** rnirmal has quit IRC16:48
*** iartarisi has quit IRC16:49
*** buzztroll has quit IRC16:50
*** amotoki has quit IRC16:50
*** buzztroll has joined #openstack-dev16:52
*** CaptTofu has quit IRC16:53
*** DennyZha` has joined #openstack-dev16:53
*** xga_ has quit IRC16:53
*** jcoufal has joined #openstack-dev16:53
*** CaptTofu has joined #openstack-dev16:53
*** DennyZhang has quit IRC16:53
*** xga__ has quit IRC16:54
*** utlemming has quit IRC16:54
*** zul has joined #openstack-dev16:54
*** CaptTofu has quit IRC16:55
*** CaptTofu has joined #openstack-dev16:55
*** davidhadas has joined #openstack-dev16:56
*** davidhadas_ has joined #openstack-dev16:56
*** aditirav has joined #openstack-dev16:56
*** neoXsys has joined #openstack-dev16:56
*** Mandell has joined #openstack-dev16:58
*** Ryan_Lane has quit IRC16:59
*** comay has joined #openstack-dev16:59
*** wabat has joined #openstack-dev16:59
*** anteaya has joined #openstack-dev17:00
*** wayne___ has joined #openstack-dev17:00
*** wayne___ has quit IRC17:02
*** twoputt has joined #openstack-dev17:03
*** twoputt_ has joined #openstack-dev17:03
*** wayne__ has quit IRC17:03
*** utlemming has joined #openstack-dev17:03
*** wayne___ has joined #openstack-dev17:03
*** Alexei_987 has quit IRC17:05
*** wayne__ has joined #openstack-dev17:05
*** wayne___ has quit IRC17:06
*** DennyZha` has quit IRC17:06
*** arctansusan has joined #openstack-dev17:07
*** nermina has joined #openstack-dev17:07
*** eglynn has quit IRC17:07
*** boris-42 has joined #openstack-dev17:08
*** athomas has quit IRC17:08
*** xqueralt has joined #openstack-dev17:10
*** rushiagr3 has joined #openstack-dev17:10
*** insanidade has joined #openstack-dev17:11
*** markmcclain has joined #openstack-dev17:11
*** enmand has quit IRC17:11
*** e0ne has quit IRC17:11
*** davidhadas has quit IRC17:12
*** e0ne has joined #openstack-dev17:12
*** davidhadas_ has quit IRC17:12
*** lucasagomes is now known as lucas-afk17:12
*** davidhadas has joined #openstack-dev17:13
*** sandywalsh has joined #openstack-dev17:16
*** e0ne has quit IRC17:17
*** anteaya has quit IRC17:17
*** davidhadas has quit IRC17:18
*** colinmcnamara has joined #openstack-dev17:18
*** rohitk has quit IRC17:19
*** utlemming has quit IRC17:19
*** rudrarugge has joined #openstack-dev17:19
*** prad has joined #openstack-dev17:20
*** dot has quit IRC17:22
*** utlemming has joined #openstack-dev17:23
*** cpallares has joined #openstack-dev17:24
*** sushils has quit IRC17:24
*** e0ne has joined #openstack-dev17:26
*** e0ne has quit IRC17:27
*** e0ne has joined #openstack-dev17:27
*** isd has joined #openstack-dev17:28
*** colinmcnamara has quit IRC17:28
*** e0ne has quit IRC17:29
*** e0ne_ has joined #openstack-dev17:29
*** neoXsys has quit IRC17:30
*** wabat1 has joined #openstack-dev17:31
*** dstanek has quit IRC17:31
*** wabat1 has left #openstack-dev17:31
*** wabat has quit IRC17:31
*** cpallares has quit IRC17:31
*** cpallares has joined #openstack-dev17:32
*** ykhodork has quit IRC17:32
*** freedomhu has quit IRC17:33
*** zul has quit IRC17:34
*** cpallares has quit IRC17:34
*** cpallares1 has joined #openstack-dev17:34
*** e0ne_ has quit IRC17:36
*** rongze has joined #openstack-dev17:36
*** e0ne has joined #openstack-dev17:36
*** danpb has joined #openstack-dev17:37
*** FunnyLookinHat has quit IRC17:39
*** FunnyLookinHat has joined #openstack-dev17:40
*** danpb has quit IRC17:40
*** e0ne has quit IRC17:41
*** cpallares1 has quit IRC17:42
*** cpallares has joined #openstack-dev17:42
*** ykhodork has joined #openstack-dev17:43
*** davidhadas has joined #openstack-dev17:43
*** giulivo has quit IRC17:45
dhellmann-afkmarkwash: ping?17:45
*** dhellmann-afk is now known as dhellmann17:45
*** cpallares has quit IRC17:45
markwashdhellmann: hi!17:45
*** cpallares has joined #openstack-dev17:45
*** mmagr has quit IRC17:45
dhellmannmarkwash: hi!17:45
dhellmannI'm looking at https://review.openstack.org/#/c/53156/17:45
dhellmannthe iso8601 thing17:45
markwashah yes, we were just discussing it in #openstack-infra17:46
dhellmanndo you know what's going on there?17:46
dhellmannoh, I'll move over there...17:46
markwashdhellmann: I think we've got it covered at this point17:46
markwashdhellmann: glance needs to work with both the old and new versions, and not depend quite as heavily on iso8601 for validation17:46
dhellmannmarkwash: are we going to just cap to 0.1.4 until they get their releases in order?17:46
markwashdhellmann: I think the theory is that 0.1.8 was just released and is good. . I assume its *just* the unicode fix for py3317:47
*** rongze has quit IRC17:47
markwashI have not checked TBH17:47
*** rushiagr3 has quit IRC17:47
dhellmannok, I haven't checked for a new release, but that requirements spec is getting a little silly :-)17:48
markwashyeah, I don't know the history of what was wrong with 0.1.5 and 0.1.617:48
*** cpallares has quit IRC17:49
dhellmannvarious permutations of untestedness, afaict17:49
*** rushiagr has joined #openstack-dev17:49
dhellmannI was also going to suggest offering to help them stackforge that lib, if we need it17:49
markwashhmm. . . yeah. . small as it is, that lib is super important17:50
dhellmannmarkwash: like it would be useful for integration with oslo17:50
*** cpallares has joined #openstack-dev17:50
*** pjd2 has joined #openstack-dev17:50
*** SumitNaiksatam has quit IRC17:51
*** enmand has joined #openstack-dev17:51
dimsmarkwash, there were 2 bugs in iso8601 introduced in 0.1.5 and it took 2 releases over a weekend to get them fixed17:51
dimsmarkwash, 2 bugs what showed up from our test harness17:52
*** cpallares has quit IRC17:52
markwashhaha17:52
*** cpallares has joined #openstack-dev17:52
markwashI suppose there are always more bugs17:52
*** zul has joined #openstack-dev17:53
*** atiwari has joined #openstack-dev17:54
*** melwitt has joined #openstack-dev17:54
*** cpallares has quit IRC17:55
*** cpallares has joined #openstack-dev17:55
*** Ryan_Lane has joined #openstack-dev17:55
*** kenperkins has joined #openstack-dev17:57
*** Ryan_Lane has quit IRC17:57
*** dolphm_ has joined #openstack-dev17:57
*** yolanda has quit IRC17:57
*** cpallares has quit IRC17:57
*** cpallares has joined #openstack-dev17:57
*** wayne__ has quit IRC17:58
*** nikhil is now known as nikhil|afk17:58
*** wayne__ has joined #openstack-dev17:58
*** exed has quit IRC18:00
*** dstanek has joined #openstack-dev18:00
*** anteaya has joined #openstack-dev18:01
dstanekbknudson: i was able to come up with a workaround for the live tests18:01
bknudsondstanek: what's the trick?18:01
dstanekbknudson: i put them in a keystone/tests/system with test_ names and filter them out18:02
*** cpallares1 has joined #openstack-dev18:02
*** cpallares has quit IRC18:02
dstanekbknudson: then you can still manually run them18:02
*** wayne__ has quit IRC18:02
dstanekbknudson: working on a patch now18:02
bknudsondstanek: that's what we want is to be able to manually run them.18:02
*** nachi has joined #openstack-dev18:02
*** tmclaugh[work] has quit IRC18:03
*** che-arne has quit IRC18:03
*** hartsocks1 has joined #openstack-dev18:05
*** aditirav has quit IRC18:05
*** wayne__ has joined #openstack-dev18:05
*** hartsocks has quit IRC18:06
*** hartsocks1 is now known as hartsocks_18:06
*** rushiagr2 has joined #openstack-dev18:06
*** vartom10 has joined #openstack-dev18:07
*** rushiagr has quit IRC18:07
*** rushiagr2 has quit IRC18:07
*** zul has quit IRC18:08
*** pjd2 has quit IRC18:08
*** anteaya has quit IRC18:08
*** Ryan_Lane has joined #openstack-dev18:08
*** anteaya has joined #openstack-dev18:10
*** dot has joined #openstack-dev18:11
*** rushiagr2 has joined #openstack-dev18:11
*** thomasm has joined #openstack-dev18:11
*** thomasm is now known as Guest2505118:11
*** rushiagr2 has quit IRC18:11
*** SumitNaiksatam has joined #openstack-dev18:12
*** arctansusan has quit IRC18:12
*** AnilV4 has quit IRC18:12
*** Mandell has quit IRC18:13
*** freedomhui has joined #openstack-dev18:13
*** Mandell has joined #openstack-dev18:13
*** yolanda has joined #openstack-dev18:17
*** anteaya_ has joined #openstack-dev18:17
*** johnthetubaguy has quit IRC18:17
*** neoXsys has joined #openstack-dev18:18
*** carl_baldwin has quit IRC18:18
*** Mandell has quit IRC18:18
*** rushiagr2 has joined #openstack-dev18:18
*** anteaya has quit IRC18:19
*** utlemming has quit IRC18:20
*** utlemming has joined #openstack-dev18:20
*** Mandell has joined #openstack-dev18:20
*** pjd2 has joined #openstack-dev18:21
*** rushiagr2 has quit IRC18:23
*** lsmola has joined #openstack-dev18:25
*** AnilV4 has joined #openstack-dev18:26
*** rushiagr2 has joined #openstack-dev18:26
*** devvesa has quit IRC18:27
*** CaptTofu has quit IRC18:27
*** tmclaugh[work] has joined #openstack-dev18:29
timelloI see that some projects don't have the X-Topics header when the emails get sent to the mailing list... what's the rule for that? I mean, why [Heat] emails, for instance, doesn't have it?18:29
*** CaptTofu has joined #openstack-dev18:29
*** shardy is now known as shardy_afk18:29
*** neoXsys has quit IRC18:30
*** rushiagr2 has quit IRC18:30
*** networkstatic has quit IRC18:32
*** mrunge has joined #openstack-dev18:32
*** nachi1 has joined #openstack-dev18:32
*** nachi has quit IRC18:32
*** Ryan_Lane has quit IRC18:32
*** Ryan_Lane has joined #openstack-dev18:33
*** AnilV4 has quit IRC18:34
*** jimfehlig has quit IRC18:35
*** cpallares has joined #openstack-dev18:36
*** cpallares1 has quit IRC18:36
*** markmcclain has quit IRC18:38
*** yolanda has quit IRC18:39
*** thomasm_ has joined #openstack-dev18:40
*** mnaser has quit IRC18:40
*** melwitt has quit IRC18:41
*** Guest25051 has quit IRC18:43
*** rongze has joined #openstack-dev18:43
*** locke105 has quit IRC18:44
*** carl_baldwin has joined #openstack-dev18:44
*** insanidade has quit IRC18:45
*** vipul is now known as vipul-away18:46
*** alunduil has quit IRC18:47
*** rongze has quit IRC18:48
*** lbragstad has quit IRC18:48
*** xga_ has joined #openstack-dev18:49
*** xga__ has joined #openstack-dev18:49
*** melwitt has joined #openstack-dev18:50
*** jistr has joined #openstack-dev18:50
*** mnaser has joined #openstack-dev18:51
*** yolanda has joined #openstack-dev18:52
*** pasm has quit IRC18:52
*** yaguang has quit IRC18:52
*** sushils has joined #openstack-dev18:53
*** anteaya_ is now known as anteaya18:53
*** xga_ has quit IRC18:54
*** xga__ has quit IRC18:54
*** yaguang has joined #openstack-dev18:54
*** derekh has joined #openstack-dev18:55
*** Loquacities has joined #openstack-dev18:55
*** dolphm_ has quit IRC18:56
*** cpallares has left #openstack-dev18:57
*** CaptTofu has quit IRC18:58
*** mkollaro has joined #openstack-dev18:58
*** CaptTofu has joined #openstack-dev18:58
*** Loquacity has quit IRC18:59
*** wayne__ has quit IRC19:00
*** wayne__ has joined #openstack-dev19:00
ayoungbknudson, https://fedorahosted.org/certmonger/  is the right tool, and drop the PKI setup OpenSSL specific code from Keystone etc19:00
morganfainbergayoung, ++19:00
bknudsonayoung: and auth_token, too?19:01
ayoungbknudson, no,19:01
ayoungbknudson, auth_token needs to fetch other peoples certs, different use case19:01
*** dot has quit IRC19:01
*** lbragstad has joined #openstack-dev19:03
ayoungbknudson, auth_token cert management does need some rethinking.  I would like to be able to redo the token format so that it says what cert signed it without running the CMS application to process the token itself.  And thne auth_token should be able to hold multiple certs, and refresht etc19:03
*** CaptTofu has quit IRC19:03
*** eglynn has joined #openstack-dev19:03
*** alunduil has joined #openstack-dev19:04
*** dmakogon has joined #openstack-dev19:04
*** markmcclain has joined #openstack-dev19:04
*** wayne__ has quit IRC19:04
ayoungnkinder, regarding the smart proxy I mentioned yesterday:  it would be a daemon that listened on AMQP for "VM created events" from Nova and then make a call into FreeIPA to create the approprate Host entries19:04
*** jruzicka has quit IRC19:05
gyeeayoung, ++ on certmaster19:05
*** dmakogon has left #openstack-dev19:05
gyeeayoung, is there a debian package19:06
ayounggyee, yeah, seems like the right tool to abstract out cert management without putting too much infrastructure in place19:06
*** novas0x2a|laptop has joined #openstack-dev19:06
ayounggyee, fairly certain that there is.  Let me confirm again19:06
gyeeI am going to play around with it19:06
ayounggyee, it is pretty simplistic.  No revocations.19:07
ayoungXML RPC19:07
ayounggyee, http://packages.debian.org/experimental/python/certmaster19:07
*** freedomhui has quit IRC19:07
dolphmayoung: gyee: https://git.fedorahosted.org/cgit/certmaster.git/tree/LICENSE19:08
ayounggyee, certmonger knows how to talk to Dogtag and Certmaster.  That would be the project to look at for integration with a 3rd party CA19:08
*** dot has joined #openstack-dev19:08
ayoungdolphm, any problem with using a  GPL V2  Devstack component?19:09
*** utlemming has quit IRC19:09
*** networkstatic has joined #openstack-dev19:09
gyeedolphm, I usually forward the whole thing to the lawyers :)19:09
*** arosen2 has joined #openstack-dev19:10
devanandageneral API / RESTful query string question for folks -- is there a good way to expose "get a list of resources where this property IS NULL" or "IS NOT NULL" ?  Eg, is this OK: GET /foo?property=notnull19:10
*** jvrbanac has quit IRC19:10
arosen2nachi1:  ping19:10
jamielennoxayoung: twitter won't let me get past the first step without following 5 people, and it's offering me kardashians - this is your fault19:11
dolphmayoung: from the mailing list "TL;DR - don't link to GPL code."19:11
gyeeayoung, I just thinking outloud here as I haven't spend much time reading the KDS code, would it be better to have a PKI system instead?19:11
dolphmbut it's a really long thread19:11
dstanekwhat does keystone.tests._test_import_auth_token actually test?19:11
dolphmdstanek: how'd you find that :P19:12
*** xavioux has joined #openstack-dev19:12
*** jamielennox is now known as jamielennox|away19:13
*** dstufft has quit IRC19:13
dolphmdstanek: https://review.openstack.org/#/c/24701/19:13
*** jamielennox|away is now known as jamielennox19:13
dstanekdolphm: just made a patch for the live test issue from this morning19:13
*** dot has quit IRC19:13
ayoungjamielennox, not my fault.  blame the twitterheads that made me do it last summit.19:14
dolphmjamielennox: hit skip19:14
gyeeheh19:14
*** SumitNaiksatam has quit IRC19:14
jamielennoxdolphm: i think they removed that19:14
*** markmcclain has quit IRC19:15
*** markmcclain has joined #openstack-dev19:15
jamielennoxok, but i can just go back to twitter.com and i'm still logged in19:15
jamielennoxgreat design there19:15
ayounghttps://twitter.com/admiyoung   https://twitter.com/jaypipes https://twitter.com/tcarrez https://twitter.com/joesavak https://twitter.com/bradtopol https://twitter.com/dolphm19:16
xaviouxLooking for Havana working neutron.conf, anyone please?19:16
ayoungjamielennox, you can use whatever twitter client you like, including several opensource ones as I recall19:16
morganfainbergayoung, (me) -> https://twitter.com/mdrnstm19:17
morganfainbergnot that i say anything interesting :P19:17
dstanekayoung: i'm https://twitter.com/dstanek :-)19:17
dolphmjamielennox: don't listen to ayoung, write your own client19:17
morganfainbergdolphm ++, jamielennox  doooo eeeet19:17
ayoungreal men just use curl for a twitter client19:18
*** shakayumi has quit IRC19:18
* gyee uses curl19:19
*** otherwiseguy has joined #openstack-dev19:19
nkinderayoung: Will that trigger creation of DNS records as well?19:19
ayoungnkinder, it will if you want it to. I want it to.19:19
morganfainbergayoung, i was using perl mechanised… then i realized it was perl.19:19
ayoungnkinder, you would probably create with a default ip address and let the client update when enrolling19:20
nkinderayoung: yeah, it would be nice if it's creating SSHFP records too.19:20
ayoungnkinder, big thinkg is that you need a OTP.  I was starting to think that we could use the hash of the Keystone token for that19:20
dstanekdolphm: it doesn't work anymore - is it worth fixing?19:21
ayoungsince we want to encrypt the notification anyway19:21
*** shakayumi has joined #openstack-dev19:21
*** neoXsys has joined #openstack-dev19:21
jamielennoxgyee: curl http://twitter.com > /dev/null19:21
*** bknudson has quit IRC19:21
gyeeha19:21
dolphmdstanek: probably not :(19:22
ayoungIf only twitter supported some sort of identity federation protocol...19:22
dolphmdstanek: it's the same issue with importing auth_token and s3_token from keystone.middleware19:22
*** amerine has joined #openstack-dev19:23
ayoungdstanek, that test was probably there from when we moved auth_token out of Keystone and into the client.19:23
dstanekdolphm: http://paste.openstack.org/show/49053/19:23
dstanekit looks like it just checks to see if an import happened19:24
dolphmdstanek: exactly19:24
*** huats has quit IRC19:24
*** senk has joined #openstack-dev19:25
dolphmdstanek: it's basically testing for that backtrace19:25
dolphmand at one point, it worked19:25
ayoungdstanek, are you familiar with the history of auth_token?19:25
dstanekayoung: not at all19:25
ayoungdstanek, it was a single file that people were pulling and sticking into their projects.  I broke that19:25
ayoungwhen I did pki tokens, I put in a dependency on external files for CMS checking etc.19:25
ayoungNow they need two files.19:26
*** shakayumi has quit IRC19:26
ayoungNeedless to say, people were not happy.19:26
ayoungI didn't blame them, but I thought that copying around a file like that somewhat neanderthalic19:26
*** wayne__ has joined #openstack-dev19:26
*** thomasm_ has quit IRC19:26
ayounganyway, we decided to put the auth_token middleware in the client.  In doing so, we wanted to make sure that people could still refer to it based on its old name, keystone.middleware.auth+_token as opposed to keystoneclient...19:27
dstanekayoung: thx...seems like i want to keep that test then.  any reason not to rename it to remove the leading _?19:29
dolphmdstanek: yes19:29
dolphmdstanek: if you don't run it in isolation, it'll pass because it's not testing anything19:29
*** neoXsys has quit IRC19:30
*** SumitNaiksatam has joined #openstack-dev19:30
dstanekdolphm: i'll leave it as it then so i can move forward, but right now it's not testing anything anyway :)19:30
dolphmactually, it might not be testing anything anyway... now that we've moved to keystone.tests (with __init__.py)19:30
dolphmit's no longer runnable in isolation19:30
dolphmgettext is being setup on import, keystone.config is executing19:31
*** gyee has quit IRC19:32
*** wayne__ has quit IRC19:32
*** isd has quit IRC19:32
*** wayne__ has joined #openstack-dev19:32
dolphmjamielennox: wow, they really did remove the skip button (just signed up for a new account to check it out)19:33
jamielennoxdolphm: and checkout the list they give you to select 5 people...19:34
*** adalbas has quit IRC19:34
*** dsantos_ has joined #openstack-dev19:34
*** alunduil has quit IRC19:34
dolphmjamielennox: workaround- close the browser window, confirm your account, and you're done19:34
*** mlavalle has joined #openstack-dev19:35
*** nikhil|afk is now known as nikhil19:35
jamielennoxdolphm: yea, did that19:35
jamielennoxhttps://twitter.com/jamielennox_   :(19:40
stevemarunderscore ftw!19:40
dolphmlol19:40
stevemarjamielennox, time to start twitterizing19:41
*** singhs has joined #openstack-dev19:41
xaviouxQuestion: is rabbitmq traffic encrypted in Havana?19:41
ayoungdstanek, I think it is safe to remove it19:41
jamielennoxyea someone stole my name19:41
jamielennoxit's what you get joining social sites 5 years later than everyone else19:42
dolphmjamielennox: 719:43
*** sushils has quit IRC19:44
*** rongze has joined #openstack-dev19:44
ayoungjamielennox, I pretty much use it for OpenStack stuff only19:44
stevemardolphm, wow, i had no idea it's been that long19:44
dolphmit's probably only been huge for 5 years19:45
stevemardolphm: hehe http://en.wikipedia.org/wiki/Twitter#Content - 40% "pointless babble"19:46
*** thomasm has joined #openstack-dev19:46
dolphmand 60% marketers talking to marketers about marketing19:46
*** thomasm is now known as Guest5616919:47
*** sushils has joined #openstack-dev19:48
*** asalkeld has quit IRC19:48
*** rongze has quit IRC19:48
*** dstufft has joined #openstack-dev19:48
*** vladan has quit IRC19:49
*** asalkeld has joined #openstack-dev19:54
*** vladan has joined #openstack-dev19:54
*** pixelb has quit IRC19:55
*** alop_ has joined #openstack-dev19:56
xaviouxLots of pointless babble here in the past half hour lol19:56
*** alop has quit IRC19:56
*** alop_ is now known as alop19:56
*** locke105 has joined #openstack-dev19:58
*** yeylon_ has quit IRC19:59
jamielennoxxavioux: lol, true20:00
*** enmand has quit IRC20:00
*** HenryG has quit IRC20:01
*** enmand has joined #openstack-dev20:01
*** drewlander has quit IRC20:01
*** jistr has quit IRC20:02
*** pcm_ has quit IRC20:03
*** jcoufal has quit IRC20:03
*** changbl has quit IRC20:04
*** lucas-afk is now known as lucasagomes20:05
*** vkmc has quit IRC20:05
*** topol has quit IRC20:08
*** kbringard has quit IRC20:09
*** jimfehlig has joined #openstack-dev20:09
*** dolphm has quit IRC20:11
*** melwitt has quit IRC20:14
*** exed has joined #openstack-dev20:14
*** xavioux has quit IRC20:15
*** nplanel has quit IRC20:15
*** exed has quit IRC20:16
*** beagles has quit IRC20:17
*** lucasagomes has quit IRC20:17
*** sarob has joined #openstack-dev20:18
*** rkukura has quit IRC20:18
*** ngoracke has quit IRC20:18
*** rkukura has joined #openstack-dev20:19
*** rkukura has quit IRC20:19
*** changbl has joined #openstack-dev20:19
*** dot has joined #openstack-dev20:20
*** zul has joined #openstack-dev20:20
*** sandywalsh has quit IRC20:20
*** READ10 has joined #openstack-dev20:22
nkinderayoung: are the contents of a keystone token described in detail somewhere?20:23
*** wolsen has joined #openstack-dev20:23
*** burris has quit IRC20:24
*** dot has quit IRC20:24
*** ayoung has left #openstack-dev20:25
*** stevemar has quit IRC20:26
*** wayne__ is now known as dubsquared20:28
*** ifarkas has quit IRC20:30
*** vipul-away is now known as vipul20:31
jamielennoxnkinder: for v3: https://github.com/openstack/identity-api/blob/master/openstack-identity-api/v3/src/markdown/identity-api-v3.md#tokens20:31
jamielennoxthere is a similar one for v220:31
nkinderjamielennox: Thanks!  v3 is fine for my needs.20:31
*** asalkeld has quit IRC20:32
dstanekjamielennox: what's you twitter?20:32
dstaneks/you/your/20:32
jamielennoxjamielennox_20:32
dstanekjamielennox: got it thx!20:33
*** jtomasek_ has joined #openstack-dev20:33
*** dvarga has quit IRC20:34
*** arctansusan has joined #openstack-dev20:34
*** alop has quit IRC20:35
*** jtomasek has quit IRC20:36
*** exed has joined #openstack-dev20:37
*** melwitt has joined #openstack-dev20:37
*** galstrom_zzz is now known as galstrom20:41
*** epopt37 has quit IRC20:41
*** radez is now known as radez_g0n320:42
*** yolanda has quit IRC20:43
*** gyee has joined #openstack-dev20:43
*** yolanda has joined #openstack-dev20:43
*** galstrom is now known as galstrom_zzz20:44
*** dsantos_ has left #openstack-dev20:44
*** rongze has joined #openstack-dev20:45
*** Guest56169 has quit IRC20:45
*** che-arne has joined #openstack-dev20:47
*** vuil has joined #openstack-dev20:49
*** vuil has quit IRC20:49
*** rongze has quit IRC20:50
*** kbringard has joined #openstack-dev20:51
*** changbl has quit IRC20:52
*** asalkeld has joined #openstack-dev20:52
*** dot has joined #openstack-dev20:53
*** litong has quit IRC20:53
*** mestery has quit IRC20:53
*** mestery has joined #openstack-dev20:54
*** dolphm has joined #openstack-dev20:54
*** vkmc has joined #openstack-dev20:55
*** gabrielhurley has joined #openstack-dev20:55
*** epopt37 has joined #openstack-dev20:56
*** Guest56169 has joined #openstack-dev20:56
*** Guest56169 has quit IRC20:56
*** ngoracke has joined #openstack-dev20:56
*** atiwari has quit IRC20:58
*** mestery has quit IRC20:58
*** dot has quit IRC20:58
*** sarob has quit IRC20:59
*** dubsquar_ has joined #openstack-dev21:00
*** gyee has quit IRC21:00
*** spzala has quit IRC21:01
*** jcoufal has joined #openstack-dev21:01
*** Guest56169 has joined #openstack-dev21:01
*** mestery has joined #openstack-dev21:03
*** changbl has joined #openstack-dev21:03
*** gyee has joined #openstack-dev21:03
*** dsirrine has quit IRC21:04
*** dubsquared has quit IRC21:04
*** dubsquar_ has quit IRC21:05
*** nebulta has joined #openstack-dev21:05
*** yamahata has joined #openstack-dev21:07
*** mrunge has quit IRC21:08
*** freedomhui has joined #openstack-dev21:09
*** alop has joined #openstack-dev21:09
*** dubsquared has joined #openstack-dev21:09
*** ericw has quit IRC21:11
*** arctansusan has quit IRC21:13
*** kbringard has quit IRC21:13
*** freedomhui has quit IRC21:14
*** pjd2 has quit IRC21:14
*** huats has joined #openstack-dev21:15
*** sarob has joined #openstack-dev21:16
*** arctansusan has joined #openstack-dev21:17
*** jtomasek_ is now known as jtomasek21:18
*** bswartz has quit IRC21:18
*** arctansusan has quit IRC21:19
*** xavioux has joined #openstack-dev21:20
*** xavious has joined #openstack-dev21:20
*** zul has quit IRC21:21
*** rkukura has joined #openstack-dev21:21
*** joesavak has quit IRC21:22
*** arctansusan has joined #openstack-dev21:22
*** yamahata has quit IRC21:23
*** networkstatic is now known as networkstatic_Zz21:24
*** dstufft has quit IRC21:25
*** dstufft has joined #openstack-dev21:25
*** pjd2 has joined #openstack-dev21:26
*** twoputt_ has quit IRC21:27
*** twoputt has quit IRC21:27
*** boden has quit IRC21:28
*** nermina has quit IRC21:29
*** melwitt has quit IRC21:29
*** twoputt has joined #openstack-dev21:29
*** twoputt_ has joined #openstack-dev21:30
*** vladikr has quit IRC21:32
*** mriedem has quit IRC21:32
*** chenxu has quit IRC21:32
*** dstufft has quit IRC21:32
*** dstufft has joined #openstack-dev21:33
*** dkranz has quit IRC21:34
*** bvandenh has quit IRC21:35
*** vipul is now known as vipul-away21:37
jamielennoxnow that keystone is using testr, is there a solution for ipdb, or at least printing the full logger output on failures?21:37
*** danpb has joined #openstack-dev21:38
*** jimfehlig has quit IRC21:38
*** e1mer has joined #openstack-dev21:39
*** vipul-away is now known as vipul21:39
*** davidhadas has quit IRC21:40
*** ericw has joined #openstack-dev21:40
*** Guest56169 has quit IRC21:40
*** dsirrine has joined #openstack-dev21:40
*** ericw has quit IRC21:40
*** kui has joined #openstack-dev21:43
*** rongze has joined #openstack-dev21:47
clarkbin nova and other projects the logging fixture is used to capture all logging generated by each test, this is then printed out on failure21:48
clarkbfor pdb, run_tests.sh has been updated to run test(s) under testtools.run which doesn't mess with stdout and stdin21:48
*** dsirrine has quit IRC21:49
dstanekdolphm: ping21:49
dolphmdstanek: pong21:49
dstanekdolphm: can you take a quick look at these tests - http://paste.openstack.org/show/49075/21:49
*** jpich has joined #openstack-dev21:49
dstanekdolphm: is that what you were envisioning?21:49
dolphmdstanek: that looks badass21:52
dolphmFALSOM -> FOLSOM21:52
dolphmdstanek: are you happy with that?21:52
*** zul has joined #openstack-dev21:52
dstanekdolphm: :-P i spelled it right most of the time21:52
*** vartom10 has quit IRC21:52
dstanekdolphm: yeah, i think it looks great21:52
*** gordc has quit IRC21:53
*** rongze has quit IRC21:53
*** ericw has joined #openstack-dev21:53
dstanekdolphm: taking the kids to the library, but i'll get it implemented when i get back21:53
*** lbragstad has quit IRC21:56
*** gabrielhurley has quit IRC21:57
*** ayoung has joined #openstack-dev21:57
*** xqueralt has quit IRC21:58
*** eharney has quit IRC21:58
*** jcoufal has quit IRC21:59
*** melwitt has joined #openstack-dev22:00
*** jcoufal has joined #openstack-dev22:00
*** arosen2 has quit IRC22:00
*** vipul is now known as vipul-away22:00
*** burt has quit IRC22:01
reedso, if you look at slide 4 you'll see how massively huge the structure is https://www.dropbox.com/s/at4wj81f84jfaqh/May%202013%20Marketing%20Meeting.pptx22:03
*** hartsocks_ has quit IRC22:04
devanandareed: should i assume additive transit time between marriot, design, and expo all? eg, ~15 minutes from end to end?22:04
*** SergeyLukjanov has joined #openstack-dev22:04
*** ruhe has joined #openstack-dev22:04
reeddevananda, I would not assume that22:04
devanandak22:05
*** dsirrine has joined #openstack-dev22:05
reedalthough... let me check the maps more carefully22:05
reeddevananda, did you look at the presentation?22:05
reeddropbox converts it to a pdf22:05
devanandalooking now, ya22:05
reedslide 6 is the Design summit22:06
*** toddnni_ has quit IRC22:06
*** dolphm_ has joined #openstack-dev22:06
*** sgordon has quit IRC22:06
*** dolphm has quit IRC22:06
*** ericw has quit IRC22:07
*** ruhe has quit IRC22:08
*** dsirrine has quit IRC22:08
reeddevananda, I checked the map and from what I understand the widest distance is between the Summit and the Marriot22:09
*** sarob has quit IRC22:09
reedsee that curve shape in the far right of the structure in slide 4? that I think is where the Summit will be22:09
devanandareed: got it. thanks!22:10
*** Guest56169 has joined #openstack-dev22:10
*** READ10 has quit IRC22:10
*** harlowja_ has joined #openstack-dev22:10
*** dolphm_ has quit IRC22:11
*** harlowja has quit IRC22:11
*** vipul-away is now known as vipul22:12
*** melwitt has quit IRC22:12
*** blamar has quit IRC22:13
*** prad has quit IRC22:13
*** pjd2 has quit IRC22:14
*** pjd2 has joined #openstack-dev22:14
*** riskable has quit IRC22:15
*** jecarey has quit IRC22:15
*** riskable has joined #openstack-dev22:15
*** dubsquared has quit IRC22:16
*** arctansusan has quit IRC22:17
*** dubsquared has joined #openstack-dev22:17
*** rcleere has quit IRC22:18
ttxexit22:18
ttxoops22:18
*** melwitt has joined #openstack-dev22:19
dansmithttx: you can check out, but you can never leave.22:19
*** dstanek has quit IRC22:19
*** dims has quit IRC22:20
*** buzztroll has quit IRC22:20
*** bpokorny has quit IRC22:21
*** buzztroll has joined #openstack-dev22:21
*** dubsquared has quit IRC22:22
*** pjd2 has quit IRC22:22
*** Guest56169 has quit IRC22:22
*** exed has quit IRC22:22
*** sarob has joined #openstack-dev22:23
*** rudrarug_ has joined #openstack-dev22:23
*** alunduil has joined #openstack-dev22:24
*** zul has quit IRC22:24
*** xavious has quit IRC22:25
*** xavioux has quit IRC22:25
*** buzztroll has quit IRC22:25
*** rudrarugge has quit IRC22:26
*** neelashah has quit IRC22:26
*** riskable_ has joined #openstack-dev22:27
*** zul has joined #openstack-dev22:27
*** riskable has quit IRC22:28
*** ericw has joined #openstack-dev22:28
*** xavioux has joined #openstack-dev22:28
*** buzztroll has joined #openstack-dev22:29
*** FunnyLookinHat has quit IRC22:30
*** riskable_ has quit IRC22:32
*** radsy has joined #openstack-dev22:33
*** zul has quit IRC22:33
*** datsun180b has quit IRC22:34
*** zul has joined #openstack-dev22:34
*** harlowja_ has quit IRC22:35
*** harlowja has joined #openstack-dev22:35
*** wolsen has quit IRC22:35
*** nachi1 has quit IRC22:36
*** derekh has quit IRC22:36
*** yaguang has quit IRC22:36
*** dims has joined #openstack-dev22:37
*** rudrarug_ has quit IRC22:38
*** rudrarugge has joined #openstack-dev22:39
notmynamettx: in summits past, there was a scheduling link that showed the bar chart for each topic. do we have that for this time?22:39
notmynamettx: ie the thing showing the proposed/available/scheduled slots for each track22:39
*** nachi has joined #openstack-dev22:39
*** ericw has quit IRC22:39
*** changbl has quit IRC22:40
*** tmclaugh[work] has quit IRC22:42
*** buzztroll has quit IRC22:42
*** buzztroll has joined #openstack-dev22:42
*** rudrarugge has quit IRC22:43
*** Loquacity has joined #openstack-dev22:43
*** CaptTofu has joined #openstack-dev22:45
*** alunch has quit IRC22:46
*** buzztroll has quit IRC22:47
*** Bo_Chen has joined #openstack-dev22:49
*** alop has quit IRC22:49
*** danpb has quit IRC22:49
*** rongze has joined #openstack-dev22:50
*** nachi has quit IRC22:50
*** nachi has joined #openstack-dev22:50
*** blamar has joined #openstack-dev22:52
*** ericw has joined #openstack-dev22:53
*** senk has quit IRC22:53
*** rongze has quit IRC22:54
*** mrodden has quit IRC22:54
*** dot has joined #openstack-dev22:55
*** toddnni has joined #openstack-dev22:56
*** harlowja_ has joined #openstack-dev22:57
*** mkollaro has quit IRC22:57
*** yaguang has joined #openstack-dev22:59
*** jpich has quit IRC22:59
*** dot has quit IRC22:59
*** harlowja has quit IRC22:59
*** thomasm has joined #openstack-dev23:00
*** thomasm is now known as Guest5589023:01
*** asalkeld is now known as asalkeld_lunch23:01
*** jayg is now known as jayg|g0n323:02
*** sumanthns has quit IRC23:02
*** vuil has joined #openstack-dev23:02
*** CaptTofu has quit IRC23:02
*** CaptTofu has joined #openstack-dev23:03
*** Guest55890 has quit IRC23:03
*** jtomasek has quit IRC23:03
*** lsmola has quit IRC23:04
*** ericw has quit IRC23:06
*** ykhodork has quit IRC23:08
*** pabelanger has quit IRC23:08
*** pabelanger has joined #openstack-dev23:09
*** rudrarugge has joined #openstack-dev23:09
*** rudrarugge has quit IRC23:09
*** rudrarugge has joined #openstack-dev23:10
*** nkinder has quit IRC23:10
*** ykhodork has joined #openstack-dev23:11
*** nachi has left #openstack-dev23:13
*** buzztroll has joined #openstack-dev23:13
*** chenxu has joined #openstack-dev23:14
jamielennoxclarkb: sorry for missing you earlier, do use mean nova's use of fixtures.FakeLogger() ? i can see that used in 3 places (just with a grep) and none of them would seem in the common path23:15
jamielennoxfrom what i can tell keystone hasn't done anything with its logging with the switch to testr23:15
*** reed has quit IRC23:15
*** reed has joined #openstack-dev23:16
clarkbjamielennox: yes, there should be one place it is used in tests.py23:16
* clarkb looks23:16
jamielennoxclarkb: ah, i grepped tests/ in nova not test.py23:16
*** mlavalle has quit IRC23:17
*** rudrarugge has quit IRC23:18
*** termie_ is now known as termie23:18
clarkbjamielennox: oh the other instances of it are because boto logging is lazy loaded? something like that. Where the global FakeLogger isn't sufficient23:18
jamielennoxok so it is in common path, i'll see if that helps in keystone23:18
*** jcoufal has quit IRC23:18
*** rudrarugge has joined #openstack-dev23:19
*** pablosan has quit IRC23:20
jamielennoxclarkb: i take it the argument to FakeLogger is similar to picking a namespace for logging?23:20
*** dkranz has joined #openstack-dev23:21
clarkbjamielennox: yeah, same thing. Without an arg it is supposed to catch everything, but boto is special23:21
jamielennoxas there is a FakeLogger in oslo's test.py which we don't use, but it's set to 'openstack.common' only23:21
*** buzztroll has quit IRC23:21
*** carl_baldwin has quit IRC23:22
*** e1mer has quit IRC23:23
*** jvrbanac has joined #openstack-dev23:24
*** e1mer has joined #openstack-dev23:25
*** termie has quit IRC23:25
*** termie has joined #openstack-dev23:25
*** jmontemayor has quit IRC23:28
*** sushils has quit IRC23:31
*** senk has joined #openstack-dev23:33
*** arctansusan has joined #openstack-dev23:34
*** networkstatic_Zz is now known as networkstatic23:34
*** jvrbanac has quit IRC23:36
*** mriedem has joined #openstack-dev23:37
*** sthaha has joined #openstack-dev23:39
*** arctansusan has quit IRC23:39
*** Loquacity has quit IRC23:40
*** ericw has joined #openstack-dev23:41
*** Bo_Chen has quit IRC23:42
*** Loquacity has joined #openstack-dev23:42
*** bswartz has joined #openstack-dev23:44
*** changbl has joined #openstack-dev23:46
*** arctansusan has joined #openstack-dev23:46
*** sarob has quit IRC23:47
*** sarob has joined #openstack-dev23:47
*** rongze has joined #openstack-dev23:50
*** irimi has joined #openstack-dev23:51
*** vipul is now known as vipul-away23:51
*** matsuhashi has joined #openstack-dev23:53
*** senk has left #openstack-dev23:54
*** ericw has quit IRC23:54
*** irimi has quit IRC23:54
*** tanisdl has quit IRC23:54
*** rongze has quit IRC23:55
*** singhs has quit IRC23:55
*** vipul-away is now known as vipul23:57
*** pmathews has quit IRC23:58
*** dstanek has joined #openstack-dev23:58

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