Friday, 2013-05-03

*** Mandell has joined #openstack-dev00:00
*** sarob has quit IRC00:00
*** sarob has joined #openstack-dev00:01
*** sacharya has joined #openstack-dev00:02
*** ociuhandu has quit IRC00:03
*** sarob has quit IRC00:05
*** winston-d has joined #openstack-dev00:07
*** vipul is now known as vipul|away00:07
*** yidclare has joined #openstack-dev00:10
*** vipul|away is now known as vipul00:12
*** FatDarrel has joined #openstack-dev00:12
*** riskable has quit IRC00:14
*** reed has quit IRC00:17
*** sthaha has joined #openstack-dev00:19
*** markwash has joined #openstack-dev00:21
*** jakedahn has joined #openstack-dev00:23
*** Nachi has quit IRC00:23
*** nati_ueno has joined #openstack-dev00:23
*** krtaylor has joined #openstack-dev00:24
*** Chaser has quit IRC00:24
*** NobodyCam has quit IRC00:26
*** krtaylor has quit IRC00:26
ayoungmorganfainberg, checkout grizzly stable from origin and cherrypick the patch over.  Once you are sure it works, git review it from there00:27
*** yidclare has quit IRC00:27
*** nati_ueno has quit IRC00:28
morganfainbergayoung: figured as much, just making sure there wasn't other process involved.  Thanks!00:28
*** Ryan_Lane has quit IRC00:30
*** Mandell has quit IRC00:31
*** malini2 has joined #openstack-dev00:32
*** zb has joined #openstack-dev00:32
*** yidclare has joined #openstack-dev00:32
*** Gman2 has joined #openstack-dev00:32
*** digitalsanctum has quit IRC00:33
*** adalbas has quit IRC00:35
*** zbitter has quit IRC00:35
*** devoid has quit IRC00:35
*** NobodyCam has joined #openstack-dev00:36
*** bdpayne has quit IRC00:36
ayoungmorganfainberg, no problem.  which review?00:36
*** digitalsanctum has joined #openstack-dev00:37
morganfainbergayoung: I am working on cleaning a couple things up and testing it before resubmitting it to stable.00:37
morganfainbergayoung: https://review.openstack.org/#/c/27597/ is the proposed against master00:38
ayoungmorganfainberg, looking00:38
*** digitalsanctum has quit IRC00:39
*** gyee has quit IRC00:39
*** jakedahn has quit IRC00:39
ayoungmorganfainberg, I think we are going to need that one as is.  As much as I like the efficiency of termie 's proposal, I don't think it will allow us to do revocation lists.00:39
*** pixelbeat has quit IRC00:40
morganfainbergayoung: i haven't spent a huge amount of time noodling over termies proposal yet.00:40
ayoungmorganfainberg, what does cas_retry mean?00:41
morganfainbergcas is compare and sety00:41
morganfainbergset*00:41
ayounghmmm...I think that needs a better name....00:41
morganfainbergit is a mechanism of memcache, so it is the number of attempts to get value/do work/set before giving up00:41
ayoungI mean, I know what this code is supposed to do, and I couldn't parse it00:42
morganfainbergcas is the actual memcache name, but i agree it should be named differently00:42
ayoungah, ok...makes sense00:42
ayoungdefault 0 for sizes?00:43
morganfainbergayoung: the only two times we address the lists is when we call revocation_list (used limitedly in v2, not a _ton_ of revocations happen)00:43
morganfainbergand the user-list is only ever looked at expanded when you ask for the actual list00:43
morganfainbergand that is only used on _delete_tokens_for_user00:43
morganfainbergcalls00:44
morganfainberg*smashes fingers for slipping and hitting enter too much*00:44
*** sudorandom has joined #openstack-dev00:44
morganfainbergit might make sense to set the revocation list length max to something besides 0 as a default, but the max_user_record_list_size is almost superflous00:44
morganfainbergsince we don't expand the user-list (just do an append) every time we issue a token00:45
morganfainbergappend in memcache parlance, not python that is00:45
ayoungmorganfainberg, I would expect that we would check the max_user_record_list_size and, if it is exceeded, truncate00:45
ayoungno?00:45
ayoungmorganfainberg, also...is this code somehow generalizable?  It seems that if we are having memcache problems that this solves, others might as well.00:46
morganfainbergayoung: that would require deserialization of the user-record-list on every token issuance, that would also then require running the token list every time which requires a memcache.get() for each id00:46
morganfainberghrm, generalizing it00:47
morganfainberghrmmm.00:47
*** FatDarrel has quit IRC00:47
*** adalbas has joined #openstack-dev00:47
morganfainbergi don't think we track a user-record list like this in any other form.00:47
morganfainbergthe revocation list truncate might be generalized.00:47
ayoungmorganfainberg, also, we monkeypatch "thread" I think, especially for memcache.  Is that going to be a problem (I assume it is)00:47
morganfainbergdo we address the back-end driver for the tokens per-thread? or do we instantiate and pass between threads.00:48
ayoungmorganfainberg, keep the generalization thing in mind.  Doesn't have to be for this patch, might be a refactoring down the road00:48
morganfainbergthe issue would occur if we passed the instantiated objects between threads.00:49
ayoungpass between, I think.  But it is passed between greenthreads, which are userland, and the eventlet code should not swap out in the middle of a call, so it might be OK.00:49
morganfainbergif that is the case we should be safe, it's just depending on yeild points then.00:50
morganfainbergand i think you're correct that it wont swap middle00:50
morganfainberg*in the middle00:50
ayoungmorganfainberg, I'm guessing that there are no yield points, but the fact that we monkeypatch "thread" does make me wonder00:51
ayoungmorganfainberg, why do you need created_at?  Can't you use the "expires" field?00:52
morganfainbergyeah, i could instantiate a new memcache driver per set of calls, which would add overhead but should solve it definitively00:52
morganfainbergcreated_at is for determining if we should administratively wipe out long lived tokens.00:53
morganfainberge.g. time since creation00:53
morganfainbergexpiry doesn't reflect any thing about creation time00:53
ayoungmorganfainberg, you could do the same thing with time since expiration, which would be more correct00:53
morganfainbergand one can issue a long lived token (at least in v2)00:54
ayoungand then we wouldn't need an additional field.00:54
morganfainbergtime since expiration != time since creation, that option is only for currently valid tokens if we want to strike them00:54
ayoungIf the token is still valid, it should stay in the cache00:54
morganfainbergexpired tokens will always be stricken from the list00:54
ayoungah, you mean revoked tokens?  hmmm00:55
morganfainbergeven non-revoked00:55
morganfainbergactually non-revoked00:55
ayoungno I think valid tokens need to stay in the cache00:55
morganfainbergok00:55
morganfainbergi'll remove that option.00:55
*** Chaser has joined #openstack-dev00:55
morganfainbergand created_at disappears then00:55
ayoungmorganfainberg, I see the problem:  for long lived jobs, we need long lived tokens, but people are creating tokens left and right and filling up the pages with valid, but unused tokens.00:56
morganfainbergdoes it make sense to modify the revocation list to work more like the user-record list?  use a unique_id and then construct the json from "revoked-token-<id>"00:56
morganfainberginstead of storing the complete json in the single revocation page?00:56
morganfainbergayoung: yes, that is the problem.00:57
ayoungmorganfainberg, we don;t want to recreate the list every time it is fetched.  THat is going to be more common than revoking a token00:57
morganfainbergayoung: thats what i figured.  which is why i didn't move that direction off the bat.00:57
ayoungmorganfainberg, so the solution to that is to use a delegation mechanism, and then shortening the lifespan of tokens.  We are working on it, but it will take time for adoption00:58
morganfainbergyes, i see the start of that and it absolutely looks like the right approach00:58
ayoungthat was why I pushed through trusts last release...without delegation, there is no way to deal with long lived jobs except for using  a bearer token that lives for the whole length of the job00:58
morganfainbergyep.00:59
ayoungmorganfainberg, how long do  tokens live in your system?00:59
morganfainberg86400 atm00:59
morganfainbergbut we could compress that down some.00:59
morganfainberg(seconds that is)00:59
morganfainbergthis code really only kicks the can down the road some especially if the revocation list is "full" but all tokens are currently valid.01:00
morganfainbergideally it should be a relatively rare occurrence to revoke a token. but we do smash up against the page limit faster there if someone has a ton of tickets and ._delete_tokens_for_user() gets called.01:01
morganfainbergs/tickets/tokens01:02
ayoung24 hours is pretty long.  are there really jobs that take anywhere near that long?01:03
ayoungpython-keyring should also get you some token reuse.  At 24hrs/token you shouldn't need many tokens01:04
*** melwitt has quit IRC01:04
morganfainbergayoung: it's an issue with customers developing their own portals (no control) against the APIs01:05
*** anniec has quit IRC01:05
morganfainbergso if they issue a ton of tokens for tasks, i can say "hey don't do that" but it only goes so far (private cloud)01:05
morganfainbergpublic cloud I could be a bit more forcefull about "abuse" of the system.01:05
*** novas0x2a|laptop has quit IRC01:06
morganfainbergdon't get me wrong, we are working to help mitigate this type of issue, but it still is a concern in the long run even with shorter tokens (i'll get the token length cut down in our system to help some as well)01:06
*** jaybuff has left #openstack-dev01:06
*** slagle has quit IRC01:06
morganfainbergyou are right 86400 is too long for most tasks.01:06
*** jakedahn has joined #openstack-dev01:06
*** alunduil has quit IRC01:07
*** sirushti has quit IRC01:08
morganfainbergthat should mitigate the concern(s) with the revocation list except in extreme scenarios01:08
*** alunduil has joined #openstack-dev01:08
*** sirushti has joined #openstack-dev01:09
*** markmcclain has joined #openstack-dev01:12
*** HenryG has joined #openstack-dev01:12
*** prekarat has quit IRC01:12
*** slagle has joined #openstack-dev01:14
*** prekarat has joined #openstack-dev01:14
morganfainbergayoung: I have to head off to do some internal code documentation.  I'll get the code cleaned up (and make it clearer what is going on) as well as address the max_token_age being removed (so we don't dump tokens out of cache that are valid).01:15
*** jakedahn has quit IRC01:16
ayoungmorganfainberg, I was thinking about adding a feature to the policy engine that would turn off enforcement, but then tell you what actions would have been denied if policy had been enforced.  You would  run the task in a staging environment,  And use that to figure out what roles you would need to delegate for  the task.01:16
ayoungmorganfainberg, sounds good01:16
morganfainbergayoung: i'll sync up with you later if for the master branch one (and ponder some generalization).  — thats a good idea for the delegation migration01:17
morganfainbergwould def. make it easier to figure out what to delegate compared to now.01:17
morganfainberghave a good evening :)01:17
*** terry7 has quit IRC01:26
*** PaulM has joined #openstack-dev01:26
*** anniec has joined #openstack-dev01:31
*** alexxu has joined #openstack-dev01:33
*** jergerber has joined #openstack-dev01:37
*** anniec_ has joined #openstack-dev01:39
*** anniec has quit IRC01:40
*** anniec_ is now known as anniec01:40
*** RaySun has joined #openstack-dev01:42
*** mestery has joined #openstack-dev01:46
*** jergerber has quit IRC01:48
*** toey has joined #openstack-dev01:48
*** jergerber has joined #openstack-dev01:51
*** prekarat has quit IRC01:53
*** toey has quit IRC01:59
*** bing_bu has joined #openstack-dev02:02
*** sudorandom has quit IRC02:03
*** michchap has quit IRC02:05
*** anniec has quit IRC02:06
*** alop has quit IRC02:10
*** portante|afk has quit IRC02:14
*** radez_g0n3 has quit IRC02:15
*** portante|afk has joined #openstack-dev02:15
*** radez_g0n3 has joined #openstack-dev02:15
*** stevemar has joined #openstack-dev02:15
*** sandywalsh has quit IRC02:18
*** maoy has joined #openstack-dev02:18
*** malini2 has quit IRC02:22
*** jergerber has quit IRC02:23
openstackgerritA change was merged to openstack/swift: conf.d support  https://review.openstack.org/2535302:27
*** hartsocks1 has joined #openstack-dev02:28
*** hartsocks has quit IRC02:30
*** lauria has joined #openstack-dev02:34
*** colinmcnamara has joined #openstack-dev02:36
*** prekarat has joined #openstack-dev02:40
*** vkmc has quit IRC02:41
*** X-Scale has joined #openstack-dev02:42
*** radez_g0n3 is now known as radez02:44
*** SergeyLukjanov has joined #openstack-dev02:46
*** utlemming has quit IRC02:48
*** prekarat has quit IRC02:48
*** prekarat has joined #openstack-dev02:48
*** malini has joined #openstack-dev02:50
*** RaySun has quit IRC02:50
*** sarob has joined #openstack-dev02:51
*** networkstatic_ has joined #openstack-dev02:56
*** networkstatic has quit IRC02:57
*** mikal has quit IRC02:57
*** mikal has joined #openstack-dev02:59
HenryGI am trying to run quantum unit tests under Ubuntu 13.04, and I am seeing random failures. It looks like deserialize is unpacking lists in random order. Has anyone seen this?02:59
*** jergerber has joined #openstack-dev03:00
*** brunnhilde has quit IRC03:00
PaulMare you using python with -R and the unittests are broken?03:05
*** jamespage has quit IRC03:05
*** jamespage has joined #openstack-dev03:05
PaulMor the env var PYTHONHASHSEED could be set to 'random'03:05
*** ladquin_brb has quit IRC03:06
HenryGI just ran tox.03:06
HenryGno PYTHONHASHSEED env var03:06
PaulMare you using the correct version of python?03:07
HenryGUbuntu 13.04 comes with 2.7.4 by default. I wonder if that is the problem.03:07
HenryGFurther debugging indicates that it is probably serialize() that builds the json object in random order.03:08
PaulM2.7.4 should be fine03:08
PaulMwhat do you mean by "builds the json object in a random order"03:08
PaulMwhich datastructures are being randomized?03:09
PaulMkeys in dicts, perhaps?03:09
*** sandywalsh has joined #openstack-dev03:09
HenryGJust stepping thru the code, I see the test serializer building a string with json data.03:10
PaulMtry this03:11
PaulMdoes running this twice produce the same result?03:12
PaulMpython -c "print 'a'.__hash__()"03:12
HenryGsame result every time03:16
PaulMso yeah, probably not hash randomization then03:16
PaulMunless tox specifies that or somethign03:17
*** lauria has quit IRC03:18
*** radez is now known as radez_g0n303:19
*** bdpayne has joined #openstack-dev03:19
HenryGI am too tired to dig more right now. Not that important anyway. Was just trying out the new Ubuntu.03:20
PaulMdoes sound like randomization somewhere... no clue though03:22
HenryGthanks for the ideas. I may try again this weekend if I get bored.03:23
*** HenryG has quit IRC03:24
*** SergeyLukjanov has quit IRC03:25
*** maoy has quit IRC03:34
*** electrichead has joined #openstack-dev03:36
*** jakedahn has joined #openstack-dev03:38
*** jakedahn has joined #openstack-dev03:38
*** jecarey has quit IRC03:41
*** erfanian has quit IRC03:45
*** electrichead has quit IRC03:50
*** Mandell has joined #openstack-dev03:51
*** colinmcnamara has quit IRC03:56
*** kenperkins has quit IRC03:57
*** esp has joined #openstack-dev03:59
*** prekarat has quit IRC04:00
*** prekarat has joined #openstack-dev04:00
*** boris-42 has joined #openstack-dev04:00
*** reed has joined #openstack-dev04:02
*** reed has quit IRC04:02
*** tzumainn has joined #openstack-dev04:04
*** colinmcnamara has joined #openstack-dev04:06
*** electrichead has joined #openstack-dev04:11
*** esp has left #openstack-dev04:11
*** colinmcnamara has quit IRC04:13
*** jclift has quit IRC04:23
*** alexpilotti has joined #openstack-dev04:25
*** zaitcev has quit IRC04:39
*** jergerber has quit IRC04:39
*** rushiagr has joined #openstack-dev04:40
*** Ryan_Lane has joined #openstack-dev04:41
*** hartsocks1 has left #openstack-dev04:41
*** hartsocks has joined #openstack-dev04:42
*** jcoufal has joined #openstack-dev04:44
*** sarob has quit IRC04:53
*** sarob has joined #openstack-dev04:53
*** nunosantos has quit IRC04:56
*** aeperezt has quit IRC04:56
*** boris-42 has quit IRC04:57
*** glikson has joined #openstack-dev04:58
*** sarob has quit IRC04:58
*** salv-orlando has joined #openstack-dev04:59
*** salv-orlando has left #openstack-dev05:00
*** Mandell has quit IRC05:02
*** Mandell has joined #openstack-dev05:05
*** tzumainn has quit IRC05:13
*** boris-42 has joined #openstack-dev05:15
*** markmcclain has quit IRC05:16
*** sacharya has quit IRC05:16
*** ayoung has quit IRC05:23
*** vartom1113 has joined #openstack-dev05:24
*** navid_ has joined #openstack-dev05:24
*** bdpayne has quit IRC05:38
*** Ryan_Lane1 has joined #openstack-dev05:39
*** Ryan_Lane has quit IRC05:41
*** ayoung has joined #openstack-dev05:48
*** kenperkins has joined #openstack-dev05:50
*** jcoufal has quit IRC05:51
*** jcoufal has joined #openstack-dev05:52
*** electrichead has quit IRC05:55
*** electrichead has joined #openstack-dev05:55
*** jcoufal has quit IRC06:01
*** jcoufal has joined #openstack-dev06:02
*** jcoufal has quit IRC06:02
*** jcoufal has joined #openstack-dev06:02
*** jcoufal has quit IRC06:03
*** jcoufal has joined #openstack-dev06:03
*** electrichead has quit IRC06:06
*** electrichead has joined #openstack-dev06:07
*** Mandell has quit IRC06:08
*** alexxu has quit IRC06:16
*** flaper87 has joined #openstack-dev06:17
*** mrunge has joined #openstack-dev06:18
*** xga has joined #openstack-dev06:19
*** Ryan_Lane1 has quit IRC06:24
*** winston-d has quit IRC06:29
*** Mandell has joined #openstack-dev06:30
*** afazekas has joined #openstack-dev06:34
*** electrichead has quit IRC06:40
*** shang has quit IRC06:41
*** prekarat1 has joined #openstack-dev06:42
*** prekarat has quit IRC06:42
*** flaper87 has quit IRC06:50
*** baba has quit IRC06:52
*** megha has joined #openstack-dev06:52
*** reidrac has joined #openstack-dev06:53
*** egallen has joined #openstack-dev06:53
*** flaper87 has joined #openstack-dev06:54
*** mindpixel has joined #openstack-dev06:55
*** xga has quit IRC06:55
*** xga has joined #openstack-dev06:56
*** shang has joined #openstack-dev06:59
*** jcoufal has quit IRC06:59
*** boris-42 has quit IRC06:59
*** jcoufal has joined #openstack-dev06:59
*** prekarat1 has quit IRC07:04
*** prekarat has joined #openstack-dev07:04
*** ondergetekende has joined #openstack-dev07:05
*** eglynn has joined #openstack-dev07:06
*** fc__ has joined #openstack-dev07:06
*** eglynn has quit IRC07:11
ttxmarkwash: yes07:11
ttxlifeless: let me set up my proxy so that I stay on that channel too (or move it to Freenode :P)07:12
*** alexxu has joined #openstack-dev07:15
*** dguitarbite has joined #openstack-dev07:16
ttxadam_g: added you to stable-maint team, you should be able to target to series now07:16
*** rods has joined #openstack-dev07:17
*** stevemar has quit IRC07:19
*** susanne-balle has quit IRC07:20
*** susanne-balle has joined #openstack-dev07:21
*** egallen has quit IRC07:26
openstackgerritA change was merged to openstack/oslo-incubator: Improve python3 compatibility  https://review.openstack.org/2791607:28
*** mmagr has joined #openstack-dev07:29
*** jgallard has joined #openstack-dev07:31
*** jtomasek has joined #openstack-dev07:33
*** Yada has joined #openstack-dev07:37
*** aloga has joined #openstack-dev07:39
openstackgerritA change was merged to openstack/oslo-incubator: Update processutils.  https://review.openstack.org/2801407:40
*** zb is now known as zaneb07:45
*** fbo_ has joined #openstack-dev07:47
*** jdurgin2 has joined #openstack-dev07:48
*** jdurgin2 has quit IRC07:48
*** mindpixel has quit IRC07:49
*** mindpixel has joined #openstack-dev07:49
*** lucasagomes has joined #openstack-dev07:55
prekaratwhy does nova CLI lets you create a server name with all blank spaces? shouldn't be there a check to see if the entered string is not all blank spaces?08:00
*** git-harry has joined #openstack-dev08:01
openstackgerritA change was merged to openstack/oslo-incubator: Deprecate log_format and change default to None  https://review.openstack.org/2678408:02
*** arosen has quit IRC08:02
rushiagrprekarat: looks like a bug08:03
*** dave has joined #openstack-dev08:03
prekaratrushiagr: cool thank you its because of this, am writing a patch now08:03
*** tomh_ has joined #openstack-dev08:03
prekarat      name = server_dict['name']08:03
prekarat        self._validate_server_name(name)08:03
prekarat        name = name.strip()08:03
*** dave is now known as Guest2261008:03
prekaratit should strip the name before it validates.08:03
*** vuntz has quit IRC08:03
*** Guest15529 has quit IRC08:04
rushiagrprekarat: cool. See if a bug exist on launchpad, or if not, raise it yourself08:04
*** arosen has joined #openstack-dev08:04
prekaratrushiagr: sure, thanks08:05
*** tomhancock has quit IRC08:05
*** vuntz has joined #openstack-dev08:05
*** vuntz has quit IRC08:05
*** vuntz has joined #openstack-dev08:05
*** Mandell has quit IRC08:05
*** git-harry has quit IRC08:07
*** git-harry has joined #openstack-dev08:09
*** pixelbeat has joined #openstack-dev08:10
rushiagrhttps://github.com/rushiagr/python-cinderclient/commit/995bb1619a2367af1607a648183cac37bc4d3e9b08:12
rushiagroops, wrong channel :)08:12
*** SergeyLukjanov has joined #openstack-dev08:13
*** jpich has joined #openstack-dev08:14
*** SergeyLukjanov has quit IRC08:17
openstackgerritA change was merged to openstack/oslo-incubator: Add test coverage for sqlite regexp function  https://review.openstack.org/2810708:18
*** trapni has joined #openstack-dev08:22
*** trapni has joined #openstack-dev08:22
*** afazekas has quit IRC08:25
*** derekh has joined #openstack-dev08:26
*** eglynn has joined #openstack-dev08:29
*** mindpixel has quit IRC08:33
Madkissis it a known problem that in Linux, when connecting many devices into a bridge, the bridge will react slower to single initial requests like pings?08:33
MadkissI was suspecting a quantum-bug first, but it is fairly obviously that the problem (Very long latency for the reploy to the first icmp ping request) only appears with many interfaces connected to br-tun/br-ex08:34
*** xga has quit IRC08:35
*** xga has joined #openstack-dev08:37
*** bing_bu has quit IRC08:38
*** jcoufal_ has joined #openstack-dev08:41
*** jcoufal_ has quit IRC08:42
*** afazekas has joined #openstack-dev08:47
*** psedlak has joined #openstack-dev08:47
*** prekarat has quit IRC08:48
*** prekarat has joined #openstack-dev08:51
*** yuanz has quit IRC08:51
*** yuanz has joined #openstack-dev08:51
*** corXi has joined #openstack-dev08:54
*** zoresvit has joined #openstack-dev08:56
*** danpb has joined #openstack-dev09:02
alexpilottiarosen: hi09:02
openstackgerritA change was merged to openstack/nova: Deprecate show_host_resources() in scheduler manager  https://review.openstack.org/2797409:02
openstackgerritA change was merged to openstack/nova: Add force_nodes to filter properties  https://review.openstack.org/2782409:02
*** jcoufal has quit IRC09:03
*** jcoufal has joined #openstack-dev09:03
*** kaushikc has joined #openstack-dev09:05
*** frozencemetery has quit IRC09:05
*** athomas has quit IRC09:08
*** pixelbeat has quit IRC09:08
*** athomas has joined #openstack-dev09:08
*** aloga_ has joined #openstack-dev09:09
*** arosen has quit IRC09:10
*** glikson has quit IRC09:10
*** zaneb has quit IRC09:10
*** bswartz has quit IRC09:10
*** markkropf has quit IRC09:10
*** sld has quit IRC09:10
*** mkerrin has quit IRC09:10
*** johndescs has quit IRC09:10
*** jpeeler has quit IRC09:10
*** jd__ has quit IRC09:10
*** primeministerp has quit IRC09:10
*** guitarzan has quit IRC09:10
*** guitarzan has joined #openstack-dev09:10
*** jd__ has joined #openstack-dev09:10
*** mkerrin has joined #openstack-dev09:10
*** sld has joined #openstack-dev09:11
*** zaneb has joined #openstack-dev09:11
*** jpeeler has joined #openstack-dev09:11
*** johndescs has joined #openstack-dev09:11
*** glikson has joined #openstack-dev09:11
*** arosen has joined #openstack-dev09:11
*** aloga has quit IRC09:12
openstackgerritA change was merged to openstack/glance: Fix functional test 'test_copy_from_swift'  https://review.openstack.org/2512609:12
*** xga_ has joined #openstack-dev09:12
*** xga has quit IRC09:14
*** kaushikc has quit IRC09:20
*** kaushikc has joined #openstack-dev09:20
*** primeministerp has joined #openstack-dev09:21
*** kaushikc has quit IRC09:23
*** kaushikc has joined #openstack-dev09:23
*** ociuhandu has joined #openstack-dev09:27
*** bobba has quit IRC09:32
*** prekarat has quit IRC09:33
*** pcm___ has joined #openstack-dev09:43
*** pcm__ has joined #openstack-dev09:44
openstackgerritA change was merged to openstack/python-glanceclient: Fix inconsistent --debug messages on image-update  https://review.openstack.org/2748509:46
*** andymccr has joined #openstack-dev09:46
*** prekarat has joined #openstack-dev09:51
*** rushiagr has quit IRC09:54
*** mrunge has quit IRC09:54
openstackgerritA change was merged to openstack/ceilometer: Imported Translations from Transifex  https://review.openstack.org/2655509:56
*** malini has quit IRC09:57
*** mrunge has joined #openstack-dev09:59
*** alexxu has quit IRC10:01
*** xga_ has quit IRC10:09
*** danpb has left #openstack-dev10:13
*** llu has quit IRC10:13
*** markmc has joined #openstack-dev10:18
*** kaushikc has quit IRC10:19
*** saschpe has quit IRC10:19
*** saschpe has joined #openstack-dev10:23
*** jtomasek has quit IRC10:25
*** matiu has quit IRC10:26
*** matiu has joined #openstack-dev10:27
*** ewindisch has joined #openstack-dev10:30
*** ondergetekende has quit IRC10:30
*** derekh has quit IRC10:32
*** ondergetekende has joined #openstack-dev10:35
*** ondergetekende has joined #openstack-dev10:36
*** mikal has quit IRC10:39
*** mikal has joined #openstack-dev10:41
*** prekarat has quit IRC10:42
*** derekh has joined #openstack-dev10:44
*** prekarat has joined #openstack-dev10:45
*** jtomasek has joined #openstack-dev10:48
*** Gman2 has quit IRC10:49
*** apevec has joined #openstack-dev10:52
*** Yada has quit IRC11:00
*** lucasagomes has quit IRC11:00
*** lucasagomes has joined #openstack-dev11:02
*** jtomasek has quit IRC11:02
*** jtomasek has joined #openstack-dev11:07
*** HenryG has joined #openstack-dev11:23
*** jruzicka has joined #openstack-dev11:24
*** glikson has quit IRC11:29
*** ewindisch has quit IRC11:33
*** wiliam has joined #openstack-dev11:35
*** digitalsanctum has joined #openstack-dev11:42
*** wiliam has quit IRC11:44
*** wiliam has joined #openstack-dev11:44
*** garyk has joined #openstack-dev11:44
*** jasondotstar has quit IRC11:45
openstackgerritA change was merged to openstack/swift: Add an explicit unit test for handling content-length: 0  https://review.openstack.org/2715211:47
*** wiliam has quit IRC11:49
*** egallen has joined #openstack-dev11:50
*** tayyab has joined #openstack-dev11:51
*** tzumainn has joined #openstack-dev11:52
*** jcoufal has quit IRC11:52
*** wiliam has joined #openstack-dev11:52
*** beagles_food is now known as beagles11:53
*** jcoufal has joined #openstack-dev11:54
*** kenperkins has quit IRC11:55
openstackgerritA change was merged to openstack/horizon: Adding extensibility to table actions template.  https://review.openstack.org/2786511:58
*** Yada has joined #openstack-dev12:00
*** vartom1114 has joined #openstack-dev12:00
*** vartom1113 has quit IRC12:00
*** ewindisch has joined #openstack-dev12:01
*** lucasagomes has quit IRC12:02
*** ewindisch has quit IRC12:02
*** sthaha has quit IRC12:03
*** xga has joined #openstack-dev12:03
*** sandywalsh has quit IRC12:04
*** dguitarbite has quit IRC12:05
*** kenperkins has joined #openstack-dev12:07
*** navid_ has quit IRC12:08
*** roz has joined #openstack-dev12:09
*** wiliam has quit IRC12:10
*** xga has quit IRC12:10
*** sgordon has joined #openstack-dev12:12
*** xga has joined #openstack-dev12:12
*** dhellmann has joined #openstack-dev12:15
*** vkmc has joined #openstack-dev12:17
*** vkmc has quit IRC12:17
*** vkmc has joined #openstack-dev12:17
*** sandywalsh has joined #openstack-dev12:17
*** glikson has joined #openstack-dev12:18
*** wiliam has joined #openstack-dev12:22
*** dguitarbite has joined #openstack-dev12:24
*** markvoelker has quit IRC12:24
*** jcoufal_ has joined #openstack-dev12:26
*** ewindisch has joined #openstack-dev12:28
*** lucasagomes has joined #openstack-dev12:28
*** ewindisch has quit IRC12:29
*** kenperkins has quit IRC12:29
*** jcoufal has quit IRC12:30
*** jruzicka has quit IRC12:30
*** athomas has quit IRC12:30
*** Yada has quit IRC12:31
*** Yada has joined #openstack-dev12:31
*** apevec has quit IRC12:31
*** anteaya has joined #openstack-dev12:33
*** jruzicka has joined #openstack-dev12:34
openstackgerritA change was merged to openstack/ceilometer: add links to return values from API methods  https://review.openstack.org/2666312:36
*** redbeard2 has quit IRC12:37
*** alexxu has joined #openstack-dev12:39
openstackgerritA change was merged to openstack/ceilometer: Remove "extras" again  https://review.openstack.org/2812712:40
openstackgerritA change was merged to openstack/quantum: Only map nicira_nvp_plugin module if installed  https://review.openstack.org/2809712:40
*** rnirmal has joined #openstack-dev12:41
*** bknudson has joined #openstack-dev12:45
*** mkollaro has joined #openstack-dev12:47
*** athomas has joined #openstack-dev12:50
*** jasondotstar has joined #openstack-dev12:50
*** aloga_ has quit IRC12:53
*** jcoufal_ is now known as jcoufal12:55
*** wiliam has quit IRC12:56
*** wiliam has joined #openstack-dev12:56
*** erfanian has joined #openstack-dev12:57
*** vartom1114 has quit IRC12:57
*** lauria has joined #openstack-dev13:01
*** xga_ has joined #openstack-dev13:01
*** wiliam has quit IRC13:02
*** johnthetubaguy has joined #openstack-dev13:03
*** wiliam has joined #openstack-dev13:04
*** xga has quit IRC13:05
*** stevemar has joined #openstack-dev13:05
*** stevemar has quit IRC13:06
*** eharney has joined #openstack-dev13:06
*** eharney is now known as Guest2666113:06
*** Guest26661 is now known as eharney13:06
*** eharney has joined #openstack-dev13:06
*** jayg|g0n3 is now known as jayg13:07
*** alunduil has quit IRC13:07
*** matiu has quit IRC13:08
*** dprince has joined #openstack-dev13:10
*** wiliam has quit IRC13:14
*** wiliam has joined #openstack-dev13:15
*** ayoung has quit IRC13:17
*** matelakat has quit IRC13:18
*** ashwini has joined #openstack-dev13:20
*** xga_ has quit IRC13:22
*** xga_ has joined #openstack-dev13:22
*** wiliam has quit IRC13:23
*** wiliam has joined #openstack-dev13:25
*** lauria has quit IRC13:25
*** READ10 has joined #openstack-dev13:27
*** jecarey has joined #openstack-dev13:28
*** jasondotstar has quit IRC13:29
*** dolphm has joined #openstack-dev13:29
*** ondergetekende has quit IRC13:30
*** xga has joined #openstack-dev13:30
*** hewbrocca has quit IRC13:31
*** hewbrocca has joined #openstack-dev13:31
*** xga__ has joined #openstack-dev13:32
*** pabelanger has quit IRC13:32
*** xga_ has quit IRC13:33
*** kbringard has joined #openstack-dev13:34
simomarkmc: how are multi-project spanning changes handled ?13:35
markmcsimo, got an example in mind ?13:35
*** xga has quit IRC13:35
*** rahmu has joined #openstack-dev13:35
simoI have the rpc changes for oslo-incubator and would need one small patch in nova to be able to use them as well patches in keystone to have a server component13:35
*** radez_g0n3 is now known as radez13:36
markmcok, well, my assumption would be that adding the code wouldn't enable it for existing configurations13:36
markmcso, you'd add the code into oslo-incubator13:36
simoI am wondering if I need to have all work ready upfront and then do reviews in parallel or if I should start with the oslo-incubator patches now even if the server part is not ready (and might required additional changes to the oslo part)13:36
*** aelkikhia has joined #openstack-dev13:36
markmcthen use update.py to sync it into nova, that would be a separate commit13:36
markmcin the commit which syncs the code, you'd make the small nova change you need13:36
markmcthen you'd do similar for keystone13:36
markmcthen you'd tell people to try it out :)13:37
*** egallen has quit IRC13:37
markmcsimo, best is to put up anything you have and maybe mark as "Work In Progress" until it's nearly all lined up13:37
markmcsimo, anyone can see and comment on WIP reviews, but they don't show up in people's review queues and can't get approved13:38
simomarkmc: what do you mean by 'put' ? :)13:38
simoas in push to a git repo ?13:38
markmcsimo, but nova/keystone patches to go with the oslo-incubator patches would make the job of oslo reviewer's easier13:38
markmcsimo, yeah, there's a git-review tool for pushing to gerrit13:38
simomarkmc: oslo patches are pretty well self contained and have tests that show exactly how they are used, so I am not too concerned13:39
markmcsimo, there's a git-review flag to mark the patch as work-in-progress13:39
simomarkmc: I have patches on my git trees13:39
markmcsimo, ok13:39
*** cloudchimp has joined #openstack-dev13:39
simomarkmc: never used gerrit yet13:39
markmcsimo, ok, I tell you what - create an oslo-incubator fork on github, push to a branch there and I'll take a look and advise13:39
simoI will have to eventually, I guess I am just putting it off as I don;t like gerrit that much for reviews, the few reviews I did through it were really painful13:40
*** egallen has joined #openstack-dev13:40
simomarkmc: does it have to be on github ? I do not use it, I have my trees on fedorapeople.org13:40
markmcsimo, that's fine too13:40
*** xga_ has joined #openstack-dev13:40
simook then you can look at it here: http://fedorapeople.org/cgit/simo/public_git/oslo.git/log/?h=shared-key-msg13:41
*** jasondotstar has joined #openstack-dev13:41
simomarkmc: I also have a nova.git tree with the small change needed there (untested still)13:41
simomarkmc: and I am going to start something in the keystone.git tree for the key server part13:42
simomarkmc: the oslo-incubator changes in the oslo.git tree however work so far (all crypto and common tests pass13:42
simothey only lack the code to fetch SEK tickets as the server is still missing, but I have fake data in there to run the tests13:43
markmcsimo, cool, those two oslo-incubator patches look totally reasonable to submit was a WIP review13:43
markmcsimo, https://wiki.openstack.org/wiki/Gerrit_Workflow13:43
openstackgerritA change was merged to openstack/tempest: Added 2 user related testcases for Keystone V3API  https://review.openstack.org/2068813:43
*** bmclaughlin has joined #openstack-dev13:44
*** xga__ has quit IRC13:44
simomarkmc: ok I'll go ahead and start pushing those13:44
*** galstrom is now known as galstrom_zzz13:45
simomarkmc: do I need to notify you or someone else once done ?13:45
*** eharney has quit IRC13:45
markmcsimo, since it's a WIP review, it doesn't appear in people's queues13:45
markmcsimo, so it would make sense to add a few people to the review (there's an entry box for that)13:45
*** drewlander has joined #openstack-dev13:45
simook13:46
simomarkmc: you in ?13:46
markmcsimo, and also follow up on your mailing list thread with a link to your reviews13:46
*** eharney has joined #openstack-dev13:46
simoack13:46
*** aelkikhia has left #openstack-dev13:46
simomais git-review available in fedora ?13:46
*** aelkikhia has joined #openstack-dev13:47
markmcsimo, should be13:47
markmcsimo, btw, we're having a meeting about messaging in 15 minutes on #openstack-meeting13:47
simojoining13:47
markmcgreat13:47
*** xga_ has quit IRC13:48
*** andrewbogott_afk is now known as andrewbogott13:48
*** mkollaro has quit IRC13:49
*** prekarat has quit IRC13:50
*** pabelanger has joined #openstack-dev13:50
*** ewindisch has joined #openstack-dev13:52
simomado I need to create a blueprint for message security ? or should I use one of those already create in the past for rpc signing ?13:52
*** dguitarbite has quit IRC13:53
*** sudorandom has joined #openstack-dev13:53
simomarkmc: ^13:53
markmcsimo, https://blueprints.launchpad.net/oslo/+spec/trusted-messaging :)13:54
*** brunnhilde has joined #openstack-dev13:54
simook one of them then :)13:54
*** jimfehlig has joined #openstack-dev13:57
*** jecarey has quit IRC13:59
simomarkmc: uhmm I fear I have submitted it as a real review and not a draft14:00
* simo figures out how to undo that14:00
markmcsimo, that's fine, just press the "Work in Progress" button14:00
*** lauria has joined #openstack-dev14:00
markmcsimo, a draft review is different from a WIP review :)14:00
*** galstrom_zzz is now known as galstrom14:00
*** aeperezt has joined #openstack-dev14:01
*** jvrbanac has joined #openstack-dev14:01
simoah ok14:02
*** garyk has quit IRC14:03
*** glikson has quit IRC14:03
*** garyTh has joined #openstack-dev14:04
*** otherwiseguy has quit IRC14:04
*** alexxu has quit IRC14:05
*** markkropf has joined #openstack-dev14:07
*** wiliam has quit IRC14:07
*** sacharya has joined #openstack-dev14:07
*** portante|ltp has joined #openstack-dev14:08
*** jecarey has joined #openstack-dev14:08
*** dprince has quit IRC14:09
*** SpamapS has quit IRC14:11
*** russellb is now known as rustlebee14:11
*** trapni has quit IRC14:11
*** SpamapS has joined #openstack-dev14:11
*** SpamapS has joined #openstack-dev14:11
*** spzala has joined #openstack-dev14:12
*** bswartz has joined #openstack-dev14:13
*** xga has joined #openstack-dev14:17
*** anteaya is now known as aunteaya14:18
*** wiliam has joined #openstack-dev14:19
*** cp16net is now known as cp16net|away14:21
*** beagles is now known as seagulls14:21
*** navid_ has joined #openstack-dev14:21
*** dansmith is now known as Steely_Dan14:21
*** sacharya has quit IRC14:23
*** apevec has joined #openstack-dev14:23
*** markmcclain has joined #openstack-dev14:24
*** wiliam has quit IRC14:24
*** wiliam has joined #openstack-dev14:26
*** mdenny has joined #openstack-dev14:26
*** FunnyLookinHat has joined #openstack-dev14:27
openstackgerritA change was merged to openstack/tempest: Removed duplicate usage of TempestConfig()  https://review.openstack.org/2649414:28
*** trapni has joined #openstack-dev14:28
*** gordc has quit IRC14:28
*** egallen has quit IRC14:28
*** cp16net|away is now known as cp16net14:30
*** pabelanger has quit IRC14:30
openstackgerritA change was merged to openstack/tempest: Migrate to pbr from openstack.common.setup.  https://review.openstack.org/2766414:31
*** dolphm has quit IRC14:32
*** pabelanger has joined #openstack-dev14:32
*** eharney has quit IRC14:33
*** david-lyle_ is now known as david-lyle14:33
*** pabelanger is now known as nubbie14:33
*** nunosantos has joined #openstack-dev14:34
openstackgerritA change was merged to openstack-dev/grenade: Cut over to grizzly -> havana  https://review.openstack.org/2807114:35
*** eharney has joined #openstack-dev14:35
*** dolphm has joined #openstack-dev14:36
*** tayyab has quit IRC14:37
*** sdague is now known as shindig14:38
*** PaulM has quit IRC14:38
*** wiliam has quit IRC14:39
*** wiliam has joined #openstack-dev14:40
*** mrunge has quit IRC14:42
*** dguitarbite has joined #openstack-dev14:43
*** datsun180b has joined #openstack-dev14:44
*** wiliam has quit IRC14:47
openstackgerritA change was merged to openstack/nova: Fix key error when create lpar instance failed  https://review.openstack.org/2758214:48
openstackgerritA change was merged to openstack/quantum: Imported Translations from Transifex  https://review.openstack.org/2814714:48
*** wiliam has joined #openstack-dev14:48
*** gordc has joined #openstack-dev14:49
lauriamordred: Hi Monty, have you had a chance to look at may flake8 extension WIP yet? https://review.openstack.org/#/c/27920/ thanks14:49
mordredlauria: gah. yes. and I need to make a patch to hacking to make it work the way you want it to14:50
mordredlauria: you _you_ could... :)14:50
mordredbut I'll try to get to that today14:50
*** anuj has joined #openstack-dev14:50
lauriamordred: thanks. Please ping me when you have it, great.14:51
*** markwash has quit IRC14:51
*** baba has joined #openstack-dev14:52
anujHi. I had a question related to how requests are routed in Nova14:52
*** megha has quit IRC14:52
*** galstrom is now known as galstrom_zzz14:53
*** jaypipes has quit IRC14:54
*** anuj has left #openstack-dev14:58
*** sacharya has joined #openstack-dev14:58
*** lauria has quit IRC14:58
*** cp16net is now known as cp16net|away14:59
*** lauria has joined #openstack-dev14:59
dolphmapevec: reading back in irc from yesterday -- you still need a 2013.1.1 in keystone i assume?14:59
*** crandquist has joined #openstack-dev14:59
*** jaypipes has joined #openstack-dev15:00
*** xga has quit IRC15:00
*** xga has joined #openstack-dev15:00
*** nunosantos has quit IRC15:00
*** nunosantos has joined #openstack-dev15:01
*** flaper87 has quit IRC15:03
*** ewindisch has quit IRC15:03
*** reidrac has left #openstack-dev15:04
*** flaper87 has joined #openstack-dev15:05
ekarlsodolphm: how goes policy stuff ?15:06
dolphmekarlso: can you be more specific? lol15:06
apevecdolphm, thanks, I found ttx's scripts and created .1 milestones in all projects15:07
ttxapevec: you can do that manually too15:07
apevecdolphm, I just cloudn't find it in web ui15:07
apevecttx, please tell me where15:08
dolphmttx: apevec: i'm ready to push a manual tag, should i not?15:08
ttxapevec: https://launchpad.net/nova/grizzly "create milestone"15:08
ekarlsodolphm: rbac / finegrained15:08
ttxdolphm: a manual tag to what ?15:08
apevecdolphm, tag?15:08
dolphmttx: tag 2013.1.1?15:08
apevecdolphm, ah not yet15:08
apevecrelease is May 9th15:09
ttxdolphm: you probably shouldn't15:09
apevecwe're not in freeze but still might have critical fixes if found15:09
apevecs/not/now/15:09
dolphmttx: k; i just saw an ask from apevec from yesterday that appeared to go unanswered15:09
ttxdolphm: as a general rule, you shoudl only push tags to the client projects15:09
dolphmapevec: we have an issue in keystone that i'd love to see make the cut, but it's blurring the line between bug fix and feature change15:09
ttxand let the release dudes handle the server part15:09
*** maoy has joined #openstack-dev15:09
apevecdolphm, which one? is there lp# ?15:10
ttxapevec: anything else you need help with ?15:10
dolphmtrying to find a solution that minimized impact15:10
*** galstrom_zzz is now known as galstrom15:10
dolphmapevec: there may actually be dupes, but this is one https://bugs.launchpad.net/keystone/+bug/117583815:10
uvirtbotLaunchpad bug 1175838 in keystone "LDAP Backend  breaks when no attribute available for domain" [Critical,New]15:10
apevecttx, should be good for now15:10
*** Daviey has quit IRC15:10
*** wiliam has quit IRC15:10
*** dprince has joined #openstack-dev15:10
*** psedlak has quit IRC15:11
davidkranzmarkmc: Who has +2 on tempest stable branches?15:12
*** wiliam has joined #openstack-dev15:12
apevecdavidkranz, looks like stable-maint has15:13
apevecdavidkranz, is that about https://review.openstack.org/#/c/28157/ ?15:13
*** rcleere has joined #openstack-dev15:13
davidkranzapevec: Yes15:13
markmcapevec, davidkranz, it should be tempest-core, if it's not I think that's a bug15:14
apevecmarkmc, it's a bug then15:14
davidkranzSean is going to sort it out with infra.15:14
markmcgreat15:14
*** kmartin has quit IRC15:14
markmcwe've been over this a few times now :)15:14
davidkranzmarkmc: :)15:15
*** katylava has joined #openstack-dev15:15
*** shindig is now known as sdague15:15
*** jeblair is now known as corvus15:17
simomarkmc: what was the procdeure to add dependencies to oslo-incubator? (nee PyCrypto)15:18
markmcsimo, this should help: https://wiki.openstack.org/wiki/Requirements15:18
simothanks15:19
*** lauria_ has joined #openstack-dev15:19
*** malini1 has joined #openstack-dev15:19
*** lauria has quit IRC15:19
*** lauria_ is now known as lauria15:19
*** jecarey_ has joined #openstack-dev15:19
sdaguemarkmc: you want to also leave stable-maint in stable branch voting for tempest? I can see a case where stable tempest might need fixing by stable-maint15:20
*** jecarey has quit IRC15:20
markmcsdague, so long as tempest-core has +2 too, that'd be fine15:20
sdagueyep, ok, let me figure out how to fix that15:20
markmcsdague, no point in stable-maint having exclusive +2 for something they're not looking at15:20
markmcsdague, cool15:21
sdagueyep, agreed :)15:21
*** mordred is now known as TheRonin15:21
sdaguehonestly, we just haven't had backports until today :) so everyone scratched their head when they couldn't +2 it15:21
*** nunosantos has quit IRC15:22
simomarkmc: uh pycrypto is already there ... do I need to add it to test-requires if it is used in tests ?15:23
markmcsimo, yeah15:23
apevecm15:24
simoso test builders don't source the pip-requires file ?15:24
apevecoops15:24
simoI do not explictly reference the module in a test but the test imports rpc/crypto.py that imports it15:24
apevecmarkmc, simo - I see in tox.ini: deps = -r{toxinidir}/tools/pip-requires15:25
apevec       -r{toxinidir}/tools/test-requires15:25
apevecso should be enough in pip-requires15:25
simoand it is ...15:25
markmcyeah, sorry15:25
simois there project specific requires ?15:25
markmcI thought it wasn't in pip-requires15:26
markmcah15:26
markmcneeds to be in oslo-incubator/tools/*-requires too15:26
simoah yeah tools/pip-requires in oslo-incubator too15:26
simoyup15:26
simook that makes it easyer :)15:26
markmcadding it to requirements/tools/*-requires is just to get it into the pypi mirror15:26
simoyeah15:27
simook sorted out, tx15:27
markmcgreat15:27
simomarkmc: in RHEL Pycrypto is 2.0.1 but in requirements min version in >=2.1.0, is that somethign we need to care about ?15:28
simoapevec: ^15:28
markmcsimo, it's worth finding out whether OpenStack generally can use 2.0.1 happily15:28
markmcsimo, if so, the minimum version could be lowered15:28
simomarkmc: I will raise the issue internally, I guess so someone can find out15:28
markmcsimo, if not, it's not a huge deal - we can use a newer version than the one that's in core RHEL15:29
simoyup15:29
apevecsimo, iirc pbrady patched something in glance so it can work with older pycrypto15:29
apevecso check w/ him15:29
simoack15:30
openstackgerritA change was merged to openstack/nova: Add missing tests for db.floating_ip_* methods  https://review.openstack.org/2794315:30
*** sdague is now known as shindig15:30
*** navid_ has left #openstack-dev15:30
*** rahmu has quit IRC15:30
*** utlemming has joined #openstack-dev15:31
*** NobodyCam is now known as Blart_Versenwald15:31
*** kmartin has joined #openstack-dev15:34
openstackgerritA change was merged to openstack/nova: Remove race condition (in FloatingIps)  https://review.openstack.org/2346615:34
*** clarkb is now known as ngihneni15:34
*** terryh has joined #openstack-dev15:34
*** zoresvit has quit IRC15:34
*** wiliam has quit IRC15:34
*** terryh has quit IRC15:35
*** terryh has joined #openstack-dev15:35
*** wiliam has joined #openstack-dev15:36
*** dguitarbite has quit IRC15:37
*** markmcclain has quit IRC15:38
*** portante|afk is now known as portante15:38
*** markmcclain has joined #openstack-dev15:39
*** markmcclain has quit IRC15:39
*** athomas has quit IRC15:39
*** colinmcnamara has joined #openstack-dev15:41
*** devananda is now known as deva15:41
*** bdpayne has joined #openstack-dev15:42
openstackgerritA change was merged to openstack/nova: nova coverage creates lots of empty folders  https://review.openstack.org/2704915:43
*** navid_ has joined #openstack-dev15:43
*** GheRivero is now known as qwerty15:43
*** qwerty is now known as Guest524315:43
*** maoy_ has joined #openstack-dev15:44
*** maoy has quit IRC15:45
*** maoy_ is now known as maoy15:45
*** devoid has joined #openstack-dev15:45
*** mrodden has quit IRC15:46
apeveceglynn, jd__ - I've created https://launchpad.net/ceilometer/+milestone/2013.1.115:46
*** malini1 has quit IRC15:47
eglynnapevec: thank you sir!15:47
apeveceglynn, you can target bugs which you want fixed on stable15:47
openstackgerritA change was merged to openstack/nova: fix broken WSDL logic  https://review.openstack.org/2746315:47
eglynnapevec: will do!15:47
*** Daviey has joined #openstack-dev15:47
alexpilottiarosen: ping15:48
apeveceglynn, do you see "Target to series" when looking at bug in LP?15:48
jd__apevec: thanks :)15:48
*** athomas has joined #openstack-dev15:49
eglynnapevec: yes, but I've setting Milestone field (should both be set?)15:49
apeveceglynn, target to grizzly first, then set 2013.1.1 milestone on that bug branch15:50
apevecmain branch is for the next release15:50
simoin gerrit how do I save a comment w/o making it a review ?15:51
simo(it's a reply)15:51
eglynnapevec: got it, thanks!15:51
apevecsimo, just keep score at 015:51
apevecafaik you have to press "Review" in order to save comments15:51
simoodd15:52
simook15:52
*** jcoufal has quit IRC15:52
*** mmagr has quit IRC15:53
*** xga has quit IRC15:55
*** yolanda has quit IRC15:56
*** Ryan_Lane has joined #openstack-dev15:56
*** wiliam has quit IRC15:57
*** electrichead has joined #openstack-dev15:57
*** yolanda has joined #openstack-dev15:57
*** wiliam has joined #openstack-dev15:57
*** mkollaro has joined #openstack-dev15:58
*** Blart_Versenwald has quit IRC15:58
*** navid_ has left #openstack-dev15:59
*** alop has joined #openstack-dev16:00
*** portante is now known as portante|afk16:00
*** trapni has quit IRC16:01
*** johnthetubaguy has quit IRC16:03
*** malini1 has joined #openstack-dev16:04
*** yolanda has quit IRC16:04
*** prekarat has joined #openstack-dev16:05
*** portante|ltp has quit IRC16:05
*** utlemming has quit IRC16:05
*** ashwini has quit IRC16:06
*** yolanda has joined #openstack-dev16:06
*** wiliam has quit IRC16:06
*** prekarat has quit IRC16:07
*** prekarat has joined #openstack-dev16:08
*** jgallard has quit IRC16:09
*** susanne-balle has quit IRC16:10
*** wiliam has joined #openstack-dev16:10
*** susanne-balle has joined #openstack-dev16:10
*** gary_th has joined #openstack-dev16:11
*** garyTh has quit IRC16:13
*** jpich has quit IRC16:14
*** lauria has quit IRC16:14
*** lauria has joined #openstack-dev16:16
*** wiliam has quit IRC16:16
*** ijw has quit IRC16:18
*** fbo_ has quit IRC16:19
*** hemnafk is now known as hemna16:19
*** crandquist has quit IRC16:20
*** jd__ is now known as Jenkins`16:21
*** Jenkins` is now known as jd__16:21
*** crandquist has joined #openstack-dev16:22
*** gyee has joined #openstack-dev16:22
openstackgerritA change was merged to openstack/nova: Update oslo-incubator import.  https://review.openstack.org/2809916:25
*** digitalsanctum has quit IRC16:26
*** wiliam has joined #openstack-dev16:29
openstackgerritA change was merged to openstack/nova: Update our import of oslo's processutils.  https://review.openstack.org/2812316:30
*** deva has quit IRC16:30
*** amir1 is now known as asadoughi16:31
*** wiliam has quit IRC16:32
*** jecarey_ has quit IRC16:32
*** jecarey has joined #openstack-dev16:33
*** wiliam has joined #openstack-dev16:33
*** colinmcnamara has quit IRC16:37
simodoes gerrit rebuild automatically when you update patches ?16:40
*** markmcclain has joined #openstack-dev16:40
apevecsimo, jenkins does, it watches for new patch sets and runs "check" jobs16:41
simoah ok it was just slower I guess16:41
simoI see finally a new -1 :-)16:41
*** Guest5243 is now known as GheRivero-afw16:42
*** wiliam has quit IRC16:43
apevecsimo, here are some details and further links about Gerrit/Jenkins integration https://wiki.openstack.org/wiki/GerritJenkinsGithub#Test_Failures16:43
*** anniec has joined #openstack-dev16:43
*** vmilev has joined #openstack-dev16:43
simoapevec: excellent thanks16:44
*** wiliam has joined #openstack-dev16:45
*** derekh has quit IRC16:45
*** andrew_plunk has quit IRC16:46
*** gyee has quit IRC16:46
*** kenperkins has joined #openstack-dev16:48
*** ashwini has joined #openstack-dev16:49
*** gyee has joined #openstack-dev16:50
*** fbo has joined #openstack-dev16:51
*** aelkikhia has quit IRC16:52
*** Ryan_Lane has quit IRC16:52
*** cp16net|away is now known as cp16net16:54
*** reed has joined #openstack-dev16:55
*** comstud is now known as bearhands16:55
*** wiliam has quit IRC16:59
*** jdurgin1 has quit IRC16:59
*** esp has joined #openstack-dev16:59
*** esp has left #openstack-dev17:00
*** wiliam has joined #openstack-dev17:00
*** markwash has joined #openstack-dev17:01
*** Ryan_Lane has joined #openstack-dev17:01
*** andrewbogott is now known as andrewbogott_afk17:05
*** yolanda has quit IRC17:06
*** yidclare has quit IRC17:07
*** topol has joined #openstack-dev17:08
*** yidclare has joined #openstack-dev17:09
*** cp16net is now known as cp16net|away17:12
*** sacharya has quit IRC17:12
*** lauria_ has joined #openstack-dev17:13
*** lauria has quit IRC17:13
*** lauria_ is now known as lauria17:13
*** jdurgin1 has joined #openstack-dev17:13
*** wiliam has quit IRC17:15
openstackgerritA change was merged to openstack/nova: Adds --addn-hosts to the dnsmasq arg list  https://review.openstack.org/2810817:17
openstackgerritA change was merged to openstack/cinder: Check that volume is at least minDisk size.  https://review.openstack.org/2803017:17
*** jog0 has joined #openstack-dev17:17
*** nunosantos has joined #openstack-dev17:19
*** wiliam has joined #openstack-dev17:19
*** corXi has quit IRC17:20
*** galstrom is now known as galstrom_zzz17:20
dolphmtopol: regarding the default domain in ldap... http://lists.openstack.org/pipermail/openstack-stable-maint/2013-May/000611.html17:24
*** galstrom_zzz is now known as galstrom17:24
dolphmtopol: is there a backportable approach in review?17:24
*** ladquin has joined #openstack-dev17:26
*** wiliam has quit IRC17:26
*** vmilev has quit IRC17:26
*** vmilev_ has joined #openstack-dev17:26
topoldolphm, give me 5 mins17:28
*** ladquin is now known as noisylaura17:28
dolphmtopol: np; ayoung file (another?) bug on the issue... i swear it's a dupe but can't find the original17:28
*** edmund has joined #openstack-dev17:29
dolphmtopol: new one- https://bugs.launchpad.net/keystone/+bug/117583817:29
uvirtbotLaunchpad bug 1175838 in keystone "LDAP Backend  breaks when no attribute available for domain" [Critical,New]17:29
*** wiliam has joined #openstack-dev17:30
*** nubbie has quit IRC17:31
openstackgerritA change was merged to openstack/cinder: Remove old_name from kwargs when using IET helper.  https://review.openstack.org/2793817:32
openstackgerritA change was merged to openstack/cinder: Fix LHN driver to allow backend name configuration  https://review.openstack.org/2783717:32
openstackgerritA change was merged to openstack/swift: Skip cname_lookup when host is an IP address  https://review.openstack.org/2742817:32
*** galstrom is now known as galstrom_zzz17:34
*** mkerrin has quit IRC17:35
*** kenperkins has quit IRC17:35
*** sarob has joined #openstack-dev17:36
*** nubbie has joined #openstack-dev17:36
*** Ryan_Lane has quit IRC17:39
*** zb has joined #openstack-dev17:40
*** sacharya has joined #openstack-dev17:40
*** kmartin has quit IRC17:42
katylavathis docstring is wrong, isn't it? https://github.com/openstack/python-cinderclient/blob/master/cinderclient/v2/volumes.py#L279 -- should say "dict of key/value pairs" not "list of keys", correct?17:42
openstackgerritA change was merged to openstack/cinder: Fixes 3par driver methods that were double locking  https://review.openstack.org/2811217:42
apevecdolphm, maybe this one? https://bugs.launchpad.net/keystone/+bug/116872617:42
uvirtbotLaunchpad bug 1168726 in keystone "default_domain_id breaks the ability to map keystone  to ldap" [Undecided,In progress]17:42
*** vmilev_ has quit IRC17:42
*** timjr has joined #openstack-dev17:42
*** mkollaro has quit IRC17:43
*** vmilev_ has joined #openstack-dev17:43
*** zaneb has quit IRC17:43
*** reed has quit IRC17:43
dolphmapevec: yep! that's it, thanks17:43
apevecthat one has a patch in gerrit, but it failed in Jenkins17:44
*** epende_ has quit IRC17:44
topoldolphm, pretty sure its a dupe17:45
dolphmtopol: marked as such17:45
*** Mandell has joined #openstack-dev17:46
*** salgado has joined #openstack-dev17:47
*** kmartin has joined #openstack-dev17:47
*** salgado has quit IRC17:48
*** comptona has joined #openstack-dev17:49
*** comptona has left #openstack-dev17:49
*** salgado has joined #openstack-dev17:49
*** salgado has joined #openstack-dev17:49
*** jvrbanac has quit IRC17:50
*** mkollaro has joined #openstack-dev17:52
*** PaulM has joined #openstack-dev17:53
*** wiliam has quit IRC17:53
*** wiliam has joined #openstack-dev17:54
apevecshardy, does Heat team want/need 2013.1.1 stable release?17:54
*** pmcg has quit IRC17:54
apevecsame as Ceilo, it was incubating in Grizzly, so it's not covered by stable branch policy17:55
apevecCeilometer team is preparing backports and I'll help them with LP and release procedure17:56
apevecunofficially :)17:56
*** pmcg has joined #openstack-dev17:56
*** Ryan_Lane has joined #openstack-dev17:57
*** colinmcnamara has joined #openstack-dev17:57
*** markmcclain has quit IRC17:58
spzalatopol: Hi17:59
topoldolphm, plz ask your question to sahdev17:59
topolon the domain17:59
*** rcleere has quit IRC17:59
topolspzala17:59
spzaladolphm: Hi!18:00
dolphmtopol: spzala: o/18:01
dolphmspzala: i knew your patch was floating around, but i haven't followed it too closely... was just looking for an update on the state of things relative to a stable/grizzly backport for 2013.1.118:02
*** wiliam has quit IRC18:02
spzaladolphm: yes this patch is candidate for backporting https://review.openstack.org/#/c/25329/18:03
dolphmspzala: this is only half baked (just started a couple minutes ago), but this is the approach i was referring to in my comment- http://paste.openstack.org/raw/36785/18:03
*** sarob_ has joined #openstack-dev18:03
spzaladolphm: ayound and also Henry too were OK with that approach for a quick fix18:03
*** wiliam has joined #openstack-dev18:04
*** cdub has quit IRC18:04
spzaladolphm: but yes agree it's a quick fix for the issue but yes, not a fully baked18:04
dolphmspzala: sorry, 25329 is not viable as a backport at all, that's just a new feature18:04
*** salgado has quit IRC18:04
spzalaoops sorry18:04
spzaladolphm: I was too quick to copy paste18:04
dolphmspzala: wrong review?18:04
spzaladolphm: yes, sorry I meant to say this one https://review.openstack.org/#/c/27364/18:05
dolphmwhew, was hoping that was the case :)18:05
spzaladolphm: for backporting18:05
*** sarob__ has joined #openstack-dev18:05
spzaladolphm: ha ha :)18:05
topol:-)18:05
*** cdub has joined #openstack-dev18:06
dolphmspzala: thoughts on the diff i posted above?18:06
*** rcleere has joined #openstack-dev18:06
*** sarob has quit IRC18:06
*** dhellmann is now known as dhellmann-away18:06
*** cdub_ has quit IRC18:07
*** sarob_ has quit IRC18:07
*** gyee has quit IRC18:07
*** cdub_ has joined #openstack-dev18:07
spzaladolphm: agree that ayoung's new bug is sort of dup i..e https://bugs.launchpad.net/keystone/+bug/117583818:07
uvirtbotLaunchpad bug 1175838 in keystone "LDAP Backend  breaks when no attribute available for domain (dup-of: 1168726)" [Critical,New]18:07
uvirtbotLaunchpad bug 1168726 in keystone "default_domain_id breaks the ability to map keystone  to ldap" [Critical,In progress]18:07
dolphmspzala: already closed it18:08
spzaladolphm: oh..18:08
spzaladolphm: sorry but that you mean when you said "thoughts on the diff I posted above"? I thought you were referring to the dup defect ..something you were talking to topol18:09
*** dprince has quit IRC18:09
dolphmtopol: spzala: were there any other required schema changes moving from folsom to grizzly?18:09
*** wiliam has quit IRC18:09
dolphmspzala: i meant this http://paste.openstack.org/raw/36785/18:09
spzaladolphm: I don't think so except that one18:10
*** wiliam has joined #openstack-dev18:11
spzaladolphm: oh missed that one .. yes that looks pretty good18:12
spzaladolphm: should we have this "     def get_domain(self, domain_id):" as "     def get_domain(self) "18:13
spzaladolphm: just a though so that no one try to get something we don't support18:13
*** m4dcoder has joined #openstack-dev18:13
dolphmspzala: it still has to expose the driver's full interface, so no18:13
*** jecarey has quit IRC18:13
spzaladolphm: OK, cool18:13
*** jecarey has joined #openstack-dev18:14
m4dcoderif there are multiple subnets in a network, when creating a server via nova client, is there an option to specify the server to use a specific subnet?  i only see option to specify a net-id for a nic.  but when passing a subnet id into net-id, it's not recognized.18:16
*** dontalton has joined #openstack-dev18:16
spzaladolphm: what's the action item for me?18:16
*** rnirmal has quit IRC18:17
*** wiliam has quit IRC18:17
topoldolphm, I htink spzala is trying what he needs to do to get this blessed by you18:17
dolphmtopol: define "this" ;)18:17
dolphmspzala: i wasn't sure if i explained my idea in your review very clearly, so i figured i'd illustrate18:18
*** mrodden has joined #openstack-dev18:18
*** devananda has joined #openstack-dev18:18
*** wiliam has joined #openstack-dev18:18
topolthis = rewrite the code to make you happy18:18
dolphmspzala: i have no idea how much more work is involved to make this go (test changes?) or if any config would suddenly be useless18:18
spzaladolphm: I was refering action item in reference to the changes you suggested ?18:18
dolphmtopol: i also want to make sure ldappers are happy18:19
*** markmc has quit IRC18:19
topolfor the backport bug fix ldapers want it not to be broken like it is now18:19
spzaladolphm: thanks for illustrating :) .. I was worried about the tests... we will need "pass" many domain specific tests in test ldap backend18:20
*** otherwiseguy has joined #openstack-dev18:20
dolphmtopol: does cutting domain crud completely from grizzly qualify as happy? obviously spzala's patch tries to maintain that18:20
*** johndescs has left #openstack-dev18:22
dolphmtopol: spzala: i'd be nice to know if there were any 2013.1.0 ldap users that have already changed their schema to support domains :(18:23
dolphmi'm not sure how this would impact them (maybe only if they're already using multi-domain support?)18:24
topoldolphm, so let me make sure I understand.18:28
topolI think we want to set the tone of one domain per ldap. That's what we discussed previously.18:29
*** mkollaro1 has joined #openstack-dev18:29
*** mkollaro has quit IRC18:29
topolI don't think anyone has it working the way it is today so I don't think we are breaking anyone. Frankly it was depressing how devstack and horizon would not work as it wasa today.18:30
spzaladolphm: agree.. my thinking is probably none18:30
topolSo I think we can put the patch in and not maintain the crud interface for domain.18:31
dolphmspzala: i know jcannava got LDAP/AD working with multi-domain support, but he wasn't starting from an existing schema18:31
dolphmjcannava: unless you also wrote something to migrate schemas?18:31
*** colinmcnamara has quit IRC18:31
*** prekarat has quit IRC18:31
topolWe can  delude ourselves into thinking we shouldnt pull the domain crud api out. But we dont have a good was to design it /support as a backportable fix.18:32
topols/was/way18:33
topolWe could always ad it back later if learn from stakeholders the right way to add  it in18:33
topols/ad/add18:33
topoldolphm, make sense?18:33
*** wiliam has quit IRC18:33
*** prekarat has joined #openstack-dev18:34
*** mkollaro1 has quit IRC18:35
*** mkollaro has joined #openstack-dev18:35
*** colinmcnamara has joined #openstack-dev18:35
*** cp16net|away is now known as cp16net18:35
*** wiliam has joined #openstack-dev18:36
*** vipul is now known as vipul|away18:37
*** vipul|away is now known as vipul18:37
*** eharney has quit IRC18:37
*** zzs has joined #openstack-dev18:38
*** anniec has quit IRC18:39
*** zzs has left #openstack-dev18:40
dolphmtopol: trying to parse all the find/replaces, hold on18:40
*** tzumainn has quit IRC18:41
dolphmtopol: if ya'll like this approach, lets get it into master, and then we'll make a lot of noise about backporting it18:42
*** sarob__ has quit IRC18:42
dolphm(whatever we want to backport here, we'll probably need to make a lot of noise about it)18:42
*** sarob has joined #openstack-dev18:42
*** cdub has quit IRC18:43
*** cdub has joined #openstack-dev18:43
*** frozencemetery has joined #openstack-dev18:44
*** gordc has quit IRC18:45
*** stevemar has joined #openstack-dev18:45
*** wiliam has quit IRC18:46
*** sarob has quit IRC18:47
topoldolphm,  so the reason I don't think people are using the domain crud on ldap is the following logic:   To be able to use it you would have necessarily needed to add the default domain to your ldap explicitly because we don't create it anywhere.  So if folks were trying it they would have gone berserk and been asking us for the work-around of manually adding that LDAP entry.  The only person...18:47
topol...I know who hit this and asked was someone I have working on a POC.   Thus, I don't think anyone else to the time yet to realize there was a bug and then put in the workaround, and then are now dependent on having domain crud for ldap.   Thus I am motivated to get it out as soon as possible before people start asking for the work around and then building on it. Make sense?18:47
*** markmcclain has joined #openstack-dev18:47
*** zbitter has joined #openstack-dev18:47
dolphmtopol: i agree, especially the asap part18:48
*** wiliam has joined #openstack-dev18:48
dolphmtopol: did you look at that diff, btw?18:48
topoldolphm, which diff?18:48
topolworking from memory on this?18:48
dolphmtopol: http://paste.openstack.org/raw/36785/18:49
*** zb has quit IRC18:50
*** digitalsanctum has joined #openstack-dev18:50
*** galstrom_zzz is now known as galstrom18:52
*** vipul is now known as vipul|away18:52
topoldolphm, I  *love* that diff.   It's like a contract killing that went incredibly well.   Body is already in the wall in giants stadium.18:53
dolphmtopol: haha18:53
spzaladolphm: on the diff - you have "self._append_default_domain(x)" -  wondering if you meant to say "self._set_default_domain(x)" ?18:53
dolphmspzala: probably, i literally stopped where i was at and pasted it18:53
dolphmspzala: continuing now18:53
*** wiliam has quit IRC18:54
spzaladolphm: :) OK, np. thanks.18:54
topolso dolphm, are you writing this patch yourself?18:54
dolphmtopol: i'm happy to do this part... when it gets ldap i might start crying18:54
dolphmldappy*18:54
dolphmor however you make ldap an adjective18:55
*** wiliam has joined #openstack-dev18:56
topoldolphm, so those 834 hours or TF2 really paid off.  my son had to type a report.  Was my job to help him.  I was dreading it cause I thought he would be a slow typer and would take forever.  Dude it turns out he types almost as fast as me. I couldnt believe it!!!18:56
topolspzala, will take whatever piece you want him to do18:56
topoldolphm, we were done in like 10-15mins.  It was outrageous18:57
dolphmtopol: WIN18:57
*** vipul|away is now known as vipul18:57
topolall those chats on bartering for stuff on TF2. Outrageous18:58
topol(yeah, I snoop on his chat history)18:58
dolphmhe's going to be a businessman in no time18:58
*** esp has joined #openstack-dev19:01
*** jecarey_ has joined #openstack-dev19:02
*** wiliam has quit IRC19:03
*** jecarey has quit IRC19:03
*** eglynn has quit IRC19:04
*** wiliam has joined #openstack-dev19:04
*** novas0x2a|laptop has joined #openstack-dev19:04
*** prekarat has quit IRC19:04
*** dhellmann-away is now known as dhellmann19:06
*** litong has joined #openstack-dev19:06
*** ociuhandu has quit IRC19:06
*** ociuhandu has joined #openstack-dev19:07
*** ociuhandu has quit IRC19:07
*** eharney has joined #openstack-dev19:08
*** apevec has quit IRC19:08
*** drewlander has quit IRC19:10
*** wiliam has quit IRC19:10
*** wiliam has joined #openstack-dev19:12
openstackgerritA change was merged to openstack/quantum: Fix usage of Query.all() and NoResultFound  https://review.openstack.org/2768719:13
openstackgerritA change was merged to openstack/quantum: Treat unbound port  https://review.openstack.org/2781519:13
*** aeperezt has quit IRC19:14
*** jruzicka has quit IRC19:14
jcannavadolphm: I got it working with existing ldap, but I made it work without modifying the existing schema which may not always be realistic19:17
dolphmtopol: spzala: ^19:18
dolphmjcannava: was that just with this? https://gist.github.com/dolph/5489485/raw/522f2e8803cddd5aec65e14282823bb5ad966984/keystone.conf19:18
dolphmjcannava: this was the AD config you sent me19:18
spzaladolphm: yep here19:19
*** wiliam has quit IRC19:19
topoldolphm, why did it not need a default domain explicitly created???19:19
dolphmjcannava: "without modifying the existing schema" is the part i thought was impossible19:19
jcannavadolphm: oh for AD, yes that is the one. but there is one schema change there which is that groupOfNames needs to be an available superior for Organizational Role19:19
jcannavaso then you are correct, I missed the AD part19:20
*** wiliam has joined #openstack-dev19:20
dolphmjcannava: was that different for read-only ldap?19:20
jcannavadolphm: yes for LDAP I didnt' have to modify the schema at all19:21
dolphmjcannava: how did you handle the default domain requirement?19:21
*** aeperezt has joined #openstack-dev19:22
jcannavacreated an OU domains and a default inside, but that isn't modifying the schema, just adding missing pieces. It would be different if you already use domains19:22
topolahh19:22
dolphmtopol: so, tell me we don't need to backport anything now? :D19:23
topolagreed. dolphm, its not a schema change, he added the missing entry19:23
dolphmour config out of the box just isn't ideal19:23
topolno, if you have a readonly ldap his solution wont work19:23
topolyour screwed19:23
dolphmtopol: read only from keystone's perspective, but that doesn't mean you can manually go poke at your ldap server19:24
spzalatopol: that's something similar to the work around we thought of19:24
topoldude, most real enterprise customers that is not allowed19:24
*** rnirmal has joined #openstack-dev19:24
dolphmtopol: nevermind the paperwork19:24
topolits a pain. the folks doing the openstack work know they cant change LDAP/AD at all.19:25
topolso as a first impression openstack gets a black eye for requiring ldap additions19:25
topolwith the fix you preserve the contract keystone provided in previous versions, which is an ability to map and make things work without first adding new stuff to ldap.  Even if manually and done once19:27
dolphmi understand19:27
spzaladolphm: I will need to step out to go to the pediatric office but please let me or topol know about piece(s) (as topol mentioned)  that I can work on with the domain work we are discussing.19:27
dolphmspzala: will do19:28
*** esp has left #openstack-dev19:28
dolphmspzala: i hope you feel better19:28
spzaladolphm: Thanks!19:28
spzaladolphm: HA HA19:28
*** gyee has joined #openstack-dev19:28
*** mgiles has joined #openstack-dev19:29
topoldolphm, whats funny is I dont know when your default domain stuff snuck in. If you recall I was testing the code in the devstack environment up until feature freeze. And I never hit this constarint.  When did this *slide* in ?19:29
*** mgiles has quit IRC19:29
spzaladolphm: thanks19:29
dolphmtopol: let me check19:29
*** mgiles has joined #openstack-dev19:29
dolphmtopol: https://blueprints.launchpad.net/keystone/+spec/default-domain19:30
openstackgerritA change was merged to openstack/tempest: Remove reference to dead script configure_tempest.sh  https://review.openstack.org/2818519:30
adam_gttx, thanks, got the membership but still unable to target anything to series19:31
*** cp16net is now known as cp16net|away19:31
*** alexpilotti has quit IRC19:31
dolphmtopol: there was also a patch to enforce domain existing/enabled, but that went in against a bug, not the bp19:31
dolphmtopol: that's probably where you were forced to pay attention :)19:31
*** jvrbanac has joined #openstack-dev19:31
topol dolphm, looks like it went in feb 1.  wast feature freeze earleier than that?19:32
topolGod I was dumb back then.... I should have kept testing...19:32
dolphmtopol: Feb 20 https://wiki.openstack.org/wiki/GrizzlyReleaseSchedule19:32
dolphmtopol: always test19:33
*** mkollaro has quit IRC19:35
topoldolphm, I still do understand. I checked my cal. Feature freeze hit when my wife and kid were out of town so I was able to work all night when ayoung was trying to finish trusts and gyee was trying to finish pluggable auth. I think that was around Feb 20 or so. I still was testing then.  Your stuff went in around feb 1. I still dont get how I missed this19:36
*** jvrbanac has quit IRC19:37
topols/do/don't19:37
topoldidnt you have your nightmare sermon around feb 20 or so???19:37
*** pcm__ has quit IRC19:37
topolmaybe feb 27.  my family got back feb 2719:38
dolphmtopol: that's what i was saying about the enforcement patch... we had a bug (probably going into FF) that domains were not enforced by auth19:38
*** alunduil has joined #openstack-dev19:39
topoldolphm, aaahhhh. when did that go in?19:39
dolphmtopol: https://bugs.launchpad.net/keystone/+bug/113023619:39
uvirtbotLaunchpad bug 1130236 in keystone "Domains are not validated on authentication" [High,Fix released]19:40
*** sandywalsh has quit IRC19:40
*** mjfork has quit IRC19:40
topolin anay case, did you ask jcannava if are approach going fwd breaks him.  Given he put in a workaround equivalent to our proposed fix, I dont think we are breaking him. He's just real smart :-)19:41
dolphmauthored on feb 19th, merged on **mar** 20th19:41
*** mjfork has joined #openstack-dev19:41
dolphmtopol: jcannava will test whatever patch we come up with before we merge it, right jcannava? :D19:41
topoldude....really...  I get to fall on my sword for a mar 20 merge....  dang.... :-) this like new openstacker hazing :-)19:42
gyee+1 on hazing!19:43
topolthank you gyee may I have another19:43
gyeetopol, you don't want to know what they did to me :)19:43
*** m4dcoder has quit IRC19:43
dolphmtopol: sure, but it's going to be a surprise this time19:43
*** sarob has joined #openstack-dev19:44
topolgyee, decorum prevents me from posting the visions in my head...19:44
*** markvoelker has joined #openstack-dev19:45
*** comay has joined #openstack-dev19:45
malini1ayoung .. are you there?19:46
*** reed has joined #openstack-dev19:46
malini1i see lots of keystone gurus -- hello gyee and dolphm19:46
dolphmo/19:47
gyee^ he's the guru19:47
uvirtbotgyee: Error: "he's" is not a valid command.19:47
gyeeI just just a follower19:47
malini1excuse me, guru is a relative term, and all of you are way up there. with the key-manager, want keystone19:47
*** jvrbanac has joined #openstack-dev19:48
malini1auth middleware, but how do i test it is working? i know it auths now, because i get a 40119:48
malini1before auth middle ware was added as a pipeline chain, it responded with data19:48
dolphmmalini1: have your service that's running behind auth_token echo back the tenant ID19:48
*** vkmc has quit IRC19:49
dolphmmalini1: it'll be in the wsgi env as X_TENANT_ID19:49
malini1ok19:49
*** cp16net|away is now known as cp16net19:49
malini1to fake a call to key manager, would I set headers such as  headers = {'X-Auth-User': self.auth_user,19:50
malini1                   'X-Auth-Key': self.auth_key,19:50
malini1                   'X-Auth-Project-Id': self.project_id}19:50
malini1i am missing some flow understanding too ..19:50
malini1user or nova or cinder or something will call into key-manager,   that user would have already  been authenticated by keystone19:51
dolphmmalini1: yes, but you'll have to remove auth_token from the pipeline to do that19:51
*** wiliam has quit IRC19:51
malini1so the request coming into key manager would have some headers set19:51
dolphmmalini1: auth_token doesn't like it when you try and forge requests :)19:51
*** sandywalsh has joined #openstack-dev19:52
malini1so i really should send in an auth token and no upset the poor guard19:52
dolphmmalini1: i think it would just be X-User-Id, X-User-Name, X-Tenant-Name, etc without auth_token19:52
dolphmmalini1: it'd probably be easier lol19:53
*** wiliam has joined #openstack-dev19:53
malini1that token-id is mighty long, is it ok to just initially put via sql command a short token id and try19:53
malini1thanks dolphm, will try and come back19:54
malini1dolphm: my host and port are to match the key-manager which in turn passes all the header stuff to keystone correct, so in my19:56
malini1test environment I am making http request to key manager19:56
*** radez is now known as radez_g0n319:57
*** bmclaughlin has quit IRC19:58
*** wiliam has quit IRC19:59
*** mkollaro has joined #openstack-dev20:00
*** wiliam has joined #openstack-dev20:01
*** FunnyLookinHat has quit IRC20:01
*** maoy_ has joined #openstack-dev20:03
*** maoy has quit IRC20:03
*** maoy_ is now known as maoy20:03
dolphmmalini1: set keystone.conf token_format to 'UUID' to get short tokens20:06
*** FunnyLookinHat has joined #openstack-dev20:07
dolphmmalini1: and yes, your configuration for auth_token will handle the interaction with keystone20:07
*** wiliam has quit IRC20:08
*** lauria_ has joined #openstack-dev20:09
*** lauria has quit IRC20:09
*** wiliam has joined #openstack-dev20:09
*** lauria_ is now known as lauria20:09
*** lauria_ has joined #openstack-dev20:11
*** jog0 has quit IRC20:13
*** lauria has quit IRC20:14
*** lauria_ is now known as lauria20:14
*** wiliam has quit IRC20:15
*** crandquist has quit IRC20:17
*** wiliam has joined #openstack-dev20:18
*** otherwiseguy has quit IRC20:18
*** crandquist has joined #openstack-dev20:23
*** mjfork has quit IRC20:24
*** mjfork has joined #openstack-dev20:25
*** anniec has joined #openstack-dev20:26
*** anniec has quit IRC20:28
*** digitalsanctum has quit IRC20:29
*** sacharya has quit IRC20:30
*** anniec has joined #openstack-dev20:30
*** malini1 has quit IRC20:31
*** zb has joined #openstack-dev20:32
*** devoid has quit IRC20:32
*** mjfork has quit IRC20:34
*** cole has joined #openstack-dev20:34
*** mjfork has joined #openstack-dev20:34
*** zbitter has quit IRC20:34
*** zbitter has joined #openstack-dev20:35
*** stevemar has quit IRC20:35
kbringardsoren: do you still maintain the OVS project on launchpad? and if so, would you be the one to ask about if 1.9 will ever get packaged for 12.04 since 1.9 is LTS now?20:36
*** ekarlso has quit IRC20:38
*** zb has quit IRC20:38
*** ekarlso has joined #openstack-dev20:39
*** sarob has quit IRC20:40
*** jog0 has joined #openstack-dev20:40
*** jog0 is now known as flashgordon20:41
*** ewindisch has joined #openstack-dev20:41
*** mjfork_ has joined #openstack-dev20:44
*** mjfork has quit IRC20:46
*** galstrom is now known as galstrom_zzz20:46
*** mjfork has joined #openstack-dev20:47
*** sarob has joined #openstack-dev20:48
*** mjfork_ has quit IRC20:50
*** rnirmal has quit IRC20:50
*** wiliam has quit IRC20:50
*** wiliam has joined #openstack-dev20:52
*** otherwiseguy has joined #openstack-dev20:52
*** otherwiseguy has quit IRC20:52
*** otherwiseguy has joined #openstack-dev20:53
spzaladolphm: I am back20:54
spzaladolphm: with the default domain changes, want to make sure that what part I will be doing? :)20:56
dolphmspzala: this is where i'm at- https://review.openstack.org/#/c/28197/20:56
spzaladolphm: wow that was quick20:56
*** ashwini has quit IRC20:57
dolphmspzala: i'm close to being done for the day -- you want to investigate the remaining test failures in that patch? i suspect it's a couple small changes related to test fixtures20:57
spzaladolphm: sure I will take your changes and test it out20:57
*** mjfork has quit IRC20:57
spzaladolphm: one thing I see is,20:58
*** mjfork has joined #openstack-dev20:58
spzaladolphm: we will need to override many test methods in test_ldap_backend20:58
bknudsonany Keystoners see an error like this from Jenkins... http://logs.openstack.org/27787/7/check/gate-keystone-python26/3785/console.html20:58
spzaladolphm: but I will test that out20:58
bknudsonlooks like it's testing ipv6 address but the system doesn't have ipv620:59
*** zb has joined #openstack-dev20:59
ngihnenioneiric3 does have an ipv6 stack fwiw21:00
ngihneniand ::1/128 is the address for the loopback interface21:01
*** lauria has quit IRC21:02
bknudsonI don't understand the output... is this the result of a unit test or an extra thing it's running?21:02
*** zbitter has quit IRC21:02
*** lauria has joined #openstack-dev21:02
bknudsonI tried ./run_tests on my system and didn't get the error21:02
ngihnenithe errors are the results of three failing unittests21:02
dolphmspzala: i actually modified the test framework in test_backend so that test_backend_ldap could simply use the default domain while other backends created new ones21:04
bknudsonngihneni: I found them, test_ipv6 and test_ssl21:05
ngihnenibknudson: https://bitbucket.org/flub/eventlet-ipv6/src/9ef03bd435da/eventlet/support/greendns.py#cl-337 is the socket type set to AF_INET6?21:06
ngihneniits weird that it would do a AAAA look up on an address though21:06
ngihnenithat is what is failing21:06
spzaladolphm: aha, awesome!21:07
*** jcoufal has joined #openstack-dev21:12
*** digitalsanctum has joined #openstack-dev21:13
*** digitalsanctum has quit IRC21:14
coledoes anyone know if there is work being done to integrate nova with http://www.linux-kvm.org/page/VMchannel_Requirements ?21:15
dolphmspzala: got a few more tests passing, updated the review21:15
dolphmcole: did you search for existing blueprints?21:15
coledolphm: i did. nothing returned.21:16
dolphmcole: i'd suggest filing one and pinging the -dev list for feedback21:16
*** dhellmann has quit IRC21:16
spzaladolphm: cool. I will grab the changes.21:16
*** sarob has quit IRC21:17
*** sarob has joined #openstack-dev21:17
*** susanne-balle has quit IRC21:18
*** wiliam has quit IRC21:18
*** susanne-balle has joined #openstack-dev21:18
*** lucasagomes has quit IRC21:18
*** mjfork has quit IRC21:19
*** wiliam has joined #openstack-dev21:20
*** zbitter has joined #openstack-dev21:20
*** ekarlso has quit IRC21:20
*** nubbie has quit IRC21:21
*** mjfork_ has joined #openstack-dev21:21
*** mjfork_ is now known as mjfork21:21
*** sarob has quit IRC21:21
*** jasondotstar has quit IRC21:23
*** zb has quit IRC21:23
*** kmartin has quit IRC21:25
*** ekarlso has joined #openstack-dev21:26
*** topol has quit IRC21:27
*** shardy has quit IRC21:27
*** nunosantos has quit IRC21:28
*** litong has quit IRC21:29
*** kmartin has joined #openstack-dev21:30
*** susanne-balle has quit IRC21:31
*** susanne-balle has joined #openstack-dev21:32
*** crandquist has quit IRC21:32
openstackgerritA change was merged to openstack-dev/devstack: Add saucy support  https://review.openstack.org/2805021:33
*** termie is now known as termeye21:35
*** mjfork has quit IRC21:36
termeyethe weather is amazing in sf right now and i have to admit i don't really care about being on the computer right now21:36
*** mjfork has joined #openstack-dev21:37
*** anniec has quit IRC21:37
*** eharney has quit IRC21:39
dolphmsame here, we just had a "cold front" blow all the weather away21:39
*** electrichead has quit IRC21:41
*** lauria has quit IRC21:41
termeyejaypipes, simo: btw, i think BNS is a red herring, talked with friends and they basically said we should be using zookeeper21:42
*** ayoung has joined #openstack-dev21:42
termeyeayoung: btw, i think BNS is a red herring, talked with friends and they basically said we should be using zookeeper21:42
*** jayg is now known as jayg|g0n321:43
*** cole has left #openstack-dev21:43
termeyeayoung: bns is at this point quite some years old and it is mostly just a better way of targetting things once they are running, but not really related to discovery21:43
ayoungtermeye, interesting.  I'll research it.  thanks for the heads up21:43
*** rcleere has quit IRC21:44
dolphmspzala: updated again, got all ldap tests passing https://review.openstack.org/#/c/28197/21:44
spzaladolphm: wow.. I was testing the patch 2 and I had 3 failure which i was looking at it21:45
spzaladolphm: getting latest one and will just confirm testing21:45
dolphmspzala: thanks!21:45
spzaladolphm: no problem.. Thank you!!!21:45
dolphmspzala: the last patch has some scope creep related to update() methods; might need to split the patch in two or at least file another bug21:46
dolphmspzala: either way, that's for monday for me :) have a good weekend!21:46
*** jtomasek has quit IRC21:46
dolphmspzala: p.s. all unit tests just passed for me, nothing affected outside of test_backend_ldap21:46
ayoungdolphm, good, I want to take a look at it, too.  Please ping me on all things LDAP.21:47
dolphmayoung: *ping* see review above :)21:47
spzaladolphm: OK :) sounds good. udpate is a problematic with ldap sometime.. .. OK, thanks. have a great weekend too!21:47
dolphmayoung: i kept trying to message you all day and autocomplete didn't like you21:47
ayoungdolphm, heh...yep, I'll look over the weekend.  I have Cub scouts in a bout an hour.  That whole life thing getting in the way of my coding21:47
ayoungyep, was off the net, talking to some people about Open Stack, believe it or not21:48
termeyeayoung: you just aren't dedicated to this project's success are you21:48
ayoungturns out there is going to be apretty big academic Open stack deployment in Mass, and I was talking to one of the researchers involved21:48
ayoungtermeye, I'm like Han Solo.  "I'm in it for the money"21:49
ayoungcuz, ya know, you could make hundreds of dollars a year in open stack21:49
dolphmTEACH ME YOUR WAYS21:49
*** colinmcnamara has quit IRC21:49
dolphmi'm still in the red21:50
*** devoid has joined #openstack-dev21:50
*** jvrbanac has quit IRC21:50
ayoungsorry dolphm, I'm still in the "could" stage myself21:51
*** jcoufal has quit IRC21:54
*** dolphm has quit IRC21:56
*** bknudson has quit IRC21:57
*** maoy has quit IRC21:58
*** susanne-balle has quit IRC22:01
*** susanne-balle has joined #openstack-dev22:01
*** colinmcnamara has joined #openstack-dev22:04
*** portante|ltp has joined #openstack-dev22:04
*** colinmcnamara has quit IRC22:07
*** flaper87 has quit IRC22:09
*** athomas has quit IRC22:13
*** vmilev_ has quit IRC22:13
*** fbo has quit IRC22:15
*** colinmcnamara has joined #openstack-dev22:15
*** shindig is now known as sdague22:17
*** vmilev_ has joined #openstack-dev22:17
*** cloudchimp has quit IRC22:22
*** FunnyLookinHat has quit IRC22:23
*** colinmcnamara has quit IRC22:23
*** oubiwann has quit IRC22:23
*** phschwartz_ has quit IRC22:25
*** oubiwann has joined #openstack-dev22:28
*** phschwartz_ has joined #openstack-dev22:28
*** vmilev_ has quit IRC22:30
*** jjmb has quit IRC22:31
*** novas0x2a|laptop has quit IRC22:31
*** novas0x2a|laptop has joined #openstack-dev22:34
*** timjr has quit IRC22:34
*** torandu has quit IRC22:35
*** torandu has joined #openstack-dev22:37
*** mjfork_ has joined #openstack-dev22:38
*** colinmcnamara has joined #openstack-dev22:39
*** mjfork has quit IRC22:40
*** portante|ltp has quit IRC22:40
*** mjfork_ is now known as mjfork22:40
*** hemna is now known as hemnafk22:41
*** colinmcnamara has quit IRC22:44
*** ayoung has quit IRC22:44
*** mlavalle has joined #openstack-dev22:46
*** jecarey_ has quit IRC22:46
*** kbringard has quit IRC22:48
*** datsun180b has quit IRC22:49
*** megha has joined #openstack-dev22:52
*** baba has quit IRC22:52
WormManI personally make tens of dollars a month working on openstack for my employer :)23:00
*** devoid has quit IRC23:02
*** susanne-balle has quit IRC23:02
*** susanne-balle has joined #openstack-dev23:03
*** katylava has quit IRC23:04
*** mgiles has quit IRC23:04
*** mjfork has quit IRC23:07
*** mjfork has joined #openstack-dev23:09
*** flashgordon has quit IRC23:10
*** zaitcev has joined #openstack-dev23:11
*** edmund has quit IRC23:13
*** markmcclain has quit IRC23:14
*** mrodden has quit IRC23:15
*** mlavalle has quit IRC23:15
*** gary_th has quit IRC23:21
*** bdpayne has quit IRC23:22
*** matiu has joined #openstack-dev23:24
*** terryh has quit IRC23:26
*** david-lyle is now known as david-lyle_23:26
bkeroA few tens23:29
*** markwash has quit IRC23:30
*** morganfainberg is now known as needscoffee23:35
*** stevemar has joined #openstack-dev23:37
*** alop has quit IRC23:42
*** terryh has joined #openstack-dev23:43
*** yidclare has quit IRC23:45
*** gyee has quit IRC23:48
*** sudorandom has quit IRC23:51
openstackgerritA change was merged to openstack/nova: Fix EC2 instance bdm response  https://review.openstack.org/2789623:52
*** mkollaro has quit IRC23:55

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