*** Mandell has joined #openstack-dev | 00:00 | |
*** sarob has quit IRC | 00:00 | |
*** sarob has joined #openstack-dev | 00:01 | |
*** sacharya has joined #openstack-dev | 00:02 | |
*** ociuhandu has quit IRC | 00:03 | |
*** sarob has quit IRC | 00:05 | |
*** winston-d has joined #openstack-dev | 00:07 | |
*** vipul is now known as vipul|away | 00:07 | |
*** yidclare has joined #openstack-dev | 00:10 | |
*** vipul|away is now known as vipul | 00:12 | |
*** FatDarrel has joined #openstack-dev | 00:12 | |
*** riskable has quit IRC | 00:14 | |
*** reed has quit IRC | 00:17 | |
*** sthaha has joined #openstack-dev | 00:19 | |
*** markwash has joined #openstack-dev | 00:21 | |
*** jakedahn has joined #openstack-dev | 00:23 | |
*** Nachi has quit IRC | 00:23 | |
*** nati_ueno has joined #openstack-dev | 00:23 | |
*** krtaylor has joined #openstack-dev | 00:24 | |
*** Chaser has quit IRC | 00:24 | |
*** NobodyCam has quit IRC | 00:26 | |
*** krtaylor has quit IRC | 00:26 | |
ayoung | morganfainberg, checkout grizzly stable from origin and cherrypick the patch over. Once you are sure it works, git review it from there | 00:27 |
---|---|---|
*** yidclare has quit IRC | 00:27 | |
*** nati_ueno has quit IRC | 00:28 | |
morganfainberg | ayoung: figured as much, just making sure there wasn't other process involved. Thanks! | 00:28 |
*** Ryan_Lane has quit IRC | 00:30 | |
*** Mandell has quit IRC | 00:31 | |
*** malini2 has joined #openstack-dev | 00:32 | |
*** zb has joined #openstack-dev | 00:32 | |
*** yidclare has joined #openstack-dev | 00:32 | |
*** Gman2 has joined #openstack-dev | 00:32 | |
*** digitalsanctum has quit IRC | 00:33 | |
*** adalbas has quit IRC | 00:35 | |
*** zbitter has quit IRC | 00:35 | |
*** devoid has quit IRC | 00:35 | |
*** NobodyCam has joined #openstack-dev | 00:36 | |
*** bdpayne has quit IRC | 00:36 | |
ayoung | morganfainberg, no problem. which review? | 00:36 |
*** digitalsanctum has joined #openstack-dev | 00:37 | |
morganfainberg | ayoung: I am working on cleaning a couple things up and testing it before resubmitting it to stable. | 00:37 |
morganfainberg | ayoung: https://review.openstack.org/#/c/27597/ is the proposed against master | 00:38 |
ayoung | morganfainberg, looking | 00:38 |
*** digitalsanctum has quit IRC | 00:39 | |
*** gyee has quit IRC | 00:39 | |
*** jakedahn has quit IRC | 00:39 | |
ayoung | morganfainberg, 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 IRC | 00:40 | |
morganfainberg | ayoung: i haven't spent a huge amount of time noodling over termies proposal yet. | 00:40 |
ayoung | morganfainberg, what does cas_retry mean? | 00:41 |
morganfainberg | cas is compare and sety | 00:41 |
morganfainberg | set* | 00:41 |
ayoung | hmmm...I think that needs a better name.... | 00:41 |
morganfainberg | it is a mechanism of memcache, so it is the number of attempts to get value/do work/set before giving up | 00:41 |
ayoung | I mean, I know what this code is supposed to do, and I couldn't parse it | 00:42 |
morganfainberg | cas is the actual memcache name, but i agree it should be named differently | 00:42 |
ayoung | ah, ok...makes sense | 00:42 |
ayoung | default 0 for sizes? | 00:43 |
morganfainberg | ayoung: 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 |
morganfainberg | and the user-list is only ever looked at expanded when you ask for the actual list | 00:43 |
morganfainberg | and that is only used on _delete_tokens_for_user | 00:43 |
morganfainberg | calls | 00:44 |
morganfainberg | *smashes fingers for slipping and hitting enter too much* | 00:44 |
*** sudorandom has joined #openstack-dev | 00:44 | |
morganfainberg | it 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 superflous | 00:44 |
morganfainberg | since we don't expand the user-list (just do an append) every time we issue a token | 00:45 |
morganfainberg | append in memcache parlance, not python that is | 00:45 |
ayoung | morganfainberg, I would expect that we would check the max_user_record_list_size and, if it is exceeded, truncate | 00:45 |
ayoung | no? | 00:45 |
ayoung | morganfainberg, also...is this code somehow generalizable? It seems that if we are having memcache problems that this solves, others might as well. | 00:46 |
morganfainberg | ayoung: 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 id | 00:46 |
morganfainberg | hrm, generalizing it | 00:47 |
morganfainberg | hrmmm. | 00:47 |
*** FatDarrel has quit IRC | 00:47 | |
*** adalbas has joined #openstack-dev | 00:47 | |
morganfainberg | i don't think we track a user-record list like this in any other form. | 00:47 |
morganfainberg | the revocation list truncate might be generalized. | 00:47 |
ayoung | morganfainberg, also, we monkeypatch "thread" I think, especially for memcache. Is that going to be a problem (I assume it is) | 00:47 |
morganfainberg | do we address the back-end driver for the tokens per-thread? or do we instantiate and pass between threads. | 00:48 |
ayoung | morganfainberg, keep the generalization thing in mind. Doesn't have to be for this patch, might be a refactoring down the road | 00:48 |
morganfainberg | the issue would occur if we passed the instantiated objects between threads. | 00:49 |
ayoung | pass 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 |
morganfainberg | if that is the case we should be safe, it's just depending on yeild points then. | 00:50 |
morganfainberg | and i think you're correct that it wont swap middle | 00:50 |
morganfainberg | *in the middle | 00:50 |
ayoung | morganfainberg, I'm guessing that there are no yield points, but the fact that we monkeypatch "thread" does make me wonder | 00:51 |
ayoung | morganfainberg, why do you need created_at? Can't you use the "expires" field? | 00:52 |
morganfainberg | yeah, i could instantiate a new memcache driver per set of calls, which would add overhead but should solve it definitively | 00:52 |
morganfainberg | created_at is for determining if we should administratively wipe out long lived tokens. | 00:53 |
morganfainberg | e.g. time since creation | 00:53 |
morganfainberg | expiry doesn't reflect any thing about creation time | 00:53 |
ayoung | morganfainberg, you could do the same thing with time since expiration, which would be more correct | 00:53 |
morganfainberg | and one can issue a long lived token (at least in v2) | 00:54 |
ayoung | and then we wouldn't need an additional field. | 00:54 |
morganfainberg | time since expiration != time since creation, that option is only for currently valid tokens if we want to strike them | 00:54 |
ayoung | If the token is still valid, it should stay in the cache | 00:54 |
morganfainberg | expired tokens will always be stricken from the list | 00:54 |
ayoung | ah, you mean revoked tokens? hmmm | 00:55 |
morganfainberg | even non-revoked | 00:55 |
morganfainberg | actually non-revoked | 00:55 |
ayoung | no I think valid tokens need to stay in the cache | 00:55 |
morganfainberg | ok | 00:55 |
morganfainberg | i'll remove that option. | 00:55 |
*** Chaser has joined #openstack-dev | 00:55 | |
morganfainberg | and created_at disappears then | 00:55 |
ayoung | morganfainberg, 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 |
morganfainberg | does 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 |
morganfainberg | instead of storing the complete json in the single revocation page? | 00:56 |
morganfainberg | ayoung: yes, that is the problem. | 00:57 |
ayoung | morganfainberg, we don;t want to recreate the list every time it is fetched. THat is going to be more common than revoking a token | 00:57 |
morganfainberg | ayoung: thats what i figured. which is why i didn't move that direction off the bat. | 00:57 |
ayoung | morganfainberg, 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 adoption | 00:58 |
morganfainberg | yes, i see the start of that and it absolutely looks like the right approach | 00:58 |
ayoung | that 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 job | 00:58 |
morganfainberg | yep. | 00:59 |
ayoung | morganfainberg, how long do tokens live in your system? | 00:59 |
morganfainberg | 86400 atm | 00:59 |
morganfainberg | but we could compress that down some. | 00:59 |
morganfainberg | (seconds that is) | 00:59 |
morganfainberg | this 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 |
morganfainberg | ideally 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 |
morganfainberg | s/tickets/tokens | 01:02 |
ayoung | 24 hours is pretty long. are there really jobs that take anywhere near that long? | 01:03 |
ayoung | python-keyring should also get you some token reuse. At 24hrs/token you shouldn't need many tokens | 01:04 |
*** melwitt has quit IRC | 01:04 | |
morganfainberg | ayoung: it's an issue with customers developing their own portals (no control) against the APIs | 01:05 |
*** anniec has quit IRC | 01:05 | |
morganfainberg | so 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 |
morganfainberg | public cloud I could be a bit more forcefull about "abuse" of the system. | 01:05 |
*** novas0x2a|laptop has quit IRC | 01:06 | |
morganfainberg | don'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-dev | 01:06 | |
*** slagle has quit IRC | 01:06 | |
morganfainberg | you are right 86400 is too long for most tasks. | 01:06 |
*** jakedahn has joined #openstack-dev | 01:06 | |
*** alunduil has quit IRC | 01:07 | |
*** sirushti has quit IRC | 01:08 | |
morganfainberg | that should mitigate the concern(s) with the revocation list except in extreme scenarios | 01:08 |
*** alunduil has joined #openstack-dev | 01:08 | |
*** sirushti has joined #openstack-dev | 01:09 | |
*** markmcclain has joined #openstack-dev | 01:12 | |
*** HenryG has joined #openstack-dev | 01:12 | |
*** prekarat has quit IRC | 01:12 | |
*** slagle has joined #openstack-dev | 01:14 | |
*** prekarat has joined #openstack-dev | 01:14 | |
morganfainberg | ayoung: 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 IRC | 01:16 | |
ayoung | morganfainberg, 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 |
ayoung | morganfainberg, sounds good | 01:16 |
morganfainberg | ayoung: i'll sync up with you later if for the master branch one (and ponder some generalization). — thats a good idea for the delegation migration | 01:17 |
morganfainberg | would def. make it easier to figure out what to delegate compared to now. | 01:17 |
morganfainberg | have a good evening :) | 01:17 |
*** terry7 has quit IRC | 01:26 | |
*** PaulM has joined #openstack-dev | 01:26 | |
*** anniec has joined #openstack-dev | 01:31 | |
*** alexxu has joined #openstack-dev | 01:33 | |
*** jergerber has joined #openstack-dev | 01:37 | |
*** anniec_ has joined #openstack-dev | 01:39 | |
*** anniec has quit IRC | 01:40 | |
*** anniec_ is now known as anniec | 01:40 | |
*** RaySun has joined #openstack-dev | 01:42 | |
*** mestery has joined #openstack-dev | 01:46 | |
*** jergerber has quit IRC | 01:48 | |
*** toey has joined #openstack-dev | 01:48 | |
*** jergerber has joined #openstack-dev | 01:51 | |
*** prekarat has quit IRC | 01:53 | |
*** toey has quit IRC | 01:59 | |
*** bing_bu has joined #openstack-dev | 02:02 | |
*** sudorandom has quit IRC | 02:03 | |
*** michchap has quit IRC | 02:05 | |
*** anniec has quit IRC | 02:06 | |
*** alop has quit IRC | 02:10 | |
*** portante|afk has quit IRC | 02:14 | |
*** radez_g0n3 has quit IRC | 02:15 | |
*** portante|afk has joined #openstack-dev | 02:15 | |
*** radez_g0n3 has joined #openstack-dev | 02:15 | |
*** stevemar has joined #openstack-dev | 02:15 | |
*** sandywalsh has quit IRC | 02:18 | |
*** maoy has joined #openstack-dev | 02:18 | |
*** malini2 has quit IRC | 02:22 | |
*** jergerber has quit IRC | 02:23 | |
openstackgerrit | A change was merged to openstack/swift: conf.d support https://review.openstack.org/25353 | 02:27 |
*** hartsocks1 has joined #openstack-dev | 02:28 | |
*** hartsocks has quit IRC | 02:30 | |
*** lauria has joined #openstack-dev | 02:34 | |
*** colinmcnamara has joined #openstack-dev | 02:36 | |
*** prekarat has joined #openstack-dev | 02:40 | |
*** vkmc has quit IRC | 02:41 | |
*** X-Scale has joined #openstack-dev | 02:42 | |
*** radez_g0n3 is now known as radez | 02:44 | |
*** SergeyLukjanov has joined #openstack-dev | 02:46 | |
*** utlemming has quit IRC | 02:48 | |
*** prekarat has quit IRC | 02:48 | |
*** prekarat has joined #openstack-dev | 02:48 | |
*** malini has joined #openstack-dev | 02:50 | |
*** RaySun has quit IRC | 02:50 | |
*** sarob has joined #openstack-dev | 02:51 | |
*** networkstatic_ has joined #openstack-dev | 02:56 | |
*** networkstatic has quit IRC | 02:57 | |
*** mikal has quit IRC | 02:57 | |
*** mikal has joined #openstack-dev | 02:59 | |
HenryG | I 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-dev | 03:00 | |
*** brunnhilde has quit IRC | 03:00 | |
PaulM | are you using python with -R and the unittests are broken? | 03:05 |
*** jamespage has quit IRC | 03:05 | |
*** jamespage has joined #openstack-dev | 03:05 | |
PaulM | or the env var PYTHONHASHSEED could be set to 'random' | 03:05 |
*** ladquin_brb has quit IRC | 03:06 | |
HenryG | I just ran tox. | 03:06 |
HenryG | no PYTHONHASHSEED env var | 03:06 |
PaulM | are you using the correct version of python? | 03:07 |
HenryG | Ubuntu 13.04 comes with 2.7.4 by default. I wonder if that is the problem. | 03:07 |
HenryG | Further debugging indicates that it is probably serialize() that builds the json object in random order. | 03:08 |
PaulM | 2.7.4 should be fine | 03:08 |
PaulM | what do you mean by "builds the json object in a random order" | 03:08 |
PaulM | which datastructures are being randomized? | 03:09 |
PaulM | keys in dicts, perhaps? | 03:09 |
*** sandywalsh has joined #openstack-dev | 03:09 | |
HenryG | Just stepping thru the code, I see the test serializer building a string with json data. | 03:10 |
PaulM | try this | 03:11 |
PaulM | does running this twice produce the same result? | 03:12 |
PaulM | python -c "print 'a'.__hash__()" | 03:12 |
HenryG | same result every time | 03:16 |
PaulM | so yeah, probably not hash randomization then | 03:16 |
PaulM | unless tox specifies that or somethign | 03:17 |
*** lauria has quit IRC | 03:18 | |
*** radez is now known as radez_g0n3 | 03:19 | |
*** bdpayne has joined #openstack-dev | 03:19 | |
HenryG | I am too tired to dig more right now. Not that important anyway. Was just trying out the new Ubuntu. | 03:20 |
PaulM | does sound like randomization somewhere... no clue though | 03:22 |
HenryG | thanks for the ideas. I may try again this weekend if I get bored. | 03:23 |
*** HenryG has quit IRC | 03:24 | |
*** SergeyLukjanov has quit IRC | 03:25 | |
*** maoy has quit IRC | 03:34 | |
*** electrichead has joined #openstack-dev | 03:36 | |
*** jakedahn has joined #openstack-dev | 03:38 | |
*** jakedahn has joined #openstack-dev | 03:38 | |
*** jecarey has quit IRC | 03:41 | |
*** erfanian has quit IRC | 03:45 | |
*** electrichead has quit IRC | 03:50 | |
*** Mandell has joined #openstack-dev | 03:51 | |
*** colinmcnamara has quit IRC | 03:56 | |
*** kenperkins has quit IRC | 03:57 | |
*** esp has joined #openstack-dev | 03:59 | |
*** prekarat has quit IRC | 04:00 | |
*** prekarat has joined #openstack-dev | 04:00 | |
*** boris-42 has joined #openstack-dev | 04:00 | |
*** reed has joined #openstack-dev | 04:02 | |
*** reed has quit IRC | 04:02 | |
*** tzumainn has joined #openstack-dev | 04:04 | |
*** colinmcnamara has joined #openstack-dev | 04:06 | |
*** electrichead has joined #openstack-dev | 04:11 | |
*** esp has left #openstack-dev | 04:11 | |
*** colinmcnamara has quit IRC | 04:13 | |
*** jclift has quit IRC | 04:23 | |
*** alexpilotti has joined #openstack-dev | 04:25 | |
*** zaitcev has quit IRC | 04:39 | |
*** jergerber has quit IRC | 04:39 | |
*** rushiagr has joined #openstack-dev | 04:40 | |
*** Ryan_Lane has joined #openstack-dev | 04:41 | |
*** hartsocks1 has left #openstack-dev | 04:41 | |
*** hartsocks has joined #openstack-dev | 04:42 | |
*** jcoufal has joined #openstack-dev | 04:44 | |
*** sarob has quit IRC | 04:53 | |
*** sarob has joined #openstack-dev | 04:53 | |
*** nunosantos has quit IRC | 04:56 | |
*** aeperezt has quit IRC | 04:56 | |
*** boris-42 has quit IRC | 04:57 | |
*** glikson has joined #openstack-dev | 04:58 | |
*** sarob has quit IRC | 04:58 | |
*** salv-orlando has joined #openstack-dev | 04:59 | |
*** salv-orlando has left #openstack-dev | 05:00 | |
*** Mandell has quit IRC | 05:02 | |
*** Mandell has joined #openstack-dev | 05:05 | |
*** tzumainn has quit IRC | 05:13 | |
*** boris-42 has joined #openstack-dev | 05:15 | |
*** markmcclain has quit IRC | 05:16 | |
*** sacharya has quit IRC | 05:16 | |
*** ayoung has quit IRC | 05:23 | |
*** vartom1113 has joined #openstack-dev | 05:24 | |
*** navid_ has joined #openstack-dev | 05:24 | |
*** bdpayne has quit IRC | 05:38 | |
*** Ryan_Lane1 has joined #openstack-dev | 05:39 | |
*** Ryan_Lane has quit IRC | 05:41 | |
*** ayoung has joined #openstack-dev | 05:48 | |
*** kenperkins has joined #openstack-dev | 05:50 | |
*** jcoufal has quit IRC | 05:51 | |
*** jcoufal has joined #openstack-dev | 05:52 | |
*** electrichead has quit IRC | 05:55 | |
*** electrichead has joined #openstack-dev | 05:55 | |
*** jcoufal has quit IRC | 06:01 | |
*** jcoufal has joined #openstack-dev | 06:02 | |
*** jcoufal has quit IRC | 06:02 | |
*** jcoufal has joined #openstack-dev | 06:02 | |
*** jcoufal has quit IRC | 06:03 | |
*** jcoufal has joined #openstack-dev | 06:03 | |
*** electrichead has quit IRC | 06:06 | |
*** electrichead has joined #openstack-dev | 06:07 | |
*** Mandell has quit IRC | 06:08 | |
*** alexxu has quit IRC | 06:16 | |
*** flaper87 has joined #openstack-dev | 06:17 | |
*** mrunge has joined #openstack-dev | 06:18 | |
*** xga has joined #openstack-dev | 06:19 | |
*** Ryan_Lane1 has quit IRC | 06:24 | |
*** winston-d has quit IRC | 06:29 | |
*** Mandell has joined #openstack-dev | 06:30 | |
*** afazekas has joined #openstack-dev | 06:34 | |
*** electrichead has quit IRC | 06:40 | |
*** shang has quit IRC | 06:41 | |
*** prekarat1 has joined #openstack-dev | 06:42 | |
*** prekarat has quit IRC | 06:42 | |
*** flaper87 has quit IRC | 06:50 | |
*** baba has quit IRC | 06:52 | |
*** megha has joined #openstack-dev | 06:52 | |
*** reidrac has joined #openstack-dev | 06:53 | |
*** egallen has joined #openstack-dev | 06:53 | |
*** flaper87 has joined #openstack-dev | 06:54 | |
*** mindpixel has joined #openstack-dev | 06:55 | |
*** xga has quit IRC | 06:55 | |
*** xga has joined #openstack-dev | 06:56 | |
*** shang has joined #openstack-dev | 06:59 | |
*** jcoufal has quit IRC | 06:59 | |
*** boris-42 has quit IRC | 06:59 | |
*** jcoufal has joined #openstack-dev | 06:59 | |
*** prekarat1 has quit IRC | 07:04 | |
*** prekarat has joined #openstack-dev | 07:04 | |
*** ondergetekende has joined #openstack-dev | 07:05 | |
*** eglynn has joined #openstack-dev | 07:06 | |
*** fc__ has joined #openstack-dev | 07:06 | |
*** eglynn has quit IRC | 07:11 | |
ttx | markwash: yes | 07:11 |
ttx | lifeless: 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-dev | 07:15 | |
*** dguitarbite has joined #openstack-dev | 07:16 | |
ttx | adam_g: added you to stable-maint team, you should be able to target to series now | 07:16 |
*** rods has joined #openstack-dev | 07:17 | |
*** stevemar has quit IRC | 07:19 | |
*** susanne-balle has quit IRC | 07:20 | |
*** susanne-balle has joined #openstack-dev | 07:21 | |
*** egallen has quit IRC | 07:26 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Improve python3 compatibility https://review.openstack.org/27916 | 07:28 |
*** mmagr has joined #openstack-dev | 07:29 | |
*** jgallard has joined #openstack-dev | 07:31 | |
*** jtomasek has joined #openstack-dev | 07:33 | |
*** Yada has joined #openstack-dev | 07:37 | |
*** aloga has joined #openstack-dev | 07:39 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Update processutils. https://review.openstack.org/28014 | 07:40 |
*** zb is now known as zaneb | 07:45 | |
*** fbo_ has joined #openstack-dev | 07:47 | |
*** jdurgin2 has joined #openstack-dev | 07:48 | |
*** jdurgin2 has quit IRC | 07:48 | |
*** mindpixel has quit IRC | 07:49 | |
*** mindpixel has joined #openstack-dev | 07:49 | |
*** lucasagomes has joined #openstack-dev | 07:55 | |
prekarat | why 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-dev | 08:01 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Deprecate log_format and change default to None https://review.openstack.org/26784 | 08:02 |
*** arosen has quit IRC | 08:02 | |
rushiagr | prekarat: looks like a bug | 08:03 |
*** dave has joined #openstack-dev | 08:03 | |
prekarat | rushiagr: cool thank you its because of this, am writing a patch now | 08:03 |
*** tomh_ has joined #openstack-dev | 08: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 Guest22610 | 08:03 | |
prekarat | it should strip the name before it validates. | 08:03 |
*** vuntz has quit IRC | 08:03 | |
*** Guest15529 has quit IRC | 08:04 | |
rushiagr | prekarat: cool. See if a bug exist on launchpad, or if not, raise it yourself | 08:04 |
*** arosen has joined #openstack-dev | 08:04 | |
prekarat | rushiagr: sure, thanks | 08:05 |
*** tomhancock has quit IRC | 08:05 | |
*** vuntz has joined #openstack-dev | 08:05 | |
*** vuntz has quit IRC | 08:05 | |
*** vuntz has joined #openstack-dev | 08:05 | |
*** Mandell has quit IRC | 08:05 | |
*** git-harry has quit IRC | 08:07 | |
*** git-harry has joined #openstack-dev | 08:09 | |
*** pixelbeat has joined #openstack-dev | 08:10 | |
rushiagr | https://github.com/rushiagr/python-cinderclient/commit/995bb1619a2367af1607a648183cac37bc4d3e9b | 08:12 |
rushiagr | oops, wrong channel :) | 08:12 |
*** SergeyLukjanov has joined #openstack-dev | 08:13 | |
*** jpich has joined #openstack-dev | 08:14 | |
*** SergeyLukjanov has quit IRC | 08:17 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Add test coverage for sqlite regexp function https://review.openstack.org/28107 | 08:18 |
*** trapni has joined #openstack-dev | 08:22 | |
*** trapni has joined #openstack-dev | 08:22 | |
*** afazekas has quit IRC | 08:25 | |
*** derekh has joined #openstack-dev | 08:26 | |
*** eglynn has joined #openstack-dev | 08:29 | |
*** mindpixel has quit IRC | 08:33 | |
Madkiss | is 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 |
Madkiss | I 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-ex | 08:34 |
*** xga has quit IRC | 08:35 | |
*** xga has joined #openstack-dev | 08:37 | |
*** bing_bu has quit IRC | 08:38 | |
*** jcoufal_ has joined #openstack-dev | 08:41 | |
*** jcoufal_ has quit IRC | 08:42 | |
*** afazekas has joined #openstack-dev | 08:47 | |
*** psedlak has joined #openstack-dev | 08:47 | |
*** prekarat has quit IRC | 08:48 | |
*** prekarat has joined #openstack-dev | 08:51 | |
*** yuanz has quit IRC | 08:51 | |
*** yuanz has joined #openstack-dev | 08:51 | |
*** corXi has joined #openstack-dev | 08:54 | |
*** zoresvit has joined #openstack-dev | 08:56 | |
*** danpb has joined #openstack-dev | 09:02 | |
alexpilotti | arosen: hi | 09:02 |
openstackgerrit | A change was merged to openstack/nova: Deprecate show_host_resources() in scheduler manager https://review.openstack.org/27974 | 09:02 |
openstackgerrit | A change was merged to openstack/nova: Add force_nodes to filter properties https://review.openstack.org/27824 | 09:02 |
*** jcoufal has quit IRC | 09:03 | |
*** jcoufal has joined #openstack-dev | 09:03 | |
*** kaushikc has joined #openstack-dev | 09:05 | |
*** frozencemetery has quit IRC | 09:05 | |
*** athomas has quit IRC | 09:08 | |
*** pixelbeat has quit IRC | 09:08 | |
*** athomas has joined #openstack-dev | 09:08 | |
*** aloga_ has joined #openstack-dev | 09:09 | |
*** arosen has quit IRC | 09:10 | |
*** glikson has quit IRC | 09:10 | |
*** zaneb has quit IRC | 09:10 | |
*** bswartz has quit IRC | 09:10 | |
*** markkropf has quit IRC | 09:10 | |
*** sld has quit IRC | 09:10 | |
*** mkerrin has quit IRC | 09:10 | |
*** johndescs has quit IRC | 09:10 | |
*** jpeeler has quit IRC | 09:10 | |
*** jd__ has quit IRC | 09:10 | |
*** primeministerp has quit IRC | 09:10 | |
*** guitarzan has quit IRC | 09:10 | |
*** guitarzan has joined #openstack-dev | 09:10 | |
*** jd__ has joined #openstack-dev | 09:10 | |
*** mkerrin has joined #openstack-dev | 09:10 | |
*** sld has joined #openstack-dev | 09:11 | |
*** zaneb has joined #openstack-dev | 09:11 | |
*** jpeeler has joined #openstack-dev | 09:11 | |
*** johndescs has joined #openstack-dev | 09:11 | |
*** glikson has joined #openstack-dev | 09:11 | |
*** arosen has joined #openstack-dev | 09:11 | |
*** aloga has quit IRC | 09:12 | |
openstackgerrit | A change was merged to openstack/glance: Fix functional test 'test_copy_from_swift' https://review.openstack.org/25126 | 09:12 |
*** xga_ has joined #openstack-dev | 09:12 | |
*** xga has quit IRC | 09:14 | |
*** kaushikc has quit IRC | 09:20 | |
*** kaushikc has joined #openstack-dev | 09:20 | |
*** primeministerp has joined #openstack-dev | 09:21 | |
*** kaushikc has quit IRC | 09:23 | |
*** kaushikc has joined #openstack-dev | 09:23 | |
*** ociuhandu has joined #openstack-dev | 09:27 | |
*** bobba has quit IRC | 09:32 | |
*** prekarat has quit IRC | 09:33 | |
*** pcm___ has joined #openstack-dev | 09:43 | |
*** pcm__ has joined #openstack-dev | 09:44 | |
openstackgerrit | A change was merged to openstack/python-glanceclient: Fix inconsistent --debug messages on image-update https://review.openstack.org/27485 | 09:46 |
*** andymccr has joined #openstack-dev | 09:46 | |
*** prekarat has joined #openstack-dev | 09:51 | |
*** rushiagr has quit IRC | 09:54 | |
*** mrunge has quit IRC | 09:54 | |
openstackgerrit | A change was merged to openstack/ceilometer: Imported Translations from Transifex https://review.openstack.org/26555 | 09:56 |
*** malini has quit IRC | 09:57 | |
*** mrunge has joined #openstack-dev | 09:59 | |
*** alexxu has quit IRC | 10:01 | |
*** xga_ has quit IRC | 10:09 | |
*** danpb has left #openstack-dev | 10:13 | |
*** llu has quit IRC | 10:13 | |
*** markmc has joined #openstack-dev | 10:18 | |
*** kaushikc has quit IRC | 10:19 | |
*** saschpe has quit IRC | 10:19 | |
*** saschpe has joined #openstack-dev | 10:23 | |
*** jtomasek has quit IRC | 10:25 | |
*** matiu has quit IRC | 10:26 | |
*** matiu has joined #openstack-dev | 10:27 | |
*** ewindisch has joined #openstack-dev | 10:30 | |
*** ondergetekende has quit IRC | 10:30 | |
*** derekh has quit IRC | 10:32 | |
*** ondergetekende has joined #openstack-dev | 10:35 | |
*** ondergetekende has joined #openstack-dev | 10:36 | |
*** mikal has quit IRC | 10:39 | |
*** mikal has joined #openstack-dev | 10:41 | |
*** prekarat has quit IRC | 10:42 | |
*** derekh has joined #openstack-dev | 10:44 | |
*** prekarat has joined #openstack-dev | 10:45 | |
*** jtomasek has joined #openstack-dev | 10:48 | |
*** Gman2 has quit IRC | 10:49 | |
*** apevec has joined #openstack-dev | 10:52 | |
*** Yada has quit IRC | 11:00 | |
*** lucasagomes has quit IRC | 11:00 | |
*** lucasagomes has joined #openstack-dev | 11:02 | |
*** jtomasek has quit IRC | 11:02 | |
*** jtomasek has joined #openstack-dev | 11:07 | |
*** HenryG has joined #openstack-dev | 11:23 | |
*** jruzicka has joined #openstack-dev | 11:24 | |
*** glikson has quit IRC | 11:29 | |
*** ewindisch has quit IRC | 11:33 | |
*** wiliam has joined #openstack-dev | 11:35 | |
*** digitalsanctum has joined #openstack-dev | 11:42 | |
*** wiliam has quit IRC | 11:44 | |
*** wiliam has joined #openstack-dev | 11:44 | |
*** garyk has joined #openstack-dev | 11:44 | |
*** jasondotstar has quit IRC | 11:45 | |
openstackgerrit | A change was merged to openstack/swift: Add an explicit unit test for handling content-length: 0 https://review.openstack.org/27152 | 11:47 |
*** wiliam has quit IRC | 11:49 | |
*** egallen has joined #openstack-dev | 11:50 | |
*** tayyab has joined #openstack-dev | 11:51 | |
*** tzumainn has joined #openstack-dev | 11:52 | |
*** jcoufal has quit IRC | 11:52 | |
*** wiliam has joined #openstack-dev | 11:52 | |
*** beagles_food is now known as beagles | 11:53 | |
*** jcoufal has joined #openstack-dev | 11:54 | |
*** kenperkins has quit IRC | 11:55 | |
openstackgerrit | A change was merged to openstack/horizon: Adding extensibility to table actions template. https://review.openstack.org/27865 | 11:58 |
*** Yada has joined #openstack-dev | 12:00 | |
*** vartom1114 has joined #openstack-dev | 12:00 | |
*** vartom1113 has quit IRC | 12:00 | |
*** ewindisch has joined #openstack-dev | 12:01 | |
*** lucasagomes has quit IRC | 12:02 | |
*** ewindisch has quit IRC | 12:02 | |
*** sthaha has quit IRC | 12:03 | |
*** xga has joined #openstack-dev | 12:03 | |
*** sandywalsh has quit IRC | 12:04 | |
*** dguitarbite has quit IRC | 12:05 | |
*** kenperkins has joined #openstack-dev | 12:07 | |
*** navid_ has quit IRC | 12:08 | |
*** roz has joined #openstack-dev | 12:09 | |
*** wiliam has quit IRC | 12:10 | |
*** xga has quit IRC | 12:10 | |
*** sgordon has joined #openstack-dev | 12:12 | |
*** xga has joined #openstack-dev | 12:12 | |
*** dhellmann has joined #openstack-dev | 12:15 | |
*** vkmc has joined #openstack-dev | 12:17 | |
*** vkmc has quit IRC | 12:17 | |
*** vkmc has joined #openstack-dev | 12:17 | |
*** sandywalsh has joined #openstack-dev | 12:17 | |
*** glikson has joined #openstack-dev | 12:18 | |
*** wiliam has joined #openstack-dev | 12:22 | |
*** dguitarbite has joined #openstack-dev | 12:24 | |
*** markvoelker has quit IRC | 12:24 | |
*** jcoufal_ has joined #openstack-dev | 12:26 | |
*** ewindisch has joined #openstack-dev | 12:28 | |
*** lucasagomes has joined #openstack-dev | 12:28 | |
*** ewindisch has quit IRC | 12:29 | |
*** kenperkins has quit IRC | 12:29 | |
*** jcoufal has quit IRC | 12:30 | |
*** jruzicka has quit IRC | 12:30 | |
*** athomas has quit IRC | 12:30 | |
*** Yada has quit IRC | 12:31 | |
*** Yada has joined #openstack-dev | 12:31 | |
*** apevec has quit IRC | 12:31 | |
*** anteaya has joined #openstack-dev | 12:33 | |
*** jruzicka has joined #openstack-dev | 12:34 | |
openstackgerrit | A change was merged to openstack/ceilometer: add links to return values from API methods https://review.openstack.org/26663 | 12:36 |
*** redbeard2 has quit IRC | 12:37 | |
*** alexxu has joined #openstack-dev | 12:39 | |
openstackgerrit | A change was merged to openstack/ceilometer: Remove "extras" again https://review.openstack.org/28127 | 12:40 |
openstackgerrit | A change was merged to openstack/quantum: Only map nicira_nvp_plugin module if installed https://review.openstack.org/28097 | 12:40 |
*** rnirmal has joined #openstack-dev | 12:41 | |
*** bknudson has joined #openstack-dev | 12:45 | |
*** mkollaro has joined #openstack-dev | 12:47 | |
*** athomas has joined #openstack-dev | 12:50 | |
*** jasondotstar has joined #openstack-dev | 12:50 | |
*** aloga_ has quit IRC | 12:53 | |
*** jcoufal_ is now known as jcoufal | 12:55 | |
*** wiliam has quit IRC | 12:56 | |
*** wiliam has joined #openstack-dev | 12:56 | |
*** erfanian has joined #openstack-dev | 12:57 | |
*** vartom1114 has quit IRC | 12:57 | |
*** lauria has joined #openstack-dev | 13:01 | |
*** xga_ has joined #openstack-dev | 13:01 | |
*** wiliam has quit IRC | 13:02 | |
*** johnthetubaguy has joined #openstack-dev | 13:03 | |
*** wiliam has joined #openstack-dev | 13:04 | |
*** xga has quit IRC | 13:05 | |
*** stevemar has joined #openstack-dev | 13:05 | |
*** stevemar has quit IRC | 13:06 | |
*** eharney has joined #openstack-dev | 13:06 | |
*** eharney is now known as Guest26661 | 13:06 | |
*** Guest26661 is now known as eharney | 13:06 | |
*** eharney has joined #openstack-dev | 13:06 | |
*** jayg|g0n3 is now known as jayg | 13:07 | |
*** alunduil has quit IRC | 13:07 | |
*** matiu has quit IRC | 13:08 | |
*** dprince has joined #openstack-dev | 13:10 | |
*** wiliam has quit IRC | 13:14 | |
*** wiliam has joined #openstack-dev | 13:15 | |
*** ayoung has quit IRC | 13:17 | |
*** matelakat has quit IRC | 13:18 | |
*** ashwini has joined #openstack-dev | 13:20 | |
*** xga_ has quit IRC | 13:22 | |
*** xga_ has joined #openstack-dev | 13:22 | |
*** wiliam has quit IRC | 13:23 | |
*** wiliam has joined #openstack-dev | 13:25 | |
*** lauria has quit IRC | 13:25 | |
*** READ10 has joined #openstack-dev | 13:27 | |
*** jecarey has joined #openstack-dev | 13:28 | |
*** jasondotstar has quit IRC | 13:29 | |
*** dolphm has joined #openstack-dev | 13:29 | |
*** ondergetekende has quit IRC | 13:30 | |
*** xga has joined #openstack-dev | 13:30 | |
*** hewbrocca has quit IRC | 13:31 | |
*** hewbrocca has joined #openstack-dev | 13:31 | |
*** xga__ has joined #openstack-dev | 13:32 | |
*** pabelanger has quit IRC | 13:32 | |
*** xga_ has quit IRC | 13:33 | |
*** kbringard has joined #openstack-dev | 13:34 | |
simo | markmc: how are multi-project spanning changes handled ? | 13:35 |
markmc | simo, got an example in mind ? | 13:35 |
*** xga has quit IRC | 13:35 | |
*** rahmu has joined #openstack-dev | 13:35 | |
simo | I 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 component | 13:35 |
*** radez_g0n3 is now known as radez | 13:36 | |
markmc | ok, well, my assumption would be that adding the code wouldn't enable it for existing configurations | 13:36 |
markmc | so, you'd add the code into oslo-incubator | 13:36 |
simo | I 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-dev | 13:36 | |
markmc | then use update.py to sync it into nova, that would be a separate commit | 13:36 |
markmc | in the commit which syncs the code, you'd make the small nova change you need | 13:36 |
markmc | then you'd do similar for keystone | 13:36 |
markmc | then you'd tell people to try it out :) | 13:37 |
*** egallen has quit IRC | 13:37 | |
markmc | simo, best is to put up anything you have and maybe mark as "Work In Progress" until it's nearly all lined up | 13:37 |
markmc | simo, anyone can see and comment on WIP reviews, but they don't show up in people's review queues and can't get approved | 13:38 |
simo | markmc: what do you mean by 'put' ? :) | 13:38 |
simo | as in push to a git repo ? | 13:38 |
markmc | simo, but nova/keystone patches to go with the oslo-incubator patches would make the job of oslo reviewer's easier | 13:38 |
markmc | simo, yeah, there's a git-review tool for pushing to gerrit | 13:38 |
simo | markmc: oslo patches are pretty well self contained and have tests that show exactly how they are used, so I am not too concerned | 13:39 |
markmc | simo, there's a git-review flag to mark the patch as work-in-progress | 13:39 |
simo | markmc: I have patches on my git trees | 13:39 |
markmc | simo, ok | 13:39 |
*** cloudchimp has joined #openstack-dev | 13:39 | |
simo | markmc: never used gerrit yet | 13:39 |
markmc | simo, ok, I tell you what - create an oslo-incubator fork on github, push to a branch there and I'll take a look and advise | 13:39 |
simo | I 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 painful | 13:40 |
*** egallen has joined #openstack-dev | 13:40 | |
simo | markmc: does it have to be on github ? I do not use it, I have my trees on fedorapeople.org | 13:40 |
markmc | simo, that's fine too | 13:40 |
*** xga_ has joined #openstack-dev | 13:40 | |
simo | ok then you can look at it here: http://fedorapeople.org/cgit/simo/public_git/oslo.git/log/?h=shared-key-msg | 13:41 |
*** jasondotstar has joined #openstack-dev | 13:41 | |
simo | markmc: I also have a nova.git tree with the small change needed there (untested still) | 13:41 |
simo | markmc: and I am going to start something in the keystone.git tree for the key server part | 13:42 |
simo | markmc: the oslo-incubator changes in the oslo.git tree however work so far (all crypto and common tests pass | 13:42 |
simo | they only lack the code to fetch SEK tickets as the server is still missing, but I have fake data in there to run the tests | 13:43 |
markmc | simo, cool, those two oslo-incubator patches look totally reasonable to submit was a WIP review | 13:43 |
markmc | simo, https://wiki.openstack.org/wiki/Gerrit_Workflow | 13:43 |
openstackgerrit | A change was merged to openstack/tempest: Added 2 user related testcases for Keystone V3API https://review.openstack.org/20688 | 13:43 |
*** bmclaughlin has joined #openstack-dev | 13:44 | |
*** xga__ has quit IRC | 13:44 | |
simo | markmc: ok I'll go ahead and start pushing those | 13:44 |
*** galstrom is now known as galstrom_zzz | 13:45 | |
simo | markmc: do I need to notify you or someone else once done ? | 13:45 |
*** eharney has quit IRC | 13:45 | |
markmc | simo, since it's a WIP review, it doesn't appear in people's queues | 13:45 |
markmc | simo, 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-dev | 13:45 | |
simo | ok | 13:46 |
simo | markmc: you in ? | 13:46 |
markmc | simo, and also follow up on your mailing list thread with a link to your reviews | 13:46 |
*** eharney has joined #openstack-dev | 13:46 | |
simo | ack | 13:46 |
*** aelkikhia has left #openstack-dev | 13:46 | |
simo | mais git-review available in fedora ? | 13:46 |
*** aelkikhia has joined #openstack-dev | 13:47 | |
markmc | simo, should be | 13:47 |
markmc | simo, btw, we're having a meeting about messaging in 15 minutes on #openstack-meeting | 13:47 |
simo | joining | 13:47 |
markmc | great | 13:47 |
*** xga_ has quit IRC | 13:48 | |
*** andrewbogott_afk is now known as andrewbogott | 13:48 | |
*** mkollaro has quit IRC | 13:49 | |
*** prekarat has quit IRC | 13:50 | |
*** pabelanger has joined #openstack-dev | 13:50 | |
*** ewindisch has joined #openstack-dev | 13:52 | |
simo | mado 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 IRC | 13:53 | |
*** sudorandom has joined #openstack-dev | 13:53 | |
simo | markmc: ^ | 13:53 |
markmc | simo, https://blueprints.launchpad.net/oslo/+spec/trusted-messaging :) | 13:54 |
*** brunnhilde has joined #openstack-dev | 13:54 | |
simo | ok one of them then :) | 13:54 |
*** jimfehlig has joined #openstack-dev | 13:57 | |
*** jecarey has quit IRC | 13:59 | |
simo | markmc: uhmm I fear I have submitted it as a real review and not a draft | 14:00 |
* simo figures out how to undo that | 14:00 | |
markmc | simo, that's fine, just press the "Work in Progress" button | 14:00 |
*** lauria has joined #openstack-dev | 14:00 | |
markmc | simo, a draft review is different from a WIP review :) | 14:00 |
*** galstrom_zzz is now known as galstrom | 14:00 | |
*** aeperezt has joined #openstack-dev | 14:01 | |
*** jvrbanac has joined #openstack-dev | 14:01 | |
simo | ah ok | 14:02 |
*** garyk has quit IRC | 14:03 | |
*** glikson has quit IRC | 14:03 | |
*** garyTh has joined #openstack-dev | 14:04 | |
*** otherwiseguy has quit IRC | 14:04 | |
*** alexxu has quit IRC | 14:05 | |
*** markkropf has joined #openstack-dev | 14:07 | |
*** wiliam has quit IRC | 14:07 | |
*** sacharya has joined #openstack-dev | 14:07 | |
*** portante|ltp has joined #openstack-dev | 14:08 | |
*** jecarey has joined #openstack-dev | 14:08 | |
*** dprince has quit IRC | 14:09 | |
*** SpamapS has quit IRC | 14:11 | |
*** russellb is now known as rustlebee | 14:11 | |
*** trapni has quit IRC | 14:11 | |
*** SpamapS has joined #openstack-dev | 14:11 | |
*** SpamapS has joined #openstack-dev | 14:11 | |
*** spzala has joined #openstack-dev | 14:12 | |
*** bswartz has joined #openstack-dev | 14:13 | |
*** xga has joined #openstack-dev | 14:17 | |
*** anteaya is now known as aunteaya | 14:18 | |
*** wiliam has joined #openstack-dev | 14:19 | |
*** cp16net is now known as cp16net|away | 14:21 | |
*** beagles is now known as seagulls | 14:21 | |
*** navid_ has joined #openstack-dev | 14:21 | |
*** dansmith is now known as Steely_Dan | 14:21 | |
*** sacharya has quit IRC | 14:23 | |
*** apevec has joined #openstack-dev | 14:23 | |
*** markmcclain has joined #openstack-dev | 14:24 | |
*** wiliam has quit IRC | 14:24 | |
*** wiliam has joined #openstack-dev | 14:26 | |
*** mdenny has joined #openstack-dev | 14:26 | |
*** FunnyLookinHat has joined #openstack-dev | 14:27 | |
openstackgerrit | A change was merged to openstack/tempest: Removed duplicate usage of TempestConfig() https://review.openstack.org/26494 | 14:28 |
*** trapni has joined #openstack-dev | 14:28 | |
*** gordc has quit IRC | 14:28 | |
*** egallen has quit IRC | 14:28 | |
*** cp16net|away is now known as cp16net | 14:30 | |
*** pabelanger has quit IRC | 14:30 | |
openstackgerrit | A change was merged to openstack/tempest: Migrate to pbr from openstack.common.setup. https://review.openstack.org/27664 | 14:31 |
*** dolphm has quit IRC | 14:32 | |
*** pabelanger has joined #openstack-dev | 14:32 | |
*** eharney has quit IRC | 14:33 | |
*** david-lyle_ is now known as david-lyle | 14:33 | |
*** pabelanger is now known as nubbie | 14:33 | |
*** nunosantos has joined #openstack-dev | 14:34 | |
openstackgerrit | A change was merged to openstack-dev/grenade: Cut over to grizzly -> havana https://review.openstack.org/28071 | 14:35 |
*** eharney has joined #openstack-dev | 14:35 | |
*** dolphm has joined #openstack-dev | 14:36 | |
*** tayyab has quit IRC | 14:37 | |
*** sdague is now known as shindig | 14:38 | |
*** PaulM has quit IRC | 14:38 | |
*** wiliam has quit IRC | 14:39 | |
*** wiliam has joined #openstack-dev | 14:40 | |
*** mrunge has quit IRC | 14:42 | |
*** dguitarbite has joined #openstack-dev | 14:43 | |
*** datsun180b has joined #openstack-dev | 14:44 | |
*** wiliam has quit IRC | 14:47 | |
openstackgerrit | A change was merged to openstack/nova: Fix key error when create lpar instance failed https://review.openstack.org/27582 | 14:48 |
openstackgerrit | A change was merged to openstack/quantum: Imported Translations from Transifex https://review.openstack.org/28147 | 14:48 |
*** wiliam has joined #openstack-dev | 14:48 | |
*** gordc has joined #openstack-dev | 14:49 | |
lauria | mordred: Hi Monty, have you had a chance to look at may flake8 extension WIP yet? https://review.openstack.org/#/c/27920/ thanks | 14:49 |
mordred | lauria: gah. yes. and I need to make a patch to hacking to make it work the way you want it to | 14:50 |
mordred | lauria: you _you_ could... :) | 14:50 |
mordred | but I'll try to get to that today | 14:50 |
*** anuj has joined #openstack-dev | 14:50 | |
lauria | mordred: thanks. Please ping me when you have it, great. | 14:51 |
*** markwash has quit IRC | 14:51 | |
*** baba has joined #openstack-dev | 14:52 | |
anuj | Hi. I had a question related to how requests are routed in Nova | 14:52 |
*** megha has quit IRC | 14:52 | |
*** galstrom is now known as galstrom_zzz | 14:53 | |
*** jaypipes has quit IRC | 14:54 | |
*** anuj has left #openstack-dev | 14:58 | |
*** sacharya has joined #openstack-dev | 14:58 | |
*** lauria has quit IRC | 14:58 | |
*** cp16net is now known as cp16net|away | 14:59 | |
*** lauria has joined #openstack-dev | 14:59 | |
dolphm | apevec: reading back in irc from yesterday -- you still need a 2013.1.1 in keystone i assume? | 14:59 |
*** crandquist has joined #openstack-dev | 14:59 | |
*** jaypipes has joined #openstack-dev | 15:00 | |
*** xga has quit IRC | 15:00 | |
*** xga has joined #openstack-dev | 15:00 | |
*** nunosantos has quit IRC | 15:00 | |
*** nunosantos has joined #openstack-dev | 15:01 | |
*** flaper87 has quit IRC | 15:03 | |
*** ewindisch has quit IRC | 15:03 | |
*** reidrac has left #openstack-dev | 15:04 | |
*** flaper87 has joined #openstack-dev | 15:05 | |
ekarlso | dolphm: how goes policy stuff ? | 15:06 |
dolphm | ekarlso: can you be more specific? lol | 15:06 |
apevec | dolphm, thanks, I found ttx's scripts and created .1 milestones in all projects | 15:07 |
ttx | apevec: you can do that manually too | 15:07 |
apevec | dolphm, I just cloudn't find it in web ui | 15:07 |
apevec | ttx, please tell me where | 15:08 |
dolphm | ttx: apevec: i'm ready to push a manual tag, should i not? | 15:08 |
ttx | apevec: https://launchpad.net/nova/grizzly "create milestone" | 15:08 |
ekarlso | dolphm: rbac / finegrained | 15:08 |
ttx | dolphm: a manual tag to what ? | 15:08 |
apevec | dolphm, tag? | 15:08 |
dolphm | ttx: tag 2013.1.1? | 15:08 |
apevec | dolphm, ah not yet | 15:08 |
apevec | release is May 9th | 15:09 |
ttx | dolphm: you probably shouldn't | 15:09 |
apevec | we're not in freeze but still might have critical fixes if found | 15:09 |
apevec | s/not/now/ | 15:09 |
dolphm | ttx: k; i just saw an ask from apevec from yesterday that appeared to go unanswered | 15:09 |
ttx | dolphm: as a general rule, you shoudl only push tags to the client projects | 15:09 |
dolphm | apevec: 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 change | 15:09 |
ttx | and let the release dudes handle the server part | 15:09 |
*** maoy has joined #openstack-dev | 15:09 | |
apevec | dolphm, which one? is there lp# ? | 15:10 |
ttx | apevec: anything else you need help with ? | 15:10 |
dolphm | trying to find a solution that minimized impact | 15:10 |
*** galstrom_zzz is now known as galstrom | 15:10 | |
dolphm | apevec: there may actually be dupes, but this is one https://bugs.launchpad.net/keystone/+bug/1175838 | 15:10 |
uvirtbot | Launchpad bug 1175838 in keystone "LDAP Backend breaks when no attribute available for domain" [Critical,New] | 15:10 |
apevec | ttx, should be good for now | 15:10 |
*** Daviey has quit IRC | 15:10 | |
*** wiliam has quit IRC | 15:10 | |
*** dprince has joined #openstack-dev | 15:10 | |
*** psedlak has quit IRC | 15:11 | |
davidkranz | markmc: Who has +2 on tempest stable branches? | 15:12 |
*** wiliam has joined #openstack-dev | 15:12 | |
apevec | davidkranz, looks like stable-maint has | 15:13 |
apevec | davidkranz, is that about https://review.openstack.org/#/c/28157/ ? | 15:13 |
*** rcleere has joined #openstack-dev | 15:13 | |
davidkranz | apevec: Yes | 15:13 |
markmc | apevec, davidkranz, it should be tempest-core, if it's not I think that's a bug | 15:14 |
apevec | markmc, it's a bug then | 15:14 |
davidkranz | Sean is going to sort it out with infra. | 15:14 |
markmc | great | 15:14 |
*** kmartin has quit IRC | 15:14 | |
markmc | we've been over this a few times now :) | 15:14 |
davidkranz | markmc: :) | 15:15 |
*** katylava has joined #openstack-dev | 15:15 | |
*** shindig is now known as sdague | 15:15 | |
*** jeblair is now known as corvus | 15:17 | |
simo | markmc: what was the procdeure to add dependencies to oslo-incubator? (nee PyCrypto) | 15:18 |
markmc | simo, this should help: https://wiki.openstack.org/wiki/Requirements | 15:18 |
simo | thanks | 15:19 |
*** lauria_ has joined #openstack-dev | 15:19 | |
*** malini1 has joined #openstack-dev | 15:19 | |
*** lauria has quit IRC | 15:19 | |
*** lauria_ is now known as lauria | 15:19 | |
*** jecarey_ has joined #openstack-dev | 15:19 | |
sdague | markmc: 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-maint | 15:20 |
*** jecarey has quit IRC | 15:20 | |
markmc | sdague, so long as tempest-core has +2 too, that'd be fine | 15:20 |
sdague | yep, ok, let me figure out how to fix that | 15:20 |
markmc | sdague, no point in stable-maint having exclusive +2 for something they're not looking at | 15:20 |
markmc | sdague, cool | 15:21 |
sdague | yep, agreed :) | 15:21 |
*** mordred is now known as TheRonin | 15:21 | |
sdague | honestly, we just haven't had backports until today :) so everyone scratched their head when they couldn't +2 it | 15:21 |
*** nunosantos has quit IRC | 15:22 | |
simo | markmc: uh pycrypto is already there ... do I need to add it to test-requires if it is used in tests ? | 15:23 |
markmc | simo, yeah | 15:23 |
apevec | m | 15:24 |
simo | so test builders don't source the pip-requires file ? | 15:24 |
apevec | oops | 15:24 |
simo | I do not explictly reference the module in a test but the test imports rpc/crypto.py that imports it | 15:24 |
apevec | markmc, simo - I see in tox.ini: deps = -r{toxinidir}/tools/pip-requires | 15:25 |
apevec | -r{toxinidir}/tools/test-requires | 15:25 |
apevec | so should be enough in pip-requires | 15:25 |
simo | and it is ... | 15:25 |
markmc | yeah, sorry | 15:25 |
simo | is there project specific requires ? | 15:25 |
markmc | I thought it wasn't in pip-requires | 15:26 |
markmc | ah | 15:26 |
markmc | needs to be in oslo-incubator/tools/*-requires too | 15:26 |
simo | ah yeah tools/pip-requires in oslo-incubator too | 15:26 |
simo | yup | 15:26 |
simo | ok that makes it easyer :) | 15:26 |
markmc | adding it to requirements/tools/*-requires is just to get it into the pypi mirror | 15:26 |
simo | yeah | 15:27 |
simo | ok sorted out, tx | 15:27 |
markmc | great | 15:27 |
simo | markmc: 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 |
simo | apevec: ^ | 15:28 |
markmc | simo, it's worth finding out whether OpenStack generally can use 2.0.1 happily | 15:28 |
markmc | simo, if so, the minimum version could be lowered | 15:28 |
simo | markmc: I will raise the issue internally, I guess so someone can find out | 15:28 |
markmc | simo, if not, it's not a huge deal - we can use a newer version than the one that's in core RHEL | 15:29 |
simo | yup | 15:29 |
apevec | simo, iirc pbrady patched something in glance so it can work with older pycrypto | 15:29 |
apevec | so check w/ him | 15:29 |
simo | ack | 15:30 |
openstackgerrit | A change was merged to openstack/nova: Add missing tests for db.floating_ip_* methods https://review.openstack.org/27943 | 15:30 |
*** sdague is now known as shindig | 15:30 | |
*** navid_ has left #openstack-dev | 15:30 | |
*** rahmu has quit IRC | 15:30 | |
*** utlemming has joined #openstack-dev | 15:31 | |
*** NobodyCam is now known as Blart_Versenwald | 15:31 | |
*** kmartin has joined #openstack-dev | 15:34 | |
openstackgerrit | A change was merged to openstack/nova: Remove race condition (in FloatingIps) https://review.openstack.org/23466 | 15:34 |
*** clarkb is now known as ngihneni | 15:34 | |
*** terryh has joined #openstack-dev | 15:34 | |
*** zoresvit has quit IRC | 15:34 | |
*** wiliam has quit IRC | 15:34 | |
*** terryh has quit IRC | 15:35 | |
*** terryh has joined #openstack-dev | 15:35 | |
*** wiliam has joined #openstack-dev | 15:36 | |
*** dguitarbite has quit IRC | 15:37 | |
*** markmcclain has quit IRC | 15:38 | |
*** portante|afk is now known as portante | 15:38 | |
*** markmcclain has joined #openstack-dev | 15:39 | |
*** markmcclain has quit IRC | 15:39 | |
*** athomas has quit IRC | 15:39 | |
*** colinmcnamara has joined #openstack-dev | 15:41 | |
*** devananda is now known as deva | 15:41 | |
*** bdpayne has joined #openstack-dev | 15:42 | |
openstackgerrit | A change was merged to openstack/nova: nova coverage creates lots of empty folders https://review.openstack.org/27049 | 15:43 |
*** navid_ has joined #openstack-dev | 15:43 | |
*** GheRivero is now known as qwerty | 15:43 | |
*** qwerty is now known as Guest5243 | 15:43 | |
*** maoy_ has joined #openstack-dev | 15:44 | |
*** maoy has quit IRC | 15:45 | |
*** maoy_ is now known as maoy | 15:45 | |
*** devoid has joined #openstack-dev | 15:45 | |
*** mrodden has quit IRC | 15:46 | |
apevec | eglynn, jd__ - I've created https://launchpad.net/ceilometer/+milestone/2013.1.1 | 15:46 |
*** malini1 has quit IRC | 15:47 | |
eglynn | apevec: thank you sir! | 15:47 |
apevec | eglynn, you can target bugs which you want fixed on stable | 15:47 |
openstackgerrit | A change was merged to openstack/nova: fix broken WSDL logic https://review.openstack.org/27463 | 15:47 |
eglynn | apevec: will do! | 15:47 |
*** Daviey has joined #openstack-dev | 15:47 | |
alexpilotti | arosen: ping | 15:48 |
apevec | eglynn, do you see "Target to series" when looking at bug in LP? | 15:48 |
jd__ | apevec: thanks :) | 15:48 |
*** athomas has joined #openstack-dev | 15:49 | |
eglynn | apevec: yes, but I've setting Milestone field (should both be set?) | 15:49 |
apevec | eglynn, target to grizzly first, then set 2013.1.1 milestone on that bug branch | 15:50 |
apevec | main branch is for the next release | 15:50 |
simo | in gerrit how do I save a comment w/o making it a review ? | 15:51 |
simo | (it's a reply) | 15:51 |
eglynn | apevec: got it, thanks! | 15:51 |
apevec | simo, just keep score at 0 | 15:51 |
apevec | afaik you have to press "Review" in order to save comments | 15:51 |
simo | odd | 15:52 |
simo | ok | 15:52 |
*** jcoufal has quit IRC | 15:52 | |
*** mmagr has quit IRC | 15:53 | |
*** xga has quit IRC | 15:55 | |
*** yolanda has quit IRC | 15:56 | |
*** Ryan_Lane has joined #openstack-dev | 15:56 | |
*** wiliam has quit IRC | 15:57 | |
*** electrichead has joined #openstack-dev | 15:57 | |
*** yolanda has joined #openstack-dev | 15:57 | |
*** wiliam has joined #openstack-dev | 15:57 | |
*** mkollaro has joined #openstack-dev | 15:58 | |
*** Blart_Versenwald has quit IRC | 15:58 | |
*** navid_ has left #openstack-dev | 15:59 | |
*** alop has joined #openstack-dev | 16:00 | |
*** portante is now known as portante|afk | 16:00 | |
*** trapni has quit IRC | 16:01 | |
*** johnthetubaguy has quit IRC | 16:03 | |
*** malini1 has joined #openstack-dev | 16:04 | |
*** yolanda has quit IRC | 16:04 | |
*** prekarat has joined #openstack-dev | 16:05 | |
*** portante|ltp has quit IRC | 16:05 | |
*** utlemming has quit IRC | 16:05 | |
*** ashwini has quit IRC | 16:06 | |
*** yolanda has joined #openstack-dev | 16:06 | |
*** wiliam has quit IRC | 16:06 | |
*** prekarat has quit IRC | 16:07 | |
*** prekarat has joined #openstack-dev | 16:08 | |
*** jgallard has quit IRC | 16:09 | |
*** susanne-balle has quit IRC | 16:10 | |
*** wiliam has joined #openstack-dev | 16:10 | |
*** susanne-balle has joined #openstack-dev | 16:10 | |
*** gary_th has joined #openstack-dev | 16:11 | |
*** garyTh has quit IRC | 16:13 | |
*** jpich has quit IRC | 16:14 | |
*** lauria has quit IRC | 16:14 | |
*** lauria has joined #openstack-dev | 16:16 | |
*** wiliam has quit IRC | 16:16 | |
*** ijw has quit IRC | 16:18 | |
*** fbo_ has quit IRC | 16:19 | |
*** hemnafk is now known as hemna | 16:19 | |
*** crandquist has quit IRC | 16:20 | |
*** jd__ is now known as Jenkins` | 16:21 | |
*** Jenkins` is now known as jd__ | 16:21 | |
*** crandquist has joined #openstack-dev | 16:22 | |
*** gyee has joined #openstack-dev | 16:22 | |
openstackgerrit | A change was merged to openstack/nova: Update oslo-incubator import. https://review.openstack.org/28099 | 16:25 |
*** digitalsanctum has quit IRC | 16:26 | |
*** wiliam has joined #openstack-dev | 16:29 | |
openstackgerrit | A change was merged to openstack/nova: Update our import of oslo's processutils. https://review.openstack.org/28123 | 16:30 |
*** deva has quit IRC | 16:30 | |
*** amir1 is now known as asadoughi | 16:31 | |
*** wiliam has quit IRC | 16:32 | |
*** jecarey_ has quit IRC | 16:32 | |
*** jecarey has joined #openstack-dev | 16:33 | |
*** wiliam has joined #openstack-dev | 16:33 | |
*** colinmcnamara has quit IRC | 16:37 | |
simo | does gerrit rebuild automatically when you update patches ? | 16:40 |
*** markmcclain has joined #openstack-dev | 16:40 | |
apevec | simo, jenkins does, it watches for new patch sets and runs "check" jobs | 16:41 |
simo | ah ok it was just slower I guess | 16:41 |
simo | I see finally a new -1 :-) | 16:41 |
*** Guest5243 is now known as GheRivero-afw | 16:42 | |
*** wiliam has quit IRC | 16:43 | |
apevec | simo, here are some details and further links about Gerrit/Jenkins integration https://wiki.openstack.org/wiki/GerritJenkinsGithub#Test_Failures | 16:43 |
*** anniec has joined #openstack-dev | 16:43 | |
*** vmilev has joined #openstack-dev | 16:43 | |
simo | apevec: excellent thanks | 16:44 |
*** wiliam has joined #openstack-dev | 16:45 | |
*** derekh has quit IRC | 16:45 | |
*** andrew_plunk has quit IRC | 16:46 | |
*** gyee has quit IRC | 16:46 | |
*** kenperkins has joined #openstack-dev | 16:48 | |
*** ashwini has joined #openstack-dev | 16:49 | |
*** gyee has joined #openstack-dev | 16:50 | |
*** fbo has joined #openstack-dev | 16:51 | |
*** aelkikhia has quit IRC | 16:52 | |
*** Ryan_Lane has quit IRC | 16:52 | |
*** cp16net|away is now known as cp16net | 16:54 | |
*** reed has joined #openstack-dev | 16:55 | |
*** comstud is now known as bearhands | 16:55 | |
*** wiliam has quit IRC | 16:59 | |
*** jdurgin1 has quit IRC | 16:59 | |
*** esp has joined #openstack-dev | 16:59 | |
*** esp has left #openstack-dev | 17:00 | |
*** wiliam has joined #openstack-dev | 17:00 | |
*** markwash has joined #openstack-dev | 17:01 | |
*** Ryan_Lane has joined #openstack-dev | 17:01 | |
*** andrewbogott is now known as andrewbogott_afk | 17:05 | |
*** yolanda has quit IRC | 17:06 | |
*** yidclare has quit IRC | 17:07 | |
*** topol has joined #openstack-dev | 17:08 | |
*** yidclare has joined #openstack-dev | 17:09 | |
*** cp16net is now known as cp16net|away | 17:12 | |
*** sacharya has quit IRC | 17:12 | |
*** lauria_ has joined #openstack-dev | 17:13 | |
*** lauria has quit IRC | 17:13 | |
*** lauria_ is now known as lauria | 17:13 | |
*** jdurgin1 has joined #openstack-dev | 17:13 | |
*** wiliam has quit IRC | 17:15 | |
openstackgerrit | A change was merged to openstack/nova: Adds --addn-hosts to the dnsmasq arg list https://review.openstack.org/28108 | 17:17 |
openstackgerrit | A change was merged to openstack/cinder: Check that volume is at least minDisk size. https://review.openstack.org/28030 | 17:17 |
*** jog0 has joined #openstack-dev | 17:17 | |
*** nunosantos has joined #openstack-dev | 17:19 | |
*** wiliam has joined #openstack-dev | 17:19 | |
*** corXi has quit IRC | 17:20 | |
*** galstrom is now known as galstrom_zzz | 17:20 | |
dolphm | topol: regarding the default domain in ldap... http://lists.openstack.org/pipermail/openstack-stable-maint/2013-May/000611.html | 17:24 |
*** galstrom_zzz is now known as galstrom | 17:24 | |
dolphm | topol: is there a backportable approach in review? | 17:24 |
*** ladquin has joined #openstack-dev | 17:26 | |
*** wiliam has quit IRC | 17:26 | |
*** vmilev has quit IRC | 17:26 | |
*** vmilev_ has joined #openstack-dev | 17:26 | |
topol | dolphm, give me 5 mins | 17:28 |
*** ladquin is now known as noisylaura | 17:28 | |
dolphm | topol: np; ayoung file (another?) bug on the issue... i swear it's a dupe but can't find the original | 17:28 |
*** edmund has joined #openstack-dev | 17:29 | |
dolphm | topol: new one- https://bugs.launchpad.net/keystone/+bug/1175838 | 17:29 |
uvirtbot | Launchpad bug 1175838 in keystone "LDAP Backend breaks when no attribute available for domain" [Critical,New] | 17:29 |
*** wiliam has joined #openstack-dev | 17:30 | |
*** nubbie has quit IRC | 17:31 | |
openstackgerrit | A change was merged to openstack/cinder: Remove old_name from kwargs when using IET helper. https://review.openstack.org/27938 | 17:32 |
openstackgerrit | A change was merged to openstack/cinder: Fix LHN driver to allow backend name configuration https://review.openstack.org/27837 | 17:32 |
openstackgerrit | A change was merged to openstack/swift: Skip cname_lookup when host is an IP address https://review.openstack.org/27428 | 17:32 |
*** galstrom is now known as galstrom_zzz | 17:34 | |
*** mkerrin has quit IRC | 17:35 | |
*** kenperkins has quit IRC | 17:35 | |
*** sarob has joined #openstack-dev | 17:36 | |
*** nubbie has joined #openstack-dev | 17:36 | |
*** Ryan_Lane has quit IRC | 17:39 | |
*** zb has joined #openstack-dev | 17:40 | |
*** sacharya has joined #openstack-dev | 17:40 | |
*** kmartin has quit IRC | 17:42 | |
katylava | this 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 |
openstackgerrit | A change was merged to openstack/cinder: Fixes 3par driver methods that were double locking https://review.openstack.org/28112 | 17:42 |
apevec | dolphm, maybe this one? https://bugs.launchpad.net/keystone/+bug/1168726 | 17:42 |
uvirtbot | Launchpad bug 1168726 in keystone "default_domain_id breaks the ability to map keystone to ldap" [Undecided,In progress] | 17:42 |
*** vmilev_ has quit IRC | 17:42 | |
*** timjr has joined #openstack-dev | 17:42 | |
*** mkollaro has quit IRC | 17:43 | |
*** vmilev_ has joined #openstack-dev | 17:43 | |
*** zaneb has quit IRC | 17:43 | |
*** reed has quit IRC | 17:43 | |
dolphm | apevec: yep! that's it, thanks | 17:43 |
apevec | that one has a patch in gerrit, but it failed in Jenkins | 17:44 |
*** epende_ has quit IRC | 17:44 | |
topol | dolphm, pretty sure its a dupe | 17:45 |
dolphm | topol: marked as such | 17:45 |
*** Mandell has joined #openstack-dev | 17:46 | |
*** salgado has joined #openstack-dev | 17:47 | |
*** kmartin has joined #openstack-dev | 17:47 | |
*** salgado has quit IRC | 17:48 | |
*** comptona has joined #openstack-dev | 17:49 | |
*** comptona has left #openstack-dev | 17:49 | |
*** salgado has joined #openstack-dev | 17:49 | |
*** salgado has joined #openstack-dev | 17:49 | |
*** jvrbanac has quit IRC | 17:50 | |
*** mkollaro has joined #openstack-dev | 17:52 | |
*** PaulM has joined #openstack-dev | 17:53 | |
*** wiliam has quit IRC | 17:53 | |
*** wiliam has joined #openstack-dev | 17:54 | |
apevec | shardy, does Heat team want/need 2013.1.1 stable release? | 17:54 |
*** pmcg has quit IRC | 17:54 | |
apevec | same as Ceilo, it was incubating in Grizzly, so it's not covered by stable branch policy | 17:55 |
apevec | Ceilometer team is preparing backports and I'll help them with LP and release procedure | 17:56 |
apevec | unofficially :) | 17:56 |
*** pmcg has joined #openstack-dev | 17:56 | |
*** Ryan_Lane has joined #openstack-dev | 17:57 | |
*** colinmcnamara has joined #openstack-dev | 17:57 | |
*** markmcclain has quit IRC | 17:58 | |
spzala | topol: Hi | 17:59 |
topol | dolphm, plz ask your question to sahdev | 17:59 |
topol | on the domain | 17:59 |
*** rcleere has quit IRC | 17:59 | |
topol | spzala | 17:59 |
spzala | dolphm: Hi! | 18:00 |
dolphm | topol: spzala: o/ | 18:01 |
dolphm | spzala: 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.1 | 18:02 |
*** wiliam has quit IRC | 18:02 | |
spzala | dolphm: yes this patch is candidate for backporting https://review.openstack.org/#/c/25329/ | 18:03 |
dolphm | spzala: 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-dev | 18:03 | |
spzala | dolphm: ayound and also Henry too were OK with that approach for a quick fix | 18:03 |
*** wiliam has joined #openstack-dev | 18:04 | |
*** cdub has quit IRC | 18:04 | |
spzala | dolphm: but yes agree it's a quick fix for the issue but yes, not a fully baked | 18:04 |
dolphm | spzala: sorry, 25329 is not viable as a backport at all, that's just a new feature | 18:04 |
*** salgado has quit IRC | 18:04 | |
spzala | oops sorry | 18:04 |
spzala | dolphm: I was too quick to copy paste | 18:04 |
dolphm | spzala: wrong review? | 18:04 |
spzala | dolphm: yes, sorry I meant to say this one https://review.openstack.org/#/c/27364/ | 18:05 |
dolphm | whew, was hoping that was the case :) | 18:05 |
spzala | dolphm: for backporting | 18:05 |
*** sarob__ has joined #openstack-dev | 18:05 | |
spzala | dolphm: ha ha :) | 18:05 |
topol | :-) | 18:05 |
*** cdub has joined #openstack-dev | 18:06 | |
dolphm | spzala: thoughts on the diff i posted above? | 18:06 |
*** rcleere has joined #openstack-dev | 18:06 | |
*** sarob has quit IRC | 18:06 | |
*** dhellmann is now known as dhellmann-away | 18:06 | |
*** cdub_ has quit IRC | 18:07 | |
*** sarob_ has quit IRC | 18:07 | |
*** gyee has quit IRC | 18:07 | |
*** cdub_ has joined #openstack-dev | 18:07 | |
spzala | dolphm: agree that ayoung's new bug is sort of dup i..e https://bugs.launchpad.net/keystone/+bug/1175838 | 18:07 |
uvirtbot | Launchpad bug 1175838 in keystone "LDAP Backend breaks when no attribute available for domain (dup-of: 1168726)" [Critical,New] | 18:07 |
uvirtbot | Launchpad bug 1168726 in keystone "default_domain_id breaks the ability to map keystone to ldap" [Critical,In progress] | 18:07 |
dolphm | spzala: already closed it | 18:08 |
spzala | dolphm: oh.. | 18:08 |
spzala | dolphm: 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 topol | 18:09 |
*** dprince has quit IRC | 18:09 | |
dolphm | topol: spzala: were there any other required schema changes moving from folsom to grizzly? | 18:09 |
*** wiliam has quit IRC | 18:09 | |
dolphm | spzala: i meant this http://paste.openstack.org/raw/36785/ | 18:09 |
spzala | dolphm: I don't think so except that one | 18:10 |
*** wiliam has joined #openstack-dev | 18:11 | |
spzala | dolphm: oh missed that one .. yes that looks pretty good | 18:12 |
spzala | dolphm: should we have this " def get_domain(self, domain_id):" as " def get_domain(self) " | 18:13 |
spzala | dolphm: just a though so that no one try to get something we don't support | 18:13 |
*** m4dcoder has joined #openstack-dev | 18:13 | |
dolphm | spzala: it still has to expose the driver's full interface, so no | 18:13 |
*** jecarey has quit IRC | 18:13 | |
spzala | dolphm: OK, cool | 18:13 |
*** jecarey has joined #openstack-dev | 18:14 | |
m4dcoder | if 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-dev | 18:16 | |
spzala | dolphm: what's the action item for me? | 18:16 |
*** rnirmal has quit IRC | 18:17 | |
*** wiliam has quit IRC | 18:17 | |
topol | dolphm, I htink spzala is trying what he needs to do to get this blessed by you | 18:17 |
dolphm | topol: define "this" ;) | 18:17 |
dolphm | spzala: i wasn't sure if i explained my idea in your review very clearly, so i figured i'd illustrate | 18:18 |
*** mrodden has joined #openstack-dev | 18:18 | |
*** devananda has joined #openstack-dev | 18:18 | |
*** wiliam has joined #openstack-dev | 18:18 | |
topol | this = rewrite the code to make you happy | 18:18 |
dolphm | spzala: i have no idea how much more work is involved to make this go (test changes?) or if any config would suddenly be useless | 18:18 |
spzala | dolphm: I was refering action item in reference to the changes you suggested ? | 18:18 |
dolphm | topol: i also want to make sure ldappers are happy | 18:19 |
*** markmc has quit IRC | 18:19 | |
topol | for the backport bug fix ldapers want it not to be broken like it is now | 18:19 |
spzala | dolphm: thanks for illustrating :) .. I was worried about the tests... we will need "pass" many domain specific tests in test ldap backend | 18:20 |
*** otherwiseguy has joined #openstack-dev | 18:20 | |
dolphm | topol: does cutting domain crud completely from grizzly qualify as happy? obviously spzala's patch tries to maintain that | 18:20 |
*** johndescs has left #openstack-dev | 18:22 | |
dolphm | topol: 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 |
dolphm | i'm not sure how this would impact them (maybe only if they're already using multi-domain support?) | 18:24 |
topol | dolphm, so let me make sure I understand. | 18:28 |
topol | I think we want to set the tone of one domain per ldap. That's what we discussed previously. | 18:29 |
*** mkollaro1 has joined #openstack-dev | 18:29 | |
*** mkollaro has quit IRC | 18:29 | |
topol | I 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 |
spzala | dolphm: agree.. my thinking is probably none | 18:30 |
topol | So I think we can put the patch in and not maintain the crud interface for domain. | 18:31 |
dolphm | spzala: i know jcannava got LDAP/AD working with multi-domain support, but he wasn't starting from an existing schema | 18:31 |
dolphm | jcannava: unless you also wrote something to migrate schemas? | 18:31 |
*** colinmcnamara has quit IRC | 18:31 | |
*** prekarat has quit IRC | 18:31 | |
topol | We 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 |
topol | s/was/way | 18:33 |
topol | We could always ad it back later if learn from stakeholders the right way to add it in | 18:33 |
topol | s/ad/add | 18:33 |
topol | dolphm, make sense? | 18:33 |
*** wiliam has quit IRC | 18:33 | |
*** prekarat has joined #openstack-dev | 18:34 | |
*** mkollaro1 has quit IRC | 18:35 | |
*** mkollaro has joined #openstack-dev | 18:35 | |
*** colinmcnamara has joined #openstack-dev | 18:35 | |
*** cp16net|away is now known as cp16net | 18:35 | |
*** wiliam has joined #openstack-dev | 18:36 | |
*** vipul is now known as vipul|away | 18:37 | |
*** vipul|away is now known as vipul | 18:37 | |
*** eharney has quit IRC | 18:37 | |
*** zzs has joined #openstack-dev | 18:38 | |
*** anniec has quit IRC | 18:39 | |
*** zzs has left #openstack-dev | 18:40 | |
dolphm | topol: trying to parse all the find/replaces, hold on | 18:40 |
*** tzumainn has quit IRC | 18:41 | |
dolphm | topol: if ya'll like this approach, lets get it into master, and then we'll make a lot of noise about backporting it | 18:42 |
*** sarob__ has quit IRC | 18: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-dev | 18:42 | |
*** cdub has quit IRC | 18:43 | |
*** cdub has joined #openstack-dev | 18:43 | |
*** frozencemetery has joined #openstack-dev | 18:44 | |
*** gordc has quit IRC | 18:45 | |
*** stevemar has joined #openstack-dev | 18:45 | |
*** wiliam has quit IRC | 18:46 | |
*** sarob has quit IRC | 18:47 | |
topol | dolphm, 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-dev | 18:47 | |
*** zbitter has joined #openstack-dev | 18:47 | |
dolphm | topol: i agree, especially the asap part | 18:48 |
*** wiliam has joined #openstack-dev | 18:48 | |
dolphm | topol: did you look at that diff, btw? | 18:48 |
topol | dolphm, which diff? | 18:48 |
topol | working from memory on this? | 18:48 |
dolphm | topol: http://paste.openstack.org/raw/36785/ | 18:49 |
*** zb has quit IRC | 18:50 | |
*** digitalsanctum has joined #openstack-dev | 18:50 | |
*** galstrom_zzz is now known as galstrom | 18:52 | |
*** vipul is now known as vipul|away | 18:52 | |
topol | dolphm, 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 |
dolphm | topol: haha | 18:53 |
spzala | dolphm: on the diff - you have "self._append_default_domain(x)" - wondering if you meant to say "self._set_default_domain(x)" ? | 18:53 |
dolphm | spzala: probably, i literally stopped where i was at and pasted it | 18:53 |
dolphm | spzala: continuing now | 18:53 |
*** wiliam has quit IRC | 18:54 | |
spzala | dolphm: :) OK, np. thanks. | 18:54 |
topol | so dolphm, are you writing this patch yourself? | 18:54 |
dolphm | topol: i'm happy to do this part... when it gets ldap i might start crying | 18:54 |
dolphm | ldappy* | 18:54 |
dolphm | or however you make ldap an adjective | 18:55 |
*** wiliam has joined #openstack-dev | 18:56 | |
topol | dolphm, 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 |
topol | spzala, will take whatever piece you want him to do | 18:56 |
topol | dolphm, we were done in like 10-15mins. It was outrageous | 18:57 |
dolphm | topol: WIN | 18:57 |
*** vipul|away is now known as vipul | 18:57 | |
topol | all those chats on bartering for stuff on TF2. Outrageous | 18:58 |
topol | (yeah, I snoop on his chat history) | 18:58 |
dolphm | he's going to be a businessman in no time | 18:58 |
*** esp has joined #openstack-dev | 19:01 | |
*** jecarey_ has joined #openstack-dev | 19:02 | |
*** wiliam has quit IRC | 19:03 | |
*** jecarey has quit IRC | 19:03 | |
*** eglynn has quit IRC | 19:04 | |
*** wiliam has joined #openstack-dev | 19:04 | |
*** novas0x2a|laptop has joined #openstack-dev | 19:04 | |
*** prekarat has quit IRC | 19:04 | |
*** dhellmann-away is now known as dhellmann | 19:06 | |
*** litong has joined #openstack-dev | 19:06 | |
*** ociuhandu has quit IRC | 19:06 | |
*** ociuhandu has joined #openstack-dev | 19:07 | |
*** ociuhandu has quit IRC | 19:07 | |
*** eharney has joined #openstack-dev | 19:08 | |
*** apevec has quit IRC | 19:08 | |
*** drewlander has quit IRC | 19:10 | |
*** wiliam has quit IRC | 19:10 | |
*** wiliam has joined #openstack-dev | 19:12 | |
openstackgerrit | A change was merged to openstack/quantum: Fix usage of Query.all() and NoResultFound https://review.openstack.org/27687 | 19:13 |
openstackgerrit | A change was merged to openstack/quantum: Treat unbound port https://review.openstack.org/27815 | 19:13 |
*** aeperezt has quit IRC | 19:14 | |
*** jruzicka has quit IRC | 19:14 | |
jcannava | dolphm: I got it working with existing ldap, but I made it work without modifying the existing schema which may not always be realistic | 19:17 |
dolphm | topol: spzala: ^ | 19:18 |
dolphm | jcannava: was that just with this? https://gist.github.com/dolph/5489485/raw/522f2e8803cddd5aec65e14282823bb5ad966984/keystone.conf | 19:18 |
dolphm | jcannava: this was the AD config you sent me | 19:18 |
spzala | dolphm: yep here | 19:19 |
*** wiliam has quit IRC | 19:19 | |
topol | dolphm, why did it not need a default domain explicitly created??? | 19:19 |
dolphm | jcannava: "without modifying the existing schema" is the part i thought was impossible | 19:19 |
jcannava | dolphm: 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 Role | 19:19 |
jcannava | so then you are correct, I missed the AD part | 19:20 |
*** wiliam has joined #openstack-dev | 19:20 | |
dolphm | jcannava: was that different for read-only ldap? | 19:20 |
jcannava | dolphm: yes for LDAP I didnt' have to modify the schema at all | 19:21 |
dolphm | jcannava: how did you handle the default domain requirement? | 19:21 |
*** aeperezt has joined #openstack-dev | 19:22 | |
jcannava | created 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 domains | 19:22 |
topol | ahh | 19:22 |
dolphm | topol: so, tell me we don't need to backport anything now? :D | 19:23 |
topol | agreed. dolphm, its not a schema change, he added the missing entry | 19:23 |
dolphm | our config out of the box just isn't ideal | 19:23 |
topol | no, if you have a readonly ldap his solution wont work | 19:23 |
topol | your screwed | 19:23 |
dolphm | topol: read only from keystone's perspective, but that doesn't mean you can manually go poke at your ldap server | 19:24 |
spzala | topol: that's something similar to the work around we thought of | 19:24 |
topol | dude, most real enterprise customers that is not allowed | 19:24 |
*** rnirmal has joined #openstack-dev | 19:24 | |
dolphm | topol: nevermind the paperwork | 19:24 |
topol | its a pain. the folks doing the openstack work know they cant change LDAP/AD at all. | 19:25 |
topol | so as a first impression openstack gets a black eye for requiring ldap additions | 19:25 |
topol | with 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 once | 19:27 |
dolphm | i understand | 19:27 |
spzala | dolphm: 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 |
dolphm | spzala: will do | 19:28 |
*** esp has left #openstack-dev | 19:28 | |
dolphm | spzala: i hope you feel better | 19:28 |
spzala | dolphm: Thanks! | 19:28 |
spzala | dolphm: HA HA | 19:28 |
*** gyee has joined #openstack-dev | 19:28 | |
*** mgiles has joined #openstack-dev | 19:29 | |
topol | dolphm, 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 IRC | 19:29 | |
spzala | dolphm: thanks | 19:29 |
dolphm | topol: let me check | 19:29 |
*** mgiles has joined #openstack-dev | 19:29 | |
dolphm | topol: https://blueprints.launchpad.net/keystone/+spec/default-domain | 19:30 |
openstackgerrit | A change was merged to openstack/tempest: Remove reference to dead script configure_tempest.sh https://review.openstack.org/28185 | 19:30 |
adam_g | ttx, thanks, got the membership but still unable to target anything to series | 19:31 |
*** cp16net is now known as cp16net|away | 19:31 | |
*** alexpilotti has quit IRC | 19:31 | |
dolphm | topol: there was also a patch to enforce domain existing/enabled, but that went in against a bug, not the bp | 19:31 |
dolphm | topol: that's probably where you were forced to pay attention :) | 19:31 |
*** jvrbanac has joined #openstack-dev | 19:31 | |
topol | dolphm, looks like it went in feb 1. wast feature freeze earleier than that? | 19:32 |
topol | God I was dumb back then.... I should have kept testing... | 19:32 |
dolphm | topol: Feb 20 https://wiki.openstack.org/wiki/GrizzlyReleaseSchedule | 19:32 |
dolphm | topol: always test | 19:33 |
*** mkollaro has quit IRC | 19:35 | |
topol | dolphm, 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 this | 19:36 |
*** jvrbanac has quit IRC | 19:37 | |
topol | s/do/don't | 19:37 |
topol | didnt you have your nightmare sermon around feb 20 or so??? | 19:37 |
*** pcm__ has quit IRC | 19:37 | |
topol | maybe feb 27. my family got back feb 27 | 19:38 |
dolphm | topol: that's what i was saying about the enforcement patch... we had a bug (probably going into FF) that domains were not enforced by auth | 19:38 |
*** alunduil has joined #openstack-dev | 19:39 | |
topol | dolphm, aaahhhh. when did that go in? | 19:39 |
dolphm | topol: https://bugs.launchpad.net/keystone/+bug/1130236 | 19:39 |
uvirtbot | Launchpad bug 1130236 in keystone "Domains are not validated on authentication" [High,Fix released] | 19:40 |
*** sandywalsh has quit IRC | 19:40 | |
*** mjfork has quit IRC | 19:40 | |
topol | in 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 |
dolphm | authored on feb 19th, merged on **mar** 20th | 19:41 |
*** mjfork has joined #openstack-dev | 19:41 | |
dolphm | topol: jcannava will test whatever patch we come up with before we merge it, right jcannava? :D | 19:41 |
topol | dude....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 |
topol | thank you gyee may I have another | 19:43 |
gyee | topol, you don't want to know what they did to me :) | 19:43 |
*** m4dcoder has quit IRC | 19:43 | |
dolphm | topol: sure, but it's going to be a surprise this time | 19:43 |
*** sarob has joined #openstack-dev | 19:44 | |
topol | gyee, decorum prevents me from posting the visions in my head... | 19:44 |
*** markvoelker has joined #openstack-dev | 19:45 | |
*** comay has joined #openstack-dev | 19:45 | |
malini1 | ayoung .. are you there? | 19:46 |
*** reed has joined #openstack-dev | 19:46 | |
malini1 | i see lots of keystone gurus -- hello gyee and dolphm | 19:46 |
dolphm | o/ | 19:47 |
gyee | ^ he's the guru | 19:47 |
uvirtbot | gyee: Error: "he's" is not a valid command. | 19:47 |
gyee | I just just a follower | 19:47 |
malini1 | excuse me, guru is a relative term, and all of you are way up there. with the key-manager, want keystone | 19:47 |
*** jvrbanac has joined #openstack-dev | 19:48 | |
malini1 | auth middleware, but how do i test it is working? i know it auths now, because i get a 401 | 19:48 |
malini1 | before auth middle ware was added as a pipeline chain, it responded with data | 19:48 |
dolphm | malini1: have your service that's running behind auth_token echo back the tenant ID | 19:48 |
*** vkmc has quit IRC | 19:49 | |
dolphm | malini1: it'll be in the wsgi env as X_TENANT_ID | 19:49 |
malini1 | ok | 19:49 |
*** cp16net|away is now known as cp16net | 19:49 | |
malini1 | to 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 |
malini1 | i am missing some flow understanding too .. | 19:50 |
malini1 | user or nova or cinder or something will call into key-manager, that user would have already been authenticated by keystone | 19:51 |
dolphm | malini1: yes, but you'll have to remove auth_token from the pipeline to do that | 19:51 |
*** wiliam has quit IRC | 19:51 | |
malini1 | so the request coming into key manager would have some headers set | 19:51 |
dolphm | malini1: auth_token doesn't like it when you try and forge requests :) | 19:51 |
*** sandywalsh has joined #openstack-dev | 19:52 | |
malini1 | so i really should send in an auth token and no upset the poor guard | 19:52 |
dolphm | malini1: i think it would just be X-User-Id, X-User-Name, X-Tenant-Name, etc without auth_token | 19:52 |
dolphm | malini1: it'd probably be easier lol | 19:53 |
*** wiliam has joined #openstack-dev | 19:53 | |
malini1 | that token-id is mighty long, is it ok to just initially put via sql command a short token id and try | 19:53 |
malini1 | thanks dolphm, will try and come back | 19:54 |
malini1 | dolphm: my host and port are to match the key-manager which in turn passes all the header stuff to keystone correct, so in my | 19:56 |
malini1 | test environment I am making http request to key manager | 19:56 |
*** radez is now known as radez_g0n3 | 19:57 | |
*** bmclaughlin has quit IRC | 19:58 | |
*** wiliam has quit IRC | 19:59 | |
*** mkollaro has joined #openstack-dev | 20:00 | |
*** wiliam has joined #openstack-dev | 20:01 | |
*** FunnyLookinHat has quit IRC | 20:01 | |
*** maoy_ has joined #openstack-dev | 20:03 | |
*** maoy has quit IRC | 20:03 | |
*** maoy_ is now known as maoy | 20:03 | |
dolphm | malini1: set keystone.conf token_format to 'UUID' to get short tokens | 20:06 |
*** FunnyLookinHat has joined #openstack-dev | 20:07 | |
dolphm | malini1: and yes, your configuration for auth_token will handle the interaction with keystone | 20:07 |
*** wiliam has quit IRC | 20:08 | |
*** lauria_ has joined #openstack-dev | 20:09 | |
*** lauria has quit IRC | 20:09 | |
*** wiliam has joined #openstack-dev | 20:09 | |
*** lauria_ is now known as lauria | 20:09 | |
*** lauria_ has joined #openstack-dev | 20:11 | |
*** jog0 has quit IRC | 20:13 | |
*** lauria has quit IRC | 20:14 | |
*** lauria_ is now known as lauria | 20:14 | |
*** wiliam has quit IRC | 20:15 | |
*** crandquist has quit IRC | 20:17 | |
*** wiliam has joined #openstack-dev | 20:18 | |
*** otherwiseguy has quit IRC | 20:18 | |
*** crandquist has joined #openstack-dev | 20:23 | |
*** mjfork has quit IRC | 20:24 | |
*** mjfork has joined #openstack-dev | 20:25 | |
*** anniec has joined #openstack-dev | 20:26 | |
*** anniec has quit IRC | 20:28 | |
*** digitalsanctum has quit IRC | 20:29 | |
*** sacharya has quit IRC | 20:30 | |
*** anniec has joined #openstack-dev | 20:30 | |
*** malini1 has quit IRC | 20:31 | |
*** zb has joined #openstack-dev | 20:32 | |
*** devoid has quit IRC | 20:32 | |
*** mjfork has quit IRC | 20:34 | |
*** cole has joined #openstack-dev | 20:34 | |
*** mjfork has joined #openstack-dev | 20:34 | |
*** zbitter has quit IRC | 20:34 | |
*** zbitter has joined #openstack-dev | 20:35 | |
*** stevemar has quit IRC | 20:35 | |
kbringard | soren: 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 IRC | 20:38 | |
*** zb has quit IRC | 20:38 | |
*** ekarlso has joined #openstack-dev | 20:39 | |
*** sarob has quit IRC | 20:40 | |
*** jog0 has joined #openstack-dev | 20:40 | |
*** jog0 is now known as flashgordon | 20:41 | |
*** ewindisch has joined #openstack-dev | 20:41 | |
*** mjfork_ has joined #openstack-dev | 20:44 | |
*** mjfork has quit IRC | 20:46 | |
*** galstrom is now known as galstrom_zzz | 20:46 | |
*** mjfork has joined #openstack-dev | 20:47 | |
*** sarob has joined #openstack-dev | 20:48 | |
*** mjfork_ has quit IRC | 20:50 | |
*** rnirmal has quit IRC | 20:50 | |
*** wiliam has quit IRC | 20:50 | |
*** wiliam has joined #openstack-dev | 20:52 | |
*** otherwiseguy has joined #openstack-dev | 20:52 | |
*** otherwiseguy has quit IRC | 20:52 | |
*** otherwiseguy has joined #openstack-dev | 20:53 | |
spzala | dolphm: I am back | 20:54 |
spzala | dolphm: with the default domain changes, want to make sure that what part I will be doing? :) | 20:56 |
dolphm | spzala: this is where i'm at- https://review.openstack.org/#/c/28197/ | 20:56 |
spzala | dolphm: wow that was quick | 20:56 |
*** ashwini has quit IRC | 20:57 | |
dolphm | spzala: 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 fixtures | 20:57 |
spzala | dolphm: sure I will take your changes and test it out | 20:57 |
*** mjfork has quit IRC | 20:57 | |
spzala | dolphm: one thing I see is, | 20:58 |
*** mjfork has joined #openstack-dev | 20:58 | |
spzala | dolphm: we will need to override many test methods in test_ldap_backend | 20:58 |
bknudson | any Keystoners see an error like this from Jenkins... http://logs.openstack.org/27787/7/check/gate-keystone-python26/3785/console.html | 20:58 |
spzala | dolphm: but I will test that out | 20:58 |
bknudson | looks like it's testing ipv6 address but the system doesn't have ipv6 | 20:59 |
*** zb has joined #openstack-dev | 20:59 | |
ngihneni | oneiric3 does have an ipv6 stack fwiw | 21:00 |
ngihneni | and ::1/128 is the address for the loopback interface | 21:01 |
*** lauria has quit IRC | 21:02 | |
bknudson | I 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 IRC | 21:02 | |
*** lauria has joined #openstack-dev | 21:02 | |
bknudson | I tried ./run_tests on my system and didn't get the error | 21:02 |
ngihneni | the errors are the results of three failing unittests | 21:02 |
dolphm | spzala: 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 ones | 21:04 |
bknudson | ngihneni: I found them, test_ipv6 and test_ssl | 21:05 |
ngihneni | bknudson: https://bitbucket.org/flub/eventlet-ipv6/src/9ef03bd435da/eventlet/support/greendns.py#cl-337 is the socket type set to AF_INET6? | 21:06 |
ngihneni | its weird that it would do a AAAA look up on an address though | 21:06 |
ngihneni | that is what is failing | 21:06 |
spzala | dolphm: aha, awesome! | 21:07 |
*** jcoufal has joined #openstack-dev | 21:12 | |
*** digitalsanctum has joined #openstack-dev | 21:13 | |
*** digitalsanctum has quit IRC | 21:14 | |
cole | does anyone know if there is work being done to integrate nova with http://www.linux-kvm.org/page/VMchannel_Requirements ? | 21:15 |
dolphm | spzala: got a few more tests passing, updated the review | 21:15 |
dolphm | cole: did you search for existing blueprints? | 21:15 |
cole | dolphm: i did. nothing returned. | 21:16 |
dolphm | cole: i'd suggest filing one and pinging the -dev list for feedback | 21:16 |
*** dhellmann has quit IRC | 21:16 | |
spzala | dolphm: cool. I will grab the changes. | 21:16 |
*** sarob has quit IRC | 21:17 | |
*** sarob has joined #openstack-dev | 21:17 | |
*** susanne-balle has quit IRC | 21:18 | |
*** wiliam has quit IRC | 21:18 | |
*** susanne-balle has joined #openstack-dev | 21:18 | |
*** lucasagomes has quit IRC | 21:18 | |
*** mjfork has quit IRC | 21:19 | |
*** wiliam has joined #openstack-dev | 21:20 | |
*** zbitter has joined #openstack-dev | 21:20 | |
*** ekarlso has quit IRC | 21:20 | |
*** nubbie has quit IRC | 21:21 | |
*** mjfork_ has joined #openstack-dev | 21:21 | |
*** mjfork_ is now known as mjfork | 21:21 | |
*** sarob has quit IRC | 21:21 | |
*** jasondotstar has quit IRC | 21:23 | |
*** zb has quit IRC | 21:23 | |
*** kmartin has quit IRC | 21:25 | |
*** ekarlso has joined #openstack-dev | 21:26 | |
*** topol has quit IRC | 21:27 | |
*** shardy has quit IRC | 21:27 | |
*** nunosantos has quit IRC | 21:28 | |
*** litong has quit IRC | 21:29 | |
*** kmartin has joined #openstack-dev | 21:30 | |
*** susanne-balle has quit IRC | 21:31 | |
*** susanne-balle has joined #openstack-dev | 21:32 | |
*** crandquist has quit IRC | 21:32 | |
openstackgerrit | A change was merged to openstack-dev/devstack: Add saucy support https://review.openstack.org/28050 | 21:33 |
*** termie is now known as termeye | 21:35 | |
*** mjfork has quit IRC | 21:36 | |
termeye | the weather is amazing in sf right now and i have to admit i don't really care about being on the computer right now | 21:36 |
*** mjfork has joined #openstack-dev | 21:37 | |
*** anniec has quit IRC | 21:37 | |
*** eharney has quit IRC | 21:39 | |
dolphm | same here, we just had a "cold front" blow all the weather away | 21:39 |
*** electrichead has quit IRC | 21:41 | |
*** lauria has quit IRC | 21:41 | |
termeye | jaypipes, simo: btw, i think BNS is a red herring, talked with friends and they basically said we should be using zookeeper | 21:42 |
*** ayoung has joined #openstack-dev | 21:42 | |
termeye | ayoung: btw, i think BNS is a red herring, talked with friends and they basically said we should be using zookeeper | 21:42 |
*** jayg is now known as jayg|g0n3 | 21:43 | |
*** cole has left #openstack-dev | 21:43 | |
termeye | ayoung: 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 discovery | 21:43 |
ayoung | termeye, interesting. I'll research it. thanks for the heads up | 21:43 |
*** rcleere has quit IRC | 21:44 | |
dolphm | spzala: updated again, got all ldap tests passing https://review.openstack.org/#/c/28197/ | 21:44 |
spzala | dolphm: wow.. I was testing the patch 2 and I had 3 failure which i was looking at it | 21:45 |
spzala | dolphm: getting latest one and will just confirm testing | 21:45 |
dolphm | spzala: thanks! | 21:45 |
spzala | dolphm: no problem.. Thank you!!! | 21:45 |
dolphm | spzala: the last patch has some scope creep related to update() methods; might need to split the patch in two or at least file another bug | 21:46 |
dolphm | spzala: either way, that's for monday for me :) have a good weekend! | 21:46 |
*** jtomasek has quit IRC | 21:46 | |
dolphm | spzala: p.s. all unit tests just passed for me, nothing affected outside of test_backend_ldap | 21:46 |
ayoung | dolphm, good, I want to take a look at it, too. Please ping me on all things LDAP. | 21:47 |
dolphm | ayoung: *ping* see review above :) | 21:47 |
spzala | dolphm: OK :) sounds good. udpate is a problematic with ldap sometime.. .. OK, thanks. have a great weekend too! | 21:47 |
dolphm | ayoung: i kept trying to message you all day and autocomplete didn't like you | 21:47 |
ayoung | dolphm, 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 coding | 21:47 |
ayoung | yep, was off the net, talking to some people about Open Stack, believe it or not | 21:48 |
termeye | ayoung: you just aren't dedicated to this project's success are you | 21:48 |
ayoung | turns out there is going to be apretty big academic Open stack deployment in Mass, and I was talking to one of the researchers involved | 21:48 |
ayoung | termeye, I'm like Han Solo. "I'm in it for the money" | 21:49 |
ayoung | cuz, ya know, you could make hundreds of dollars a year in open stack | 21:49 |
dolphm | TEACH ME YOUR WAYS | 21:49 |
*** colinmcnamara has quit IRC | 21:49 | |
dolphm | i'm still in the red | 21:50 |
*** devoid has joined #openstack-dev | 21:50 | |
*** jvrbanac has quit IRC | 21:50 | |
ayoung | sorry dolphm, I'm still in the "could" stage myself | 21:51 |
*** jcoufal has quit IRC | 21:54 | |
*** dolphm has quit IRC | 21:56 | |
*** bknudson has quit IRC | 21:57 | |
*** maoy has quit IRC | 21:58 | |
*** susanne-balle has quit IRC | 22:01 | |
*** susanne-balle has joined #openstack-dev | 22:01 | |
*** colinmcnamara has joined #openstack-dev | 22:04 | |
*** portante|ltp has joined #openstack-dev | 22:04 | |
*** colinmcnamara has quit IRC | 22:07 | |
*** flaper87 has quit IRC | 22:09 | |
*** athomas has quit IRC | 22:13 | |
*** vmilev_ has quit IRC | 22:13 | |
*** fbo has quit IRC | 22:15 | |
*** colinmcnamara has joined #openstack-dev | 22:15 | |
*** shindig is now known as sdague | 22:17 | |
*** vmilev_ has joined #openstack-dev | 22:17 | |
*** cloudchimp has quit IRC | 22:22 | |
*** FunnyLookinHat has quit IRC | 22:23 | |
*** colinmcnamara has quit IRC | 22:23 | |
*** oubiwann has quit IRC | 22:23 | |
*** phschwartz_ has quit IRC | 22:25 | |
*** oubiwann has joined #openstack-dev | 22:28 | |
*** phschwartz_ has joined #openstack-dev | 22:28 | |
*** vmilev_ has quit IRC | 22:30 | |
*** jjmb has quit IRC | 22:31 | |
*** novas0x2a|laptop has quit IRC | 22:31 | |
*** novas0x2a|laptop has joined #openstack-dev | 22:34 | |
*** timjr has quit IRC | 22:34 | |
*** torandu has quit IRC | 22:35 | |
*** torandu has joined #openstack-dev | 22:37 | |
*** mjfork_ has joined #openstack-dev | 22:38 | |
*** colinmcnamara has joined #openstack-dev | 22:39 | |
*** mjfork has quit IRC | 22:40 | |
*** portante|ltp has quit IRC | 22:40 | |
*** mjfork_ is now known as mjfork | 22:40 | |
*** hemna is now known as hemnafk | 22:41 | |
*** colinmcnamara has quit IRC | 22:44 | |
*** ayoung has quit IRC | 22:44 | |
*** mlavalle has joined #openstack-dev | 22:46 | |
*** jecarey_ has quit IRC | 22:46 | |
*** kbringard has quit IRC | 22:48 | |
*** datsun180b has quit IRC | 22:49 | |
*** megha has joined #openstack-dev | 22:52 | |
*** baba has quit IRC | 22:52 | |
WormMan | I personally make tens of dollars a month working on openstack for my employer :) | 23:00 |
*** devoid has quit IRC | 23:02 | |
*** susanne-balle has quit IRC | 23:02 | |
*** susanne-balle has joined #openstack-dev | 23:03 | |
*** katylava has quit IRC | 23:04 | |
*** mgiles has quit IRC | 23:04 | |
*** mjfork has quit IRC | 23:07 | |
*** mjfork has joined #openstack-dev | 23:09 | |
*** flashgordon has quit IRC | 23:10 | |
*** zaitcev has joined #openstack-dev | 23:11 | |
*** edmund has quit IRC | 23:13 | |
*** markmcclain has quit IRC | 23:14 | |
*** mrodden has quit IRC | 23:15 | |
*** mlavalle has quit IRC | 23:15 | |
*** gary_th has quit IRC | 23:21 | |
*** bdpayne has quit IRC | 23:22 | |
*** matiu has joined #openstack-dev | 23:24 | |
*** terryh has quit IRC | 23:26 | |
*** david-lyle is now known as david-lyle_ | 23:26 | |
bkero | A few tens | 23:29 |
*** markwash has quit IRC | 23:30 | |
*** morganfainberg is now known as needscoffee | 23:35 | |
*** stevemar has joined #openstack-dev | 23:37 | |
*** alop has quit IRC | 23:42 | |
*** terryh has joined #openstack-dev | 23:43 | |
*** yidclare has quit IRC | 23:45 | |
*** gyee has quit IRC | 23:48 | |
*** sudorandom has quit IRC | 23:51 | |
openstackgerrit | A change was merged to openstack/nova: Fix EC2 instance bdm response https://review.openstack.org/27896 | 23:52 |
*** mkollaro has quit IRC | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!