openstackgerrit | A change was merged to openstack/glance: Fix response code for successful image upload. https://review.openstack.org/23219 | 00:00 |
---|---|---|
*** mrodden has quit IRC | 00:00 | |
*** bswartz has joined #openstack-dev | 00:00 | |
*** danwent has quit IRC | 00:02 | |
*** mrodden has joined #openstack-dev | 00:03 | |
*** mrodden1 has quit IRC | 00:04 | |
*** pabelanger has quit IRC | 00:06 | |
*** hemna_ has quit IRC | 00:06 | |
*** hemna has joined #openstack-dev | 00:07 | |
*** jcmartin_ has joined #openstack-dev | 00:08 | |
*** shardy has quit IRC | 00:09 | |
*** jcmartin has quit IRC | 00:09 | |
*** jcmartin_ has joined #openstack-dev | 00:09 | |
*** otherwiseguy has quit IRC | 00:10 | |
*** jcmartin_ has quit IRC | 00:10 | |
*** jcmartin has joined #openstack-dev | 00:10 | |
*** kagan has quit IRC | 00:11 | |
*** alobbs has quit IRC | 00:11 | |
*** vipul is now known as vipul|away | 00:12 | |
*** pholland has joined #openstack-dev | 00:12 | |
*** tomoe_ has joined #openstack-dev | 00:13 | |
*** jcmartin_ has joined #openstack-dev | 00:15 | |
*** jcmartin has quit IRC | 00:15 | |
*** jcmartin_ is now known as jcmartin | 00:15 | |
gongysh | amotoki: ping | 00:18 |
*** metral has joined #openstack-dev | 00:18 | |
*** pabelanger has joined #openstack-dev | 00:23 | |
*** vkmc has joined #openstack-dev | 00:25 | |
*** alunduil has joined #openstack-dev | 00:27 | |
*** hemna has quit IRC | 00:27 | |
*** jcmartin_ has joined #openstack-dev | 00:28 | |
*** jcmartin has quit IRC | 00:28 | |
*** jcmartin_ is now known as jcmartin | 00:28 | |
*** jcmartin_ has joined #openstack-dev | 00:29 | |
*** jcmartin has quit IRC | 00:29 | |
*** jcmartin_ is now known as jcmartin | 00:29 | |
*** sacharya1 has quit IRC | 00:30 | |
*** markwash has quit IRC | 00:31 | |
*** danwent has joined #openstack-dev | 00:33 | |
amotoki | gongysh: pong | 00:37 |
*** winston-d_ has joined #openstack-dev | 00:39 | |
*** danwent has quit IRC | 00:39 | |
*** cdub_ has joined #openstack-dev | 00:45 | |
*** sthaha has joined #openstack-dev | 00:46 | |
*** jcmartin has quit IRC | 00:49 | |
*** jcmartin has joined #openstack-dev | 00:49 | |
*** jcmartin_ has joined #openstack-dev | 00:50 | |
*** jcmartin has quit IRC | 00:50 | |
*** jcmartin_ is now known as jcmartin | 00:50 | |
winston-d_ | any citrix folks around? | 00:50 |
*** pholland has quit IRC | 00:53 | |
*** markmcclain has quit IRC | 00:55 | |
*** digitalsanctum has joined #openstack-dev | 00:57 | |
termie | ayoung: responded to your message on https://review.openstack.org/#/c/23143/ inline, i forget whether it emails you about that | 00:57 |
*** dsanders has joined #openstack-dev | 00:58 | |
ayoung | termie, at the Python level, is there something that can say "use this version of the openssl binaries?" I realize that at the library level there are ways to enforce this. | 00:59 |
ayoung | I assume that what you are seeing is people running the tests and not using a venv? | 00:59 |
termie | ayoung: it would literally run a subprocess and do the same thing | 00:59 |
termie | ayoung: the point is that jenkins is going to have the correct version, random users might not | 00:59 |
*** markmcclain has joined #openstack-dev | 01:00 | |
ayoung | termie, I don't have that much faith in Jenkins. | 01:00 |
termie | ayoung: so we don't care whether jenkins does the check, we just want to notify users so that they don't just fail a few hundred tests and not know why | 01:00 |
termie | ayoung: it doesn't really matter, the tests will all fail without it there | 01:00 |
termie | ayoung: re jenkins, it will fail anyway, this is just a helper for real humans | 01:01 |
ayoung | termie, so, I tend to run the tests from nose directly....but also from run_tests. | 01:01 |
jog0 | creiht: ping | 01:01 |
termie | ayoung: then you are a power user and we don't care about you | 01:01 |
ayoung | termie, does it hurt anything to put it in the python tests? | 01:01 |
ayoung | termie, I'm also responsible for the openssl mess... | 01:01 |
termie | ayoung: it is a whole bunch of random extra work, requires doing some module-level setup in an __init__.py to make it start a subprocess and check the version of openssl before running the tests | 01:02 |
termie | ayoung: or 1 line in a bash script that is the canonical entry point into running the tests | 01:02 |
clarkb | it you want jenkins to also run the check you can add it to the tox.ini too | 01:04 |
clarkb | the problem with that is now you have to maintain a thing in two different places | 01:04 |
termie | this was not considered a problem by anybody before, i added a helpful message for people who might be getting weird errors | 01:05 |
ayoung | clarkb, I think I want it in the setup for the ssl tests | 01:05 |
ayoung | clarkb, but it can be a separate test, no need to run it for each test...too much overkill | 01:05 |
termie | ayoung, clarkb: let's say you put it as teh setup to whatever the ssl tests subclass from, it only runs once | 01:06 |
termie | you will run a bunch of tests, and see a bunch of failures or skips | 01:06 |
termie | about 300 of them | 01:06 |
termie | happiness level of a new developer after that? | 01:07 |
ayoung | termie, its a good idea, It just doesn't belong in the bash script, it belongs in with the tests. Jenkins, tempest, all the automation will benefit from the same thing | 01:07 |
ayoung | termie, depends on the quality of the error message | 01:07 |
*** jcmartin has quit IRC | 01:07 | |
*** jcmartin has joined #openstack-dev | 01:08 | |
termie | ayoung: have you seen what error messages look like? | 01:08 |
termie | ayoung: there is a dump of the entire setup of the db in every one | 01:08 |
ayoung | termie, yes https://bugs.launchpad.net/keystone/+bug/1134728 | 01:08 |
uvirtbot | Launchpad bug 1134728 in keystone "run_test.sh puts all output into stderr." [Undecided,New] | 01:08 |
*** riskable has quit IRC | 01:09 | |
termie | ayoung: where is the entrypoint into all ssl tests? | 01:09 |
ayoung | termie, I am aware. There DB setup issue is due to the fact that we are testing against a toy DB, but we need to test against the real DBs. Tht is still WIP | 01:09 |
*** riskable has joined #openstack-dev | 01:09 | |
ayoung | tests/test_ssl.py | 01:09 |
ayoung | gotta go make a food run. | 01:10 |
dstufft | Why does checking openssl version require subprocess, python exposes what version of openssl it's using? Or is openstack shelling out to use openssl | 01:10 |
termie | ayoung: and those will be run before the tests trying to use ssl? | 01:10 |
termie | ayoung: because literally hundreds of tests fail if you don't ahve this | 01:10 |
termie | ayoung: and i see 5 in here | 01:10 |
*** networkstatic has quit IRC | 01:10 | |
*** sacharya has joined #openstack-dev | 01:13 | |
*** Tross has quit IRC | 01:22 | |
*** dims has joined #openstack-dev | 01:22 | |
*** networkstatic has joined #openstack-dev | 01:23 | |
*** anniec has quit IRC | 01:25 | |
*** jcmartin has quit IRC | 01:26 | |
*** jcmartin has joined #openstack-dev | 01:26 | |
*** READ10 has quit IRC | 01:27 | |
*** READ10 has joined #openstack-dev | 01:27 | |
*** metral has quit IRC | 01:27 | |
*** alop has quit IRC | 01:28 | |
termie | dstufft: it shells out | 01:30 |
termie | ayoung: moved to package level setup: https://review.openstack.org/#/c/23143/ | 01:32 |
*** jog0 has quit IRC | 01:32 | |
termie | ayoung: should run before anything else unless you do any nosetests magic | 01:32 |
*** jcmartin has quit IRC | 01:33 | |
*** jcmartin_ has joined #openstack-dev | 01:33 | |
*** jcmartin_ is now known as jcmartin | 01:33 | |
*** jcmartin_ has joined #openstack-dev | 01:35 | |
*** jcmartin has quit IRC | 01:35 | |
*** jcmartin_ is now known as jcmartin | 01:35 | |
*** digitalsanctum has quit IRC | 01:35 | |
openstackgerrit | A change was merged to openstack/nova: Imported Translations from Transifex https://review.openstack.org/23229 | 01:35 |
*** Tross has joined #openstack-dev | 01:36 | |
*** terryh has quit IRC | 01:38 | |
*** danwent has joined #openstack-dev | 01:38 | |
*** novas0x2a|laptop has quit IRC | 01:40 | |
*** alobbs has joined #openstack-dev | 01:40 | |
*** alexxu has joined #openstack-dev | 01:46 | |
*** metral has joined #openstack-dev | 01:49 | |
*** soody has joined #openstack-dev | 01:51 | |
*** bing_bu has joined #openstack-dev | 01:52 | |
*** epim_ has joined #openstack-dev | 01:53 | |
*** epim has quit IRC | 01:55 | |
*** epim_ is now known as epim | 01:55 | |
*** jimfehlig has quit IRC | 01:56 | |
*** vipul|away is now known as vipul | 01:57 | |
*** vkmc has quit IRC | 02:00 | |
*** yaguang has joined #openstack-dev | 02:01 | |
*** nati_ueno has quit IRC | 02:05 | |
*** blamar has quit IRC | 02:06 | |
*** andrewbogott is now known as andrewbogott_afk | 02:09 | |
*** beagles has quit IRC | 02:10 | |
*** danwent has quit IRC | 02:11 | |
*** jcmartin_ has joined #openstack-dev | 02:12 | |
*** jcmartin has quit IRC | 02:12 | |
*** jcmartin_ is now known as jcmartin | 02:12 | |
*** nijaba_ has joined #openstack-dev | 02:13 | |
*** alexxu has quit IRC | 02:13 | |
*** dsanders has quit IRC | 02:14 | |
*** nijaba has quit IRC | 02:14 | |
*** beagles has joined #openstack-dev | 02:15 | |
*** jcmartin has quit IRC | 02:18 | |
*** jcmartin_ has joined #openstack-dev | 02:18 | |
*** soody has quit IRC | 02:19 | |
*** jcmartin_ has quit IRC | 02:21 | |
openstackgerrit | A change was merged to openstack/cinder: Improved fail_reason for cinder-backup swift connection errors https://review.openstack.org/23166 | 02:25 |
*** PaulM has joined #openstack-dev | 02:26 | |
*** burris has joined #openstack-dev | 02:26 | |
*** sandywalsh has quit IRC | 02:29 | |
*** cdub_ has quit IRC | 02:29 | |
*** cdub_ has joined #openstack-dev | 02:31 | |
*** alexxu has joined #openstack-dev | 02:36 | |
*** terry7 has quit IRC | 02:41 | |
*** markmcclain has quit IRC | 02:43 | |
*** markmcclain has joined #openstack-dev | 02:46 | |
*** markmcclain has quit IRC | 02:46 | |
ayoung | termie, so.. does it make sense to check the openssl version when running the server as well? | 02:47 |
*** soody has joined #openstack-dev | 02:48 | |
*** ladquin has quit IRC | 02:51 | |
*** READ10 has quit IRC | 02:51 | |
*** Ryan_Lane has quit IRC | 02:53 | |
*** adjohn has quit IRC | 02:54 | |
*** jcmartin has joined #openstack-dev | 02:58 | |
*** sandywalsh has joined #openstack-dev | 02:59 | |
creiht | jog0: pong | 03:04 |
creiht | well I guess you left already | 03:04 |
*** soody_ has joined #openstack-dev | 03:07 | |
termie | ayoung: ... every good deed... | 03:07 |
termie | ayoung: i suppose so yes, i guess i will write a dependency checking framework | 03:08 |
*** soody has quit IRC | 03:08 | |
*** soody_ is now known as soody | 03:08 | |
ayoung | termie, No, I already approved the patch. Just wondering if this is something that will mess up people deploying. | 03:08 |
ayoung | Most will deploy via packages and get the dep that way | 03:08 |
*** soody has quit IRC | 03:08 | |
*** PaulM has quit IRC | 03:08 | |
openstackgerrit | A change was merged to openstack/cinder: Elevate context for delete volume with no host. https://review.openstack.org/23196 | 03:08 |
ayoung | well, I +1ed it, but we'll see it through. heckj +1ed it earlier, but I'd like him to see the new version, too. | 03:09 |
termie | ayoung: how do you think it would mess up somebody deploying? | 03:09 |
termie | ayoung: i don't know where teh package building is happening, but they'd have to make sure it has the right version of openssl listed | 03:10 |
ayoung | termie, well, devstack would check the dependecy, but it looks like you are helping out users that are coding direcly out of the repos. | 03:10 |
ayoung | So, yeah, if they run the unit tests, they'll know, but not if the y just blindly run the server | 03:10 |
*** blamar has joined #openstack-dev | 03:11 | |
ayoung | termie, packes are Ubuntu/Fedora based, and both state the minimum OpenSSL version. Devstack, too, says minimal SSL I think | 03:12 |
winston-d_ | lifeless: ping | 03:12 |
*** zodiak has quit IRC | 03:12 | |
*** maurosr- has joined #openstack-dev | 03:13 | |
*** maurosr has quit IRC | 03:14 | |
*** rkukura has quit IRC | 03:14 | |
termie | ayoung: i am working on some keystone related stuff at the moment, so you can expect more of this... | 03:14 |
termie | ayoung: but, why is there a "methods" directory in here? https://github.com/openstack/keystone/tree/master/keystone/auth | 03:15 |
ayoung | termie, glad to have it. Am I correct in understanding that you/your people are doing Dev without using devstack? | 03:15 |
ayoung | termie, ah | 03:15 |
termie | ayoung: or to rephrase, it should not be called method | 03:15 |
termie | ayoung: i don't know what other people use, i like my projects to work like normal projects | 03:15 |
ayoung | termie, it is the authentication methods that apply to the token | 03:15 |
termie | ayoung: and that generally involves being able to work from a checkout | 03:16 |
ayoung | termie, I am old enough to know that there is no such thing as normal | 03:16 |
termie | ayoung: methods is not a word that is allowed to be used ot describe things that are not methods on classes | 03:16 |
termie | ayoung: it is just needlessly and confusingly overloading a term that already exists and has a concrete definition | 03:16 |
ayoung | termie, in this case, we are using it from the domain model. auth/methods makes sense. | 03:16 |
ayoung | termie, in Auth every term has multiple meanings | 03:17 |
ayoung | it is really hard to come up with the "right" term | 03:17 |
ayoung | but we are willing to listen to suggestions | 03:17 |
termie | well, method isn't it :) | 03:17 |
ayoung | termie, its like democracy. The worst option, except for all the others | 03:17 |
termie | how's about, strategy | 03:17 |
ayoung | WOrse | 03:18 |
termie | that is what it is by pattern defs | 03:18 |
termie | you are choosing an auth strategy, either password or token | 03:18 |
termie | it has an easy well defined meaning to everybody | 03:18 |
ayoung | I will agree that it is an application of the strategy pattern, but also it is chain of responsibility | 03:18 |
*** yaguang has quit IRC | 03:18 | |
ayoung | multipkleauth methods can be applied to a single token | 03:18 |
ayoung | Perhaps Factors? | 03:19 |
ayoung | As in Multi Facotr Authentication. | 03:19 |
termie | what? no, those are all way more CS-y and confuisng | 03:19 |
termie | it isn't weird to say that multiple strategies get used to auth somebody | 03:19 |
ayoung | termie, no, that is more from the auth community | 03:19 |
termie | it is weird to call something a "factor" | 03:19 |
ayoung | MFA is not Museum of Fine Art to that world | 03:19 |
*** yaguang has joined #openstack-dev | 03:19 | |
termie | what is wrong with strategy? | 03:20 |
termie | you just said that it is a strategy | 03:20 |
termie | it is not like "method" encompasses any of hte ideas you just described | 03:20 |
termie | except in its extreme vagueness when not applied to a function on a clas | 03:20 |
*** maurosr has joined #openstack-dev | 03:21 | |
ayoung | termie, it is as much a chain of responsibility as a straegy. Also, they could be fly wieghts. Strategy is a computer science term, but we need an Authentication term. Method is what people call them | 03:21 |
ayoung | But I kinds of like Factor. It is more precise. | 03:22 |
ayoung | http://en.wikipedia.org/wiki/Multi-factor_authentication | 03:22 |
termie | jesus christ | 03:22 |
ayoung | termie, what? That there is a whole field of study devoted to this? | 03:23 |
*** maurosr- has quit IRC | 03:24 | |
termie | this is exactly how we got the ridiculous directory structure that the original keystone had | 03:24 |
termie | maybe before your time, but do you remember the "logic" directory? | 03:24 |
ayoung | termie, This is Identity Management. There are very real systems built on top of the things that people deploying Keystone Need to tie in with. | 03:25 |
ayoung | The number of short cominings in the Keystone approach is legion | 03:25 |
ayoung | shall we start with using Eventlet? | 03:25 |
termie | _you named a module "methods"_ | 03:25 |
ayoung | because in the field of Identity Management, that is what they are called. | 03:26 |
*** martine has joined #openstack-dev | 03:26 | |
*** zodiak has joined #openstack-dev | 03:26 | |
termie | perhaps an aside, but do you know anybody who _likes_ that? | 03:26 |
*** nati_ueno has joined #openstack-dev | 03:27 | |
ayoung | termie, I'm tempted to lock you in a room with David Chadwick for a day at the summit.... | 03:27 |
termie | ayoung: link to his info? | 03:27 |
termie | popular name | 03:27 |
*** markwash has joined #openstack-dev | 03:28 | |
ayoung | University of Kent... | 03:28 |
ayoung | David Chadwick, University of Kent. | 03:28 |
ayoung | d.w.chadwick AT kent.ac.uk | 03:28 |
termie | is this somebody who is coming to the summit? | 03:28 |
termie | or is this just a joke i was supposed to get because this guy is some outspoken figure on something? | 03:29 |
ayoung | termie, no, he is very involved | 03:29 |
termie | ayoung: i don't think he'll like me | 03:30 |
ayoung | I am trying to pull up his blueprints, but network slowness | 03:30 |
termie | more asides, i assume you've worked with some enterprise identity systems, what would you say were the worst things about working with them? | 03:30 |
ayoung | termie, he's an academic, but he also has seen a lot of these systems, and can talk to the commonalities and shortcomings. | 03:31 |
ayoung | termie, I would say the worst thing is the realization of how crappily insecure systems I built prior to learning the realities of Identity Management | 03:31 |
termie | ayoung: and he thinks overlaying one region of study's terminology on top of another's is a decent practice? | 03:31 |
*** alexpilotti has quit IRC | 03:32 | |
ayoung | termie, actually, he is very precise with language, to a degree that catches me off guard | 03:32 |
termie | ayoung: what would you say the realities of _I_dentity _M_anagement are? | 03:32 |
ayoung | well, first of all, most SSO systems don't adequetly protect the user against many of the most common attacks | 03:33 |
ayoung | probably the worst is | 03:33 |
ayoung | not securly verifying the Identity Provider se | 03:33 |
ayoung | sorry, getting late here... | 03:34 |
*** PaulM has joined #openstack-dev | 03:34 | |
termie | well, we don't have to continue this conversaion | 03:34 |
ayoung | there are two secure ways of doing IdM over the web | 03:34 |
termie | you're not particularly making me agree with you any more | 03:34 |
ayoung | nah, just apologizing for sloppy typing | 03:34 |
ayoung | one is Kerberos and the other uses X509 | 03:34 |
ayoung | And Kerberos is out | 03:34 |
ayoung | for the simple reason that all firewalls block the ports it needs. | 03:35 |
ayoung | So that leaves X509 | 03:35 |
ayoung | Keystone was built, as I understand it, to avoid having to copy the userid/password around the whole body of systems in a deploy | 03:36 |
ayoung | but it was built without doing any research into the types of attacks as system like that needs to defend against | 03:36 |
*** enjoy_ has quit IRC | 03:36 | |
*** melwitt has joined #openstack-dev | 03:36 | |
*** enjoy_ has joined #openstack-dev | 03:37 | |
termie | as far as i can tell it was built to duplicate rackspace's auth + random changes | 03:37 |
ayoung | termie, so you just rewrote it? You weren't there when it was origianlly implemented? | 03:37 |
termie | ayoung: i was there in the respect that i was disagreeing with the implementors in meetings quite frequently | 03:38 |
ayoung | Heh | 03:38 |
*** bing_bu has quit IRC | 03:38 | |
termie | ayoung: but i did not code any of the original | 03:38 |
termie | ayoung: or pay attention after a certain point until it became glaringly obvious that it was batshit | 03:39 |
*** Gordonz has joined #openstack-dev | 03:39 | |
ayoung | So...as far as the term "methods" you will have to convince Dolph and Guang Yee that you have a better term. I think I could get behind Factor, but not Strategy. There may well be a better term than that as well. | 03:39 |
termie | ayoung: but i assure you, it was built by people who took a very academic approach to software design | 03:40 |
ayoung | I can see your objection | 03:40 |
ayoung | Maybe to software design, but not to security. | 03:40 |
termie | security as well, but we have not been discussing security here | 03:40 |
termie | the "security" design of keystone was bearer token | 03:41 |
termie | and i fought against it every step of the way | 03:41 |
ayoung | termie, I see Identity Management as a fundamental security concept. So, on my side, I sure have been talking security | 03:41 |
ayoung | wish I was involved then. Iwould have backed you up | 03:42 |
termie | didn't matter who backed me up | 03:42 |
ayoung | So the next step is embedding a public key in the token and signing the message. | 03:42 |
ayoung | And now we have 2/3rds of X509 | 03:42 |
ayoung | So last step is to encrypt the tunnel, for which you need X509. | 03:43 |
ayoung | So I am thinkin that tokens need to go away and we move to the technolgy that we already have to depend on anyway. | 03:43 |
termie | methods is a bad name for a module in python | 03:43 |
ayoung | But bearer token bad...and putting them into the URLs is worse. | 03:43 |
ayoung | termie, I agree with you. | 03:43 |
termie | an unacceptably bad name | 03:44 |
termie | it is a sign of significant rot and academic wandering, to me | 03:44 |
ayoung | So lets come up with the "right" name. Methods may be bad from an object oriented aspect, but not from the domain language of IdM. | 03:44 |
termie | you can use the domain language of idm in the docs | 03:45 |
termie | as many BPMs as you want | 03:45 |
ayoung | termie, you are complaining. Offer a solution, and a correct one, and you will have my full support. | 03:45 |
termie | strategy is a better solution | 03:45 |
termie | done | 03:45 |
*** ilblackdragon has quit IRC | 03:46 | |
openstackgerrit | A change was merged to openstack/nova: Fixes a Hyper-V live migration issue https://review.openstack.org/23228 | 03:47 |
ayoung | No. Strategy is not. As I said, it is as much Chain of Responsiblity as Straegy, so if you are going Gang of Four on me, I;d suggest Links. But Factor might be. I'll see if I can come up with something better as well. | 03:47 |
termie | i'm not gang of fouring | 03:47 |
termie | strategy is significantly better than "methods" | 03:47 |
termie | in reality there isn't much of a point of even putting them in a subdir if there are two | 03:48 |
termie | but i'll let that premature optimization go | 03:48 |
ayoung | termie, we know of others that are coming in, but we need to cut scope somewhere | 03:48 |
*** sacharya has quit IRC | 03:50 | |
*** PaulM has quit IRC | 03:50 | |
ayoung | termie, Authenticators | 03:50 |
ayoung | http://www.fismapedia.org/index.php?title=Authenticator | 03:50 |
termie | that'll be great | 03:51 |
termie | keystone.auth.authenticators | 03:51 |
openstackgerrit | A change was merged to openstack/nova: Fixes the Hyper-V driver's method signature https://review.openstack.org/23239 | 03:52 |
*** PaulM has joined #openstack-dev | 03:52 | |
ayoung | termie I realize you got disgusted with the Keystone development process in the past, but I assure you it is a different set of people and values these days. We have people deploying in the field saying they need certain things, and desperately. LDAP tie in, multi factor auth, and tight security. That is what we are tryingto do. We welcome your input, and you've been instrumental to the project in the past. | 03:56 |
*** fire has joined #openstack-dev | 03:57 | |
termie | methods | 03:57 |
*** morganfainberg has left #openstack-dev | 03:57 | |
termie | i'm going to go take a shower and wash this filth off | 03:59 |
ayoung | termie, are you goingto be at the summit? | 03:59 |
*** slewsys has joined #openstack-dev | 03:59 | |
termie | yeah, i can tell it is going to be great already ;) | 03:59 |
termie | i am currently disabled so i may have enough extra time on my hands to fork a few more projects | 04:00 |
ayoung | Depends on what you bring to the table. | 04:00 |
termie | i bring frustration and a sense that the world is delusional | 04:00 |
ayoung | " many of the truths we cling to depend greatly on our own point of view." | 04:01 |
termie | well, thanks goodness somebody (me) has my point of view | 04:01 |
termie | otherwise i'd have nobody i could trust | 04:01 |
termie | ;) | 04:02 |
ayoung | termie, what brings you back to looking at Keystone? | 04:02 |
termie | i mistakenly offered to write a backend | 04:02 |
ayoung | for identity? | 04:02 |
termie | but apparently my burden in this world is to fix tests every time i check out a project nowadays | 04:03 |
termie | and i'm probably going to get way-layed building a "performance" evaluation tool | 04:03 |
termie | for all the stuff in keystone, yes | 04:03 |
ayoung | termie, actually, on that I can help | 04:03 |
ayoung | we have a performance team that is just gearing up | 04:04 |
termie | i put performance in quotes because i am apparently delusional in what i mean by that as well | 04:04 |
termie | i mostly intend to count db lookups and cache misses | 04:04 |
ayoung | OK, I'm out. Good to have you back contributing. Keep the reviews coming. I might not always agree with you, but I promise I can be persuaded by a solid argument. G'Night | 04:07 |
*** Mandell has quit IRC | 04:07 | |
*** ayoung is now known as ayoung-zzzz | 04:07 | |
*** bdpayne has quit IRC | 04:08 | |
ayoung-zzzz | termie, https://bugs.launchpad.net/keystone/+bug/1136967 | 04:09 |
uvirtbot | Launchpad bug 1136967 in keystone "The "methods" modules conflicts with common usage in python" [Undecided,New] | 04:09 |
*** olaph has quit IRC | 04:10 | |
*** olaph has joined #openstack-dev | 04:11 | |
*** zodiak has quit IRC | 04:14 | |
*** stevemar has joined #openstack-dev | 04:17 | |
*** zodiak has joined #openstack-dev | 04:17 | |
*** nati_ueno has quit IRC | 04:19 | |
*** Gordonz has quit IRC | 04:22 | |
*** jcmartin has quit IRC | 04:23 | |
*** lloydde has quit IRC | 04:23 | |
*** amotoki has quit IRC | 04:25 | |
*** devananda has quit IRC | 04:27 | |
*** ilblackdragon has joined #openstack-dev | 04:28 | |
*** PaulM has left #openstack-dev | 04:30 | |
*** koolhead17 has joined #openstack-dev | 04:35 | |
*** pabelanger has quit IRC | 04:36 | |
*** devananda has joined #openstack-dev | 04:36 | |
*** martine has quit IRC | 04:42 | |
*** CaptTofu has joined #openstack-dev | 04:47 | |
*** nunosantos has quit IRC | 04:51 | |
*** blamar has quit IRC | 05:02 | |
*** mohits has joined #openstack-dev | 05:06 | |
*** dsanders has joined #openstack-dev | 05:19 | |
*** riskable has quit IRC | 05:23 | |
*** echohead_ has joined #openstack-dev | 05:25 | |
*** dripton_ has joined #openstack-dev | 05:26 | |
*** navid has joined #openstack-dev | 05:27 | |
*** Ritz has quit IRC | 05:27 | |
*** stevemar has quit IRC | 05:27 | |
*** koolhead17 has quit IRC | 05:28 | |
*** Mandell has joined #openstack-dev | 05:29 | |
*** mrodden1 has joined #openstack-dev | 05:30 | |
*** echohead has quit IRC | 05:32 | |
*** burris has quit IRC | 05:32 | |
*** dripton has quit IRC | 05:32 | |
*** alunduil has quit IRC | 05:32 | |
*** n0ano has quit IRC | 05:32 | |
*** mrodden has quit IRC | 05:32 | |
*** echohead_ is now known as echohead | 05:32 | |
*** burris has joined #openstack-dev | 05:32 | |
*** swaT30 has quit IRC | 05:33 | |
*** alunduil has joined #openstack-dev | 05:33 | |
*** aeperezt has quit IRC | 05:34 | |
*** swaT30 has joined #openstack-dev | 05:35 | |
*** riskable has joined #openstack-dev | 05:38 | |
*** sthaha has quit IRC | 05:38 | |
*** avishay has joined #openstack-dev | 05:40 | |
*** koolhead17 has joined #openstack-dev | 05:40 | |
*** gasbakid has quit IRC | 05:43 | |
*** markwash has quit IRC | 05:44 | |
*** avishay has quit IRC | 05:54 | |
*** amotoki has joined #openstack-dev | 05:54 | |
*** markmcclain has joined #openstack-dev | 05:54 | |
*** amotoki_ has joined #openstack-dev | 05:58 | |
*** amotoki has quit IRC | 06:00 | |
*** adjohn has joined #openstack-dev | 06:06 | |
*** manas has joined #openstack-dev | 06:14 | |
*** amotoki_ has quit IRC | 06:15 | |
*** CaptTofu has quit IRC | 06:16 | |
*** CaptTofu has joined #openstack-dev | 06:17 | |
*** winston-d_ has quit IRC | 06:17 | |
*** koolhead17 has quit IRC | 06:20 | |
*** armaan has joined #openstack-dev | 06:29 | |
openstackgerrit | A change was merged to openstack/quantum: Imported Translations from Transifex https://review.openstack.org/23234 | 06:29 |
*** fire has quit IRC | 06:32 | |
*** crandquist has quit IRC | 06:33 | |
*** gasbakid has joined #openstack-dev | 06:36 | |
*** dsanders has quit IRC | 06:39 | |
*** zaitcev has quit IRC | 06:40 | |
*** fire has joined #openstack-dev | 06:43 | |
*** almaisan-away is now known as al-maisan | 06:48 | |
*** tomoe_ has quit IRC | 06:49 | |
*** tomoe_ has joined #openstack-dev | 06:49 | |
*** markwash has joined #openstack-dev | 06:50 | |
*** adjohn has quit IRC | 06:54 | |
*** tomoe_ has quit IRC | 06:54 | |
*** adjohn has joined #openstack-dev | 06:55 | |
openstackgerrit | A change was merged to openstack/quantum: Use db model hook to filter external network https://review.openstack.org/22866 | 06:55 |
*** markwash has quit IRC | 06:55 | |
*** Ritz has joined #openstack-dev | 06:55 | |
*** adjohn_ has joined #openstack-dev | 06:56 | |
*** adjohn has quit IRC | 07:00 | |
*** mrunge has joined #openstack-dev | 07:00 | |
*** armaan has left #openstack-dev | 07:01 | |
*** al-maisan is now known as almaisan-away | 07:01 | |
*** haleyb has quit IRC | 07:02 | |
*** haleyb has joined #openstack-dev | 07:03 | |
*** armaan has joined #openstack-dev | 07:11 | |
*** armaan has left #openstack-dev | 07:11 | |
*** markmcclain1 has joined #openstack-dev | 07:11 | |
*** markmcclain has quit IRC | 07:12 | |
*** dev_sa has joined #openstack-dev | 07:13 | |
*** Ryan_Lane has joined #openstack-dev | 07:14 | |
*** burris has quit IRC | 07:16 | |
*** fire has quit IRC | 07:26 | |
*** CaptTofu has quit IRC | 07:27 | |
*** yolanda has joined #openstack-dev | 07:29 | |
*** gargya has joined #openstack-dev | 07:29 | |
*** mindpixel has joined #openstack-dev | 07:35 | |
*** dsanders has joined #openstack-dev | 07:42 | |
*** Ritz has quit IRC | 07:43 | |
*** Ritz has joined #openstack-dev | 07:45 | |
*** gasbakid_ has joined #openstack-dev | 07:47 | |
*** gasbakid has quit IRC | 07:50 | |
*** yolanda has quit IRC | 07:51 | |
*** yolanda has joined #openstack-dev | 07:52 | |
*** networkstatic has quit IRC | 07:53 | |
*** networkstatic has joined #openstack-dev | 07:59 | |
*** rafaduran has joined #openstack-dev | 08:01 | |
*** xga has joined #openstack-dev | 08:02 | |
*** reidrac has joined #openstack-dev | 08:05 | |
openstackgerrit | A change was merged to openstack/cinder: Only use iscsi_helper config option if using LVMISCSIDriver https://review.openstack.org/22706 | 08:10 |
lifeless | winston-d: pong | 08:12 |
*** markmcclain1 has quit IRC | 08:13 | |
*** Mandell has quit IRC | 08:16 | |
*** melwitt has quit IRC | 08:21 | |
*** ethan_ has joined #openstack-dev | 08:25 | |
*** jgallard has joined #openstack-dev | 08:28 | |
*** Oneiroi has joined #openstack-dev | 08:29 | |
*** dsanders has quit IRC | 08:31 | |
*** Akendo has joined #openstack-dev | 08:31 | |
*** boris-42 has joined #openstack-dev | 08:34 | |
*** Oneiroi has quit IRC | 08:35 | |
*** flepied has joined #openstack-dev | 08:35 | |
*** Oneiroi has joined #openstack-dev | 08:36 | |
*** reidrac has quit IRC | 08:38 | |
*** reidrac has joined #openstack-dev | 08:38 | |
*** psedlak has joined #openstack-dev | 08:40 | |
*** johnthetubaguy has joined #openstack-dev | 08:44 | |
*** gasbakid__ has joined #openstack-dev | 08:44 | |
*** dsanders has joined #openstack-dev | 08:44 | |
*** gasbakid_ has quit IRC | 08:45 | |
*** corXi has joined #openstack-dev | 08:51 | |
openstackgerrit | A change was merged to openstack/horizon: Ensure "Add Interface" form in Admin Panel works https://review.openstack.org/22547 | 08:55 |
*** gasbakid__ has quit IRC | 08:55 | |
*** johnthetubaguy1 has joined #openstack-dev | 08:56 | |
*** trapni has joined #openstack-dev | 08:57 | |
*** trapni has joined #openstack-dev | 08:57 | |
*** aloga has quit IRC | 08:57 | |
*** johnthetubaguy has quit IRC | 08:57 | |
*** aloga has joined #openstack-dev | 08:58 | |
*** johnthetubaguy1 has quit IRC | 09:00 | |
*** trapnii has joined #openstack-dev | 09:07 | |
*** trapni has quit IRC | 09:09 | |
*** xga has quit IRC | 09:10 | |
*** donaldh has joined #openstack-dev | 09:15 | |
*** derekh has joined #openstack-dev | 09:16 | |
*** zing has joined #openstack-dev | 09:18 | |
*** jpich has joined #openstack-dev | 09:20 | |
*** dosaboy has joined #openstack-dev | 09:21 | |
*** trapnii has quit IRC | 09:25 | |
*** dsanders has quit IRC | 09:25 | |
*** melwitt has joined #openstack-dev | 09:28 | |
*** danpb has joined #openstack-dev | 09:31 | |
*** eglynn has joined #openstack-dev | 09:33 | |
*** mmagr has joined #openstack-dev | 09:35 | |
*** kbringard has joined #openstack-dev | 09:37 | |
*** zoresvit has joined #openstack-dev | 09:37 | |
*** trapni has joined #openstack-dev | 09:37 | |
*** trapni has joined #openstack-dev | 09:37 | |
*** donaldh has quit IRC | 09:38 | |
*** afazekas has joined #openstack-dev | 09:40 | |
*** markmc has joined #openstack-dev | 09:41 | |
*** networkstatic has quit IRC | 09:42 | |
*** pixelbeat has joined #openstack-dev | 09:48 | |
sgran | hi there | 09:50 |
sgran | I've just uploaded https://review.openstack.org/#/c/23256/ for review | 09:50 |
sgran | I know it's late in the release cycle, but I'm really hoping to get that and one more into nova/grizzly | 09:50 |
sgran | is this going to be possible? | 09:50 |
lifeless | a | 09:50 |
sgran | hmm. I think I made lifeless explode. I'll take that as a negative reaction :) | 09:51 |
lifeless | typo ;) | 09:51 |
lifeless | I'd ping ttx | 09:52 |
lifeless | late release changes tend to make him explode ;) | 09:52 |
*** ogelbukh has quit IRC | 09:53 | |
*** ogelbukh has joined #openstack-dev | 09:54 | |
sgran | ok, thanks :) | 09:55 |
openstackgerrit | A change was merged to openstack/oslo-incubator: Zmq notifier topic manip fix. https://review.openstack.org/23191 | 09:56 |
*** AnilV4 has joined #openstack-dev | 09:56 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Zmq correct envelope param for notify() https://review.openstack.org/23192 | 09:57 |
sgran | ttx: ^^^ | 09:58 |
*** gargya has quit IRC | 10:00 | |
*** johnthetubaguy has joined #openstack-dev | 10:03 | |
*** adjohn_ has quit IRC | 10:09 | |
*** vkmc has joined #openstack-dev | 10:09 | |
*** adjohn has joined #openstack-dev | 10:11 | |
*** Ryan_Lane has quit IRC | 10:11 | |
*** adjohn has quit IRC | 10:11 | |
*** vkmc has quit IRC | 10:11 | |
*** adjohn has joined #openstack-dev | 10:11 | |
*** xga has joined #openstack-dev | 10:12 | |
*** vkmc has joined #openstack-dev | 10:12 | |
*** adjohn has quit IRC | 10:13 | |
*** adjohn has joined #openstack-dev | 10:13 | |
*** mkollaro has joined #openstack-dev | 10:14 | |
*** adjohn has quit IRC | 10:15 | |
sgran | sad-face. I got a no | 10:15 |
*** adjohn has joined #openstack-dev | 10:15 | |
*** adjohn has quit IRC | 10:17 | |
*** adjohn has joined #openstack-dev | 10:17 | |
*** adjohn has quit IRC | 10:19 | |
*** corXi has quit IRC | 10:21 | |
*** adjohn has joined #openstack-dev | 10:24 | |
*** adjohn has quit IRC | 10:24 | |
*** jgallard has quit IRC | 10:25 | |
*** zbitter is now known as zaneb | 10:25 | |
*** adjohn_ has joined #openstack-dev | 10:26 | |
*** adjohn__ has joined #openstack-dev | 10:28 | |
*** adjohn__ has quit IRC | 10:28 | |
*** aagaard has joined #openstack-dev | 10:29 | |
*** adjohn_ has quit IRC | 10:30 | |
*** adjohn_ has joined #openstack-dev | 10:34 | |
*** adjohn_ has quit IRC | 10:34 | |
*** fire has joined #openstack-dev | 10:38 | |
*** martine has joined #openstack-dev | 10:38 | |
*** zoresvit has quit IRC | 10:39 | |
danpb | markmc: pixelbeat if either of you have chance to review this it'd be a great help https://review.openstack.org/#/c/23081/ | 10:41 |
pixelbeat | looking | 10:43 |
*** martine has quit IRC | 10:43 | |
*** alexxu has quit IRC | 10:44 | |
vkmc | Hey everyone! Does anybody know who manages OpenStack forums? | 10:44 |
vkmc | It appears to be having some sort of issue, because it's blacklisting all the IPs who tries to register or login | 10:45 |
pixelbeat | danpb, I would have assumed a separate char than the standard variable name _ to denote a namespace. I.E. hw:disk_bus I suppose this was discussed somewhere? | 10:48 |
danpb | pixelbeat: i asked about this on the mailing list to minimal response | 10:49 |
pixelbeat | ok I'll check there | 10:50 |
danpb | pixelbeat: what tipped me in favour of '_' is that the glance docs have been using 'os_' as a standard prefix for several operating system properties | 10:50 |
*** darraghb has joined #openstack-dev | 10:51 | |
*** egallen has joined #openstack-dev | 10:53 | |
*** zoresvit has joined #openstack-dev | 10:53 | |
*** jgallard has joined #openstack-dev | 10:55 | |
jpich | vkmc: I would assume reed does? Not sure though. Last time I looked in there were many, many, many, many more spam messages than real ones so maybe the antispam controls have gone too far the other way now | 10:57 |
vkmc | jpich, Oh good to know, maybe I should ask him later :) | 10:57 |
vkmc | jpich, Some guy contacted me with that doubt | 10:57 |
*** tomoe_ has joined #openstack-dev | 10:58 | |
*** egallen has quit IRC | 10:59 | |
*** zoresvit has quit IRC | 11:00 | |
*** boris-42 has quit IRC | 11:00 | |
*** enjoy_ has quit IRC | 11:00 | |
*** pcm_ has joined #openstack-dev | 11:00 | |
*** ladquin has joined #openstack-dev | 11:03 | |
*** egallen has joined #openstack-dev | 11:06 | |
*** adjohn has joined #openstack-dev | 11:10 | |
*** yaguang has quit IRC | 11:11 | |
*** egallen has quit IRC | 11:11 | |
*** xga has quit IRC | 11:14 | |
*** xga has joined #openstack-dev | 11:15 | |
*** zoresvit has joined #openstack-dev | 11:18 | |
*** adjohn has quit IRC | 11:19 | |
*** koolhead17 has joined #openstack-dev | 11:25 | |
*** pcm_ has quit IRC | 11:28 | |
*** mkollaro has quit IRC | 11:29 | |
*** slewsys has quit IRC | 11:30 | |
*** ijw has quit IRC | 11:30 | |
*** slewsys has joined #openstack-dev | 11:31 | |
*** slewsys has quit IRC | 11:32 | |
*** vkmc has quit IRC | 11:32 | |
openstackgerrit | A change was merged to openstack/nova: Add a 'hw_' namespace to glance hardware config properties https://review.openstack.org/23081 | 11:35 |
*** vkmc has joined #openstack-dev | 11:36 | |
*** manas has quit IRC | 11:38 | |
zykes- | &win 43 | 11:39 |
zykes- | &win 43 | 11:39 |
*** fire has quit IRC | 11:39 | |
*** zoresvit has quit IRC | 11:42 | |
*** kbringard has quit IRC | 11:46 | |
*** arbrandes has joined #openstack-dev | 11:46 | |
*** mohits has quit IRC | 11:49 | |
*** chuckieb has joined #openstack-dev | 11:55 | |
*** fire has joined #openstack-dev | 11:56 | |
*** zoresvit has joined #openstack-dev | 11:56 | |
*** gargya has joined #openstack-dev | 11:59 | |
*** pcm__ has joined #openstack-dev | 11:59 | |
*** alobbs has quit IRC | 12:01 | |
*** sandywalsh has quit IRC | 12:05 | |
*** chuckieb has quit IRC | 12:11 | |
*** chuckieb has joined #openstack-dev | 12:12 | |
*** alobbs has joined #openstack-dev | 12:13 | |
*** pcm__ has quit IRC | 12:13 | |
*** pcm_ has joined #openstack-dev | 12:13 | |
*** adjohn has joined #openstack-dev | 12:15 | |
*** chuckieb has quit IRC | 12:16 | |
*** sandywalsh has joined #openstack-dev | 12:18 | |
markmc | zigo_, hey | 12:20 |
zigo_ | Hi. | 12:20 |
*** adjohn has quit IRC | 12:20 | |
markmc | zigo_, I think I got confused on that oslo-config/debian packaging thread | 12:20 |
zigo_ | Yeah, me too ! :) | 12:20 |
markmc | zigo_, you're saying oslo-config as the python package name is fine for debian, right? | 12:20 |
markmc | zigo_, it doesn't require every package that requires oslo-config to override defaults? | 12:21 |
zigo_ | I'm saying that basically, I don't really care, and if there's oslo.config vs oslo-config, I can use the debian/pydist-override file. | 12:21 |
zigo_ | But that best would be if it was directly oslo-config | 12:21 |
markmc | zigo_, since those packages would list 'oslo-config' in their install_requires in setup.py? | 12:21 |
markmc | zigo_, if we switched to oslo.config and all projects which needed had oslo.config in install_requires, that would be equally fine? | 12:22 |
zigo_ | As much as I saw with g3, there was no problem, probably because it was not in the tools/pip-requires. | 12:22 |
markmc | well, the full tarball URL is in pip-requires | 12:22 |
openstackgerrit | A change was merged to openstack-dev/devstack: Ignore autogenerated .prereqs. https://review.openstack.org/23254 | 12:22 |
zigo_ | I'd prefer if it was oslo-config rather than oslo.config, because the Debian package name is already oslo-config. | 12:22 |
markmc | oslo-config ends up in the egg's requirements.txt | 12:22 |
markmc | well, it's python-oslo-config right? | 12:22 |
zigo_ | In g3? | 12:23 |
markmc | ah, if it was oslo.config upstream you'd call it python-oslo.config ? | 12:23 |
zigo_ | It's the traball, as you said. | 12:23 |
zigo_ | No. | 12:23 |
zigo_ | Well... | 12:23 |
markmc | in Fedora, we'd call it python-oslo-config even if it was oslo.config upstream | 12:23 |
zigo_ | Guys in Ubuntu said they would like to switch to python-oslo.config. | 12:23 |
markmc | who cares about them | 12:23 |
* markmc jokes | 12:23 | |
markmc | ok, whatever | 12:24 |
markmc | you're saying it's fine as it is | 12:24 |
markmc | that's enough for me :) | 12:24 |
* markmc just wants to use this opportunity to fix stuff if it makes sense | 12:24 | |
zigo_ | Ok, let me say it more clearly. | 12:24 |
markmc | if we wouldn't be able to fix it later, once it goes up on pypi | 12:24 |
zigo_ | I'd prefer if tools/pip-requires was using oslo-config rather than oslo.config, because that's how my package is already called. | 12:25 |
zigo_ | I'd prefer to use python-oslo-config because switching would mean more work. | 12:25 |
zigo_ | But if Ubuntu guys are switching to oslo.config instead, I'll folow, in order to make it consistent. | 12:25 |
zigo_ | Does this make more sense now? :) | 12:25 |
markmc | why would they switch to oslo.config ? | 12:25 |
markmc | if it's oslo-config upstream? | 12:25 |
zigo_ | That's what I read... | 12:26 |
zigo_ | Let me re-read the thread. | 12:26 |
markmc | heh | 12:26 |
markmc | ok, I see it | 12:26 |
markmc | will poke a bit more | 12:26 |
zigo_ | Hum... | 12:27 |
zigo_ | Was it on IRC that I read ubuntu guys would switch? | 12:27 |
zigo_ | Let me check the log... | 12:27 |
zigo_ | jamespage: Are you around? | 12:27 |
zigo_ | zul: ? | 12:28 |
jamespage | zigo_, I am | 12:28 |
markmc | it's on the mailing list | 12:28 |
markmc | from Daviey | 12:28 |
* markmc is replying | 12:28 | |
zigo_ | jamespage: So, will you guys rename python-oslo-config into python-oslo.config? | 12:28 |
zigo_ | It doesn't make sense to me and mark. | 12:28 |
jamespage | zigo_, lemme read the history | 12:33 |
zigo_ | I currently use "python-oslo-config" it would be some effort to switch back. | 12:34 |
zigo_ | Seems that all G3 packages have: "http://tarballs.openstack.org/oslo-config/oslo-config-2013.1b4.tar.gz#egg=oslo-config" in the tools/pip-requires | 12:35 |
jamespage | zigo_, so is Ubuntu - the steer to move to oslo.config came from the Debian python modules team | 12:35 |
zigo_ | Ah??? | 12:35 |
zigo_ | Who from the team? | 12:35 |
markmc | I just replied | 12:35 |
markmc | python-$namespace.$submodule makes sense where the upstream package name is $namespace.$submodule | 12:36 |
markmc | like zope.interface | 12:36 |
zigo_ | Ah. | 12:36 |
markmc | in this case, we're using $namespace-$submodule upstream | 12:36 |
markmc | so debian/ubuntu should be python-$namespace-$submodule | 12:36 |
markmc | i.e. oslo-config and python-oslo-config | 12:36 |
markmc | *unless* | 12:36 |
markmc | someone persuades me to change the upstream name to oslo.config | 12:37 |
markmc | and I'm totally open to good arguments for that change | 12:37 |
jamespage | zigo_, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701192 | 12:37 |
uvirtbot | Debian bug 701192 in python-defaults "python-defaults: Debian Python Policy clarification of binary package naming for submodules" [Normal,Open] | 12:37 |
jamespage | apparently discussed on IRC | 12:37 |
zigo_ | If *everyone* decides to change it *now*, I don't mind doing the change. | 12:38 |
markmc | jamespage, what you really need is a reference that upstream python packages use the $namespace.$submodule format consistently | 12:38 |
markmc | jamespage, for downstream to not follow the upstream name would be dumb | 12:38 |
zigo_ | Though it has to change quick, because it current takes a lot of time for packages to go in the ftp-masters NEW queue. | 12:38 |
jamespage | markmc, I don't disagree | 12:38 |
jamespage | somewhat on the perimeter of this conversation :-) | 12:39 |
markmc | sure, np | 12:39 |
zigo_ | markmc: Are you working on oslo-config yourself? | 12:40 |
zul | so yeah as i understand it the binary package name python-oslo-config is against debian python policy | 12:40 |
markmc | zigo_, not sure I understand the question? | 12:40 |
zul | as jamespage already mentioned the bug report | 12:40 |
* markmc sighs | 12:40 | |
markmc | the bug report is proposing a change/clarification to the debian policy AFAIR | 12:41 |
zul | right | 12:41 |
markmc | if the policy becomes "debian should ignore the upstream package names" then that's farcically dumb | 12:41 |
markmc | python-zope.interface makes sense | 12:41 |
markmc | python-oslo-config makes sense | 12:41 |
markmc | if we change upstream to oslo.config | 12:41 |
markmc | then python-oslo.config makes sense | 12:41 |
*** corXi has joined #openstack-dev | 12:41 | |
zul | markmc: i was in total agreement | 12:43 |
markmc | zul, cool | 12:43 |
zul | markmc: but i was overruled | 12:44 |
jamespage | zul, markmc: I think we should leave as -is | 12:44 |
sgran | markmc: that bug is about how to handle the name transition to python3 | 12:44 |
sgran | my advice is: don't poke the bear | 12:44 |
*** Samos123 has joined #openstack-dev | 12:44 | |
jamespage | otherwise we have stupid stuff in packaging to deal with the version mis-naming which is wasted effort IMHO | 12:44 |
zigo_ | I'm for sticking to oslo-config too. | 12:45 |
* markmc clicks "toggle useless messages" in the hope it will make the whole thing go away :) | 12:45 | |
zigo_ | Not only you'll have to rename the package, but you will have to add some Replaces, Breaks, Provides: ... | 12:45 |
zigo_ | At worse, if we want, we could add a "Provides: python-oslo.config" in the *current* python-oslo-config debian package. | 12:46 |
zigo_ | I think that's easier than to do a full rename. | 12:46 |
*** alexpilotti has joined #openstack-dev | 12:50 | |
*** alexpilotti has quit IRC | 12:50 | |
*** alexpilotti_ has joined #openstack-dev | 12:51 | |
markmc | zigo_, what's the debian package for PasteDeploy ? | 12:54 |
zigo_ | markmc: python-pastedeploy | 12:55 |
markmc | zigo_, ok, thanks | 12:55 |
zigo_ | I know all the names by heart, though I'm not sure I would be able to tell for all what they are for. | 12:56 |
zigo_ | :P | 12:56 |
markmc | point is, it's not python-paste.deploy | 12:57 |
zigo_ | Right. | 12:57 |
zigo_ | But wrong prior art isn't a proof that we can continue to do something wrong. :P | 12:58 |
markmc | sure | 12:58 |
markmc | bug again, this is about getting the upstream name right | 12:59 |
markmc | not downstream packaging policy | 12:59 |
zigo_ | I agree. | 12:59 |
zykes- | hey zigo_ :) | 12:59 |
zigo_ | As a downstream, and a lazy man, I vote for "do not touch it, it's not broken" | 13:00 |
zigo_ | :) | 13:00 |
*** markvoelker has joined #openstack-dev | 13:01 | |
danpb | markmc: i see plenty of Debian python packages using '-' in their name http://pastebin.com/gk62j8FZ | 13:04 |
*** timello has quit IRC | 13:04 | |
markmc | danpb, yeah, but are the all installing into namespace packages | 13:04 |
markmc | danpb, i.e. namespace_packages=['oslo'] in setup.py is the key here | 13:05 |
danpb | markmc: i'd think the django ones probably would be, but haven't check | 13:05 |
markmc | danpb, checked django, and it appears not | 13:05 |
*** mkollaro has joined #openstack-dev | 13:05 | |
*** flepied has quit IRC | 13:09 | |
openstackgerrit | A change was merged to openstack-dev/devstack: Change the openvz driver compute_driver entry to match all other compute drivers in nova. https://review.openstack.org/22985 | 13:11 |
*** xga has quit IRC | 13:13 | |
*** anniec has joined #openstack-dev | 13:14 | |
*** anniec_ has joined #openstack-dev | 13:15 | |
*** xga_ has joined #openstack-dev | 13:15 | |
*** adjohn has joined #openstack-dev | 13:17 | |
*** flepied has joined #openstack-dev | 13:18 | |
*** anniec has quit IRC | 13:18 | |
*** anniec_ is now known as anniec | 13:18 | |
*** melwitt has quit IRC | 13:21 | |
*** iartarisi has joined #openstack-dev | 13:21 | |
*** adjohn has quit IRC | 13:21 | |
openstackgerrit | A change was merged to openstack/tempest: Update live migration test to use new syntax for create_server https://review.openstack.org/23260 | 13:21 |
*** yamahata has joined #openstack-dev | 13:21 | |
openstackgerrit | A change was merged to openstack/tempest: Fix endpoint usage for glance_http in image client. https://review.openstack.org/23205 | 13:21 |
*** eglynn has quit IRC | 13:28 | |
*** timello has joined #openstack-dev | 13:28 | |
*** cdub_ has quit IRC | 13:32 | |
*** anteaya has joined #openstack-dev | 13:37 | |
*** alunduil has quit IRC | 13:37 | |
*** eglynn has joined #openstack-dev | 13:39 | |
*** zoresvit has quit IRC | 13:40 | |
*** ethan_ has quit IRC | 13:41 | |
*** navid has quit IRC | 13:41 | |
*** zoresvit has joined #openstack-dev | 13:42 | |
*** radez_g0n3 is now known as radez | 13:46 | |
*** zoresvit has quit IRC | 13:46 | |
*** adjohn has joined #openstack-dev | 13:48 | |
*** pcm_ has quit IRC | 13:49 | |
*** bknudson has joined #openstack-dev | 13:49 | |
*** bknudson has quit IRC | 13:49 | |
openstackgerrit | A change was merged to openstack/ceilometer: Decouple the nova notifier from ceilometer code https://review.openstack.org/22759 | 13:51 |
*** adjohn has quit IRC | 13:52 | |
*** pcm__ has joined #openstack-dev | 13:59 | |
*** pcm_ has joined #openstack-dev | 13:59 | |
*** zoresvit has joined #openstack-dev | 14:01 | |
*** zykes- has quit IRC | 14:01 | |
*** soody has joined #openstack-dev | 14:03 | |
*** corXi has quit IRC | 14:04 | |
*** dprince has joined #openstack-dev | 14:04 | |
*** digitalsanctum has joined #openstack-dev | 14:05 | |
*** rkukura has joined #openstack-dev | 14:05 | |
openstackgerrit | A change was merged to openstack/tempest: Update defaults for s3 materials paths/names https://review.openstack.org/23067 | 14:08 |
*** ijw has joined #openstack-dev | 14:08 | |
*** rnirmal has joined #openstack-dev | 14:08 | |
*** zykes- has joined #openstack-dev | 14:10 | |
*** rnirmal has quit IRC | 14:11 | |
*** sthaha has joined #openstack-dev | 14:15 | |
*** nijaba_ is now known as nijaba | 14:16 | |
*** dolphm has joined #openstack-dev | 14:16 | |
*** kbrierly has quit IRC | 14:16 | |
*** jaypipes has quit IRC | 14:18 | |
*** adjohn has joined #openstack-dev | 14:18 | |
*** adjohn has quit IRC | 14:23 | |
*** stevemar has joined #openstack-dev | 14:24 | |
*** woodspa has joined #openstack-dev | 14:24 | |
*** russellb is now known as rustlebee | 14:26 | |
*** anteaya is now known as anteaya-yo | 14:26 | |
*** bknudson has joined #openstack-dev | 14:28 | |
*** manas has joined #openstack-dev | 14:28 | |
*** martine has joined #openstack-dev | 14:32 | |
*** dripton_ is now known as dripton | 14:33 | |
*** eharney has joined #openstack-dev | 14:34 | |
*** READ10 has joined #openstack-dev | 14:36 | |
*** soody has quit IRC | 14:37 | |
*** fedgoat has joined #openstack-dev | 14:40 | |
*** ayoung-zzzz is now known as ayoung | 14:44 | |
*** koert has joined #openstack-dev | 14:46 | |
*** alunduil has joined #openstack-dev | 14:47 | |
*** imsplitbit has joined #openstack-dev | 14:48 | |
*** zeriouz has joined #openstack-dev | 14:48 | |
*** alunduil has quit IRC | 14:48 | |
*** alunduil has joined #openstack-dev | 14:49 | |
*** adjohn has joined #openstack-dev | 14:49 | |
*** jaypipes has joined #openstack-dev | 14:49 | |
*** topol has joined #openstack-dev | 14:50 | |
*** adjohn has quit IRC | 14:53 | |
*** terryh has joined #openstack-dev | 14:53 | |
*** mrunge has quit IRC | 14:54 | |
*** jbresnah_ has quit IRC | 14:54 | |
*** jbresnah_ has joined #openstack-dev | 14:54 | |
*** spzala has joined #openstack-dev | 14:56 | |
*** aeperezt has joined #openstack-dev | 14:58 | |
*** mtreinish has joined #openstack-dev | 14:58 | |
*** dansmith is now known as SteelyDan | 15:00 | |
*** jaypipes has quit IRC | 15:00 | |
*** jimfehlig has joined #openstack-dev | 15:02 | |
*** soody has joined #openstack-dev | 15:02 | |
*** john5223 has joined #openstack-dev | 15:03 | |
*** jaypipes has joined #openstack-dev | 15:03 | |
*** cloudchimp has joined #openstack-dev | 15:03 | |
*** soody has quit IRC | 15:04 | |
*** ijw has quit IRC | 15:04 | |
*** xga_ has quit IRC | 15:05 | |
ayoung | dolphm, do you havea fix that makes all of the non-trusts tests in https://review.openstack.org/#/c/23057/ work? | 15:10 |
dolphm | ayoung: gyee's should, but haven't tested | 15:11 |
dolphm | ayoung: fixing the bad expires_at check btw | 15:12 |
ayoung | OK, I'm going to try. I have trusts working with an older version of your tests. Can we agree that this is the last set of tests, modulo uncovering a more significant poroblem? | 15:12 |
ayoung | dolphm, you are doing that now? | 15:12 |
dolphm | ayoung: yes | 15:13 |
ayoung | dolphm, OK, I just posted an updated trusts patch with some better exception reporting and the fixes that YorikSar reported last night. | 15:14 |
dolphm | ayoung: saw that, thanks | 15:14 |
ayoung | dolphm, how do you abort a cherry-pick gone bad? | 15:15 |
dolphm | ayoung: depends on where you're at -- did it not apply and wants you to resolve? | 15:16 |
ayoung | dolphm, I just commited and then reset head. I'm good, but there has to be a cleaner way | 15:16 |
*** rpedde_away is now known as rpedde | 15:16 | |
*** flepied has quit IRC | 15:16 | |
*** flepied has joined #openstack-dev | 15:17 | |
dolphm | ayoung: "git checkout -- . && git reset --soft HEAD" or something? | 15:17 |
ayoung | should be git cherry-pick --abort or something like that | 15:17 |
sgran | git reset --heard HEAD | 15:18 |
sgran | git reset --hard HEAD | 15:18 |
sgran | even | 15:18 |
sgran | "please make my working tree like HEAD, no matter what" | 15:18 |
dolphm | ayoung: git cherry-pick --abort "Cancel the operation and return to the pre-sequence state." | 15:19 |
dolphm | ayoung: git cherry-pick --quit "Forget about the current operation in progress. Can be used to clear the sequencer state after a failed cherry-pick or revert." | 15:19 |
*** annegentle has joined #openstack-dev | 15:20 | |
ayoung | I thought I looked for that. Oh well..I need to RTFM | 15:20 |
*** adjohn has joined #openstack-dev | 15:20 | |
dolphm | there's always 10 ways to get from point A to point B with git | 15:20 |
ayoung | dolphm, when you say "Guang's Fix" which one do you mean? | 15:22 |
*** gongysh has quit IRC | 15:22 | |
ayoung | The one in our tree or the one in olso? | 15:22 |
*** CaptTofu has joined #openstack-dev | 15:23 | |
*** dolphm has quit IRC | 15:23 | |
*** xga has joined #openstack-dev | 15:23 | |
*** adjohn has quit IRC | 15:24 | |
*** garyTh has joined #openstack-dev | 15:25 | |
Daviey | vishy: Hey, are you around? | 15:25 |
Daviey | markmc: Hey.. do you have a moment? | 15:26 |
markmc | sure? | 15:26 |
*** dolphm has joined #openstack-dev | 15:26 | |
Daviey | markmc: I was looking at bug 1078808, and wondered your views on re-considering it for folsom potential. | 15:26 |
uvirtbot | Launchpad bug 1078808 in nova "Multi host DHCP networking and local DNS resolving" [High,Fix released] https://launchpad.net/bugs/1078808 | 15:26 |
dolphm | ayoung: gyee's fix in keystone should pass tests, but the one in oslo needs to be merged and badckported or we need to work with what we have in oslo | 15:27 |
Daviey | markmc: It doesn't seem to be a feature IMO, but is a little more intrusive than i am immediately comfortable with. | 15:27 |
ayoung | dolphm, gyee's fix does not make the test pass. | 15:27 |
ayoung | dolphm, I'll paste the first one | 15:27 |
*** blamar has joined #openstack-dev | 15:27 | |
ayoung | I'm guessin there is a path forward from there | 15:27 |
ayoung | dolphm, http://fpaste.org/ZwdG/ | 15:28 |
ayoung | that is applying: guangs fix, then trusts, then your latest tests/ | 15:28 |
markmc | Daviey, well, vishy's the one saying it's a feature, so I'm curious first what he thinks | 15:28 |
dolphm | ayoung: hmm... maybe he also renamed expires -> expires_at? | 15:28 |
dolphm | ayoung: there's another fix out there for that too | 15:29 |
markmc | Daviey, new config options and rpcapi changes point to it being more intrusive than we'd like on the stable branch | 15:29 |
dolphm | ayoung: by malini | 15:29 |
markmc | Daviey, other data which would be useful is why you think it's ultra important | 15:29 |
markmc | Daviey, maybe summarize in the bug? | 15:29 |
Daviey | markmc: right.. but with a no-change default behaviour, and a no-change required for config.. it seemed a little safer. | 15:30 |
dolphm | ayoung: updated my tests -- try again | 15:30 |
Daviey | markmc: Instances on seperate compute nodes can't resolve each others hostnames using multihost | 15:30 |
markmc | Daviey, add some verbiage to the bug, I just targeted it to the series | 15:31 |
Daviey | with the default behaviour to not enable it.. i hoped we could revist it (nautrual binding on vishy's view) | 15:31 |
markmc | Daviey, rpcapi changes are troublesome because we'd need to document in release notes that people must update their network services first | 15:32 |
Daviey | markmc: do people need to make changes, if they don't wish to make use of this behaviour ? | 15:32 |
Daviey | ie, it seems to be 'opt in' right? | 15:33 |
ayoung | dolphm, is that with guang's patch or without? | 15:33 |
* ayoung realizes I can just checkout as opposed to cherry picking | 15:35 | |
*** markmcclain has joined #openstack-dev | 15:36 | |
*** koolhead17 has quit IRC | 15:37 | |
*** burris has joined #openstack-dev | 15:38 | |
ayoung | dolphm, OK, got it to work. Can we take guang's patch as an interim, and do a bug fix after wards? | 15:39 |
*** sthaha has quit IRC | 15:39 | |
*** alop has joined #openstack-dev | 15:39 | |
dolphm | ayoung: ask markmc, i'd consider it bad form to step on oslo's toes https://review.openstack.org/#/c/23218/ | 15:40 |
*** mrodden1 has quit IRC | 15:42 | |
*** dontalton has joined #openstack-dev | 15:42 | |
ayoung | dolphm, I don't think it would be stepping on their toes. I think this is the general pattern all along: a specific project makes a fix, and then proposes it to common. If the fix accepted to common is different than the one in the project, the project adapts when it merges down from Oslo. It is a blocker fo me. | 15:44 |
*** lglenden has joined #openstack-dev | 15:44 | |
*** blamar has quit IRC | 15:44 | |
*** dstufft has quit IRC | 15:44 | |
*** jamespage has quit IRC | 15:44 | |
*** openstackjenkins has quit IRC | 15:44 | |
*** dmarkey has quit IRC | 15:44 | |
*** hemnafk has quit IRC | 15:44 | |
*** annegentle has quit IRC | 15:44 | |
*** jaypipes has quit IRC | 15:44 | |
*** sulrich has quit IRC | 15:44 | |
*** adam_g has quit IRC | 15:44 | |
ayoung | meanwhile, we pursue getting the right fix into oslo. | 15:45 |
*** annegentle has joined #openstack-dev | 15:45 | |
*** jaypipes has joined #openstack-dev | 15:45 | |
*** sulrich has joined #openstack-dev | 15:45 | |
*** adam_g has joined #openstack-dev | 15:45 | |
dolphm | ayoung: the keystone.openstack namespace is owned by oslo, not us; it's not a blocker as we can work around it... i'm happy to propose an alternate patch | 15:45 |
*** blamar has joined #openstack-dev | 15:45 | |
*** dstufft has joined #openstack-dev | 15:45 | |
*** jamespage has joined #openstack-dev | 15:45 | |
*** openstackjenkins has joined #openstack-dev | 15:45 | |
*** dmarkey has joined #openstack-dev | 15:45 | |
*** hemnafk has joined #openstack-dev | 15:45 | |
*** gael has joined #openstack-dev | 15:45 | |
*** DuncanT has quit IRC | 15:46 | |
ayoung | dolphm, is it? I thought we intentionally named it keystone.openstack to give us an insulation layer? | 15:46 |
dolphm | ayoung: insulation? | 15:46 |
ayoung | dolphm, insulates us from oslo changes and oslo from us, until we chose to integrate a fix | 15:47 |
*** zoresvit has quit IRC | 15:47 | |
ayoung | keystone.,openstack.common instead of calling it openstack.common. | 15:47 |
ayoung | we can put a comment into gyee's patch that states it will be overwritten if merged down from oslo. | 15:48 |
dolphm | ayoung: that's just an incubation hack until we get oslo as a real dependency | 15:48 |
*** jmp has joined #openstack-dev | 15:48 | |
*** Gordonz has joined #openstack-dev | 15:48 | |
sstent | could someone take a quick look at this bug? https://bugs.launchpad.net/nova/+bug/1137977 | 15:49 |
uvirtbot | Launchpad bug 1137977 in nova ""nova-manage db archive_deleted_rows" returns error re foreign key constraints" [Undecided,New] | 15:49 |
*** zoresvit has joined #openstack-dev | 15:49 | |
*** jmp is now known as Guest89697 | 15:49 | |
*** Guest89697 is now known as _jmp_ | 15:49 | |
ayoung | dolphm, ...so, do we really need microseconf precision, or is it just a case of allowing people to post times in microsecond format. | 15:49 |
*** Gordonz has quit IRC | 15:49 | |
ayoung | Seems anything more granular than seconds is excessive | 15:49 |
*** Gordonz has joined #openstack-dev | 15:50 | |
*** rnirmal has joined #openstack-dev | 15:50 | |
ayoung | or is this a workaround for JSON dumps? | 15:51 |
*** annegentle has left #openstack-dev | 15:51 | |
dolphm | ayoung: you added microsecond precision as an undocumented change into the v2 token, so you tell me? all we're doing is revising v3 timestamps to match | 15:52 |
*** edmund has joined #openstack-dev | 15:52 | |
ayoung | dolphm, ah....right...the whole, quick token reissue sillyness. | 15:53 |
*** rkukura has quit IRC | 15:53 | |
ayoung | dolphm, I suspect I was just working around a super aggressive unit test. Hmmm. | 15:53 |
*** rkukura has joined #openstack-dev | 15:54 | |
*** danwent has joined #openstack-dev | 15:56 | |
*** fire has quit IRC | 15:58 | |
*** gael has quit IRC | 15:59 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: update.py: DRY up using functools.partial() https://review.openstack.org/23263 | 16:00 |
ayoung | dolphm, OK, wait. | 16:02 |
ayoung | I think that bug is spurious. They are supposed to have different formats. | 16:02 |
*** dolphm has quit IRC | 16:03 | |
*** dolphm has joined #openstack-dev | 16:03 | |
*** aeperezt has quit IRC | 16:03 | |
dolphm | ayoung: which bug? | 16:04 |
ayoung | https://bugs.launchpad.net/keystone/+bug/1134802 | 16:05 |
uvirtbot | Launchpad bug 1134802 in keystone "expires_at and issues_at have inconsistent time stamp format" [Undecided,In progress] | 16:05 |
dolphm | ayoung: they all have the same format in the spec | 16:05 |
*** AnilV4 has quit IRC | 16:05 | |
ayoung | dolphm, understood. It didn't occur to me the difference until just now. | 16:06 |
dolphm | ayoung: at gyee's suggestion, i also proposed a consistent change to that format in https://review.openstack.org/#/c/23170/ and am testing for it in my patch | 16:06 |
*** tomoe_ has quit IRC | 16:07 | |
*** bswartz has quit IRC | 16:07 | |
*** aeperezt has joined #openstack-dev | 16:07 | |
ayoung | I like the XKCD reference, especailly the alt-text | 16:07 |
*** anniec has quit IRC | 16:07 | |
*** tomoe_ has joined #openstack-dev | 16:07 | |
*** manas has quit IRC | 16:07 | |
*** markmcclain1 has joined #openstack-dev | 16:08 | |
*** Akendo has quit IRC | 16:08 | |
*** koert has quit IRC | 16:08 | |
*** markmcclain has quit IRC | 16:08 | |
dolphm | ayoung: :) | 16:08 |
*** aloga has quit IRC | 16:08 | |
ayoung | dolphm, so, the ISO standard allows you to specify a subset of the number of fields, right? For expires_at, we should probably accept a granularity of minutes. | 16:08 |
ayoung | No reason to make someone specify down to the second/millifemtopico | 16:09 |
ayoung | not sure if there is an elegant way to parse. I like your suggestion about defaulting to the expected format | 16:10 |
*** mrodden has joined #openstack-dev | 16:10 | |
*** hugokuo has left #openstack-dev | 16:11 | |
dolphm | ayoung: there's no reason to expect granularity at the api level -- if someone only wants to specify minutes, their datetime library will hopefully let them do that and generate a timestamp in the format that we expect | 16:12 |
dolphm | ayoung: i wouldn't want to disallow users from creating trusts that are valid for just a few seconds without reason | 16:13 |
ayoung | dolphm, I think that if we say ISO8601, we should accept what that standard states. Let me do a little research, I think someone has solved this problem for us | 16:13 |
*** maoy has joined #openstack-dev | 16:13 | |
*** lglenden has quit IRC | 16:13 | |
ayoung | dolphm, agreed. I am stating that we accept any valid ISO8601 sting, I just am confirming that means with any reasonable subset of the fields. But there is this | 16:13 |
dolphm | ayoung: it's a double edged issue -- we need to both generate timestamps AND parse them | 16:13 |
ayoung | https://pypi.python.org/pypi/python-dateutil | 16:14 |
ayoung | dolphm, yes, but we can generate in granularity appropriate to the field. Only issued_at needs sub second | 16:14 |
ayoung | http://labix.org/python-dateutil | 16:14 |
ayoung | not suggesting we use it, just researching | 16:15 |
ayoung | https://pypi.python.org/pypi/iso8601/ | 16:17 |
*** sacharya has joined #openstack-dev | 16:18 | |
*** blamar has quit IRC | 16:18 | |
*** blamar has joined #openstack-dev | 16:19 | |
*** Mandell has joined #openstack-dev | 16:19 | |
*** Ryan_Lane has joined #openstack-dev | 16:19 | |
*** dolphm has quit IRC | 16:20 | |
*** markmcclain1 has quit IRC | 16:20 | |
*** markmcclain has joined #openstack-dev | 16:21 | |
*** danwent has quit IRC | 16:22 | |
*** cp16net|away is now known as cp16net | 16:24 | |
*** dosaboy has quit IRC | 16:25 | |
*** reed has joined #openstack-dev | 16:26 | |
*** dosaboy has joined #openstack-dev | 16:27 | |
*** reidrac has quit IRC | 16:27 | |
*** gargya has quit IRC | 16:27 | |
*** koolhead17 has joined #openstack-dev | 16:28 | |
*** doude has joined #openstack-dev | 16:30 | |
*** ilblackdragon has quit IRC | 16:30 | |
*** danwent has joined #openstack-dev | 16:31 | |
*** danwent has quit IRC | 16:34 | |
*** otherwiseguy has joined #openstack-dev | 16:35 | |
*** networkstatic has joined #openstack-dev | 16:37 | |
*** trapni has quit IRC | 16:37 | |
*** dontalton has quit IRC | 16:37 | |
*** aagaard has quit IRC | 16:37 | |
*** cdub_ has joined #openstack-dev | 16:40 | |
*** jgallard has quit IRC | 16:41 | |
*** dolphm has joined #openstack-dev | 16:42 | |
zykes- | yo, any of you rackers here that sit close to Kurt Griffiths? | 16:46 |
*** derekh has quit IRC | 16:47 | |
*** pabelanger has joined #openstack-dev | 16:47 | |
*** manas has joined #openstack-dev | 16:49 | |
*** cdub_ has quit IRC | 16:50 | |
*** Ryan_Lane has quit IRC | 16:51 | |
*** arbrandes has quit IRC | 16:51 | |
*** gugl has joined #openstack-dev | 16:52 | |
*** jcmartin has joined #openstack-dev | 16:52 | |
*** cp16net is now known as cp16net|away | 16:53 | |
*** kbrierly has joined #openstack-dev | 16:53 | |
*** yidclare has quit IRC | 16:55 | |
*** anniec has joined #openstack-dev | 16:57 | |
*** romcheg has left #openstack-dev | 16:57 | |
*** mindpixel has quit IRC | 16:58 | |
*** Ryan_Lane has joined #openstack-dev | 16:59 | |
*** Kharec has joined #openstack-dev | 17:00 | |
*** john5223 has quit IRC | 17:00 | |
*** giulivo has quit IRC | 17:01 | |
*** ilblackdragon has joined #openstack-dev | 17:01 | |
*** gasbakid has joined #openstack-dev | 17:02 | |
*** adjohn has joined #openstack-dev | 17:02 | |
*** mlavalle has joined #openstack-dev | 17:03 | |
*** ryant_ has joined #openstack-dev | 17:05 | |
*** mrodden1 has joined #openstack-dev | 17:06 | |
ryant_ | Anyone know enough about nova-network to understand why I'm not seeing SNAT rules for floating IP's get configured right? | 17:06 |
*** mrodden has quit IRC | 17:08 | |
*** yamahata has quit IRC | 17:08 | |
*** hemnafk is now known as hemna | 17:08 | |
*** romcheg has joined #openstack-dev | 17:08 | |
*** romcheg has left #openstack-dev | 17:09 | |
*** blamar has quit IRC | 17:09 | |
*** gasbakid has quit IRC | 17:09 | |
*** dsanders has joined #openstack-dev | 17:11 | |
*** CaptTofu_ has joined #openstack-dev | 17:11 | |
*** CaptTofu has quit IRC | 17:11 | |
*** pasquier-s has quit IRC | 17:12 | |
*** giulivo has joined #openstack-dev | 17:12 | |
*** dontalton has joined #openstack-dev | 17:13 | |
*** Ritz-Mobile has joined #openstack-dev | 17:13 | |
*** Ryan_Lane has quit IRC | 17:19 | |
*** john5223 has joined #openstack-dev | 17:22 | |
*** hugokuo has joined #openstack-dev | 17:22 | |
*** rafaduran has left #openstack-dev | 17:24 | |
*** manas has quit IRC | 17:25 | |
*** DuncanT has joined #openstack-dev | 17:26 | |
*** DuncanT has quit IRC | 17:26 | |
*** DuncanT has joined #openstack-dev | 17:27 | |
*** donaldh has joined #openstack-dev | 17:27 | |
*** anniec has quit IRC | 17:27 | |
*** john5223 has quit IRC | 17:28 | |
*** ndipanov has quit IRC | 17:30 | |
*** ndipanov has joined #openstack-dev | 17:30 | |
*** zeriouz_ has joined #openstack-dev | 17:32 | |
*** devoid has joined #openstack-dev | 17:33 | |
*** zoresvit has quit IRC | 17:33 | |
*** zeriouz has quit IRC | 17:33 | |
bcwaldon | eglynn: let's get https://review.openstack.org/#/c/23008/ in today to fix stable/folsom testing | 17:34 |
eglynn | bcwaldon: looking ... | 17:35 |
*** Mandell has quit IRC | 17:35 | |
ayoung | dolphm, should I be storing datetime with offset or without? | 17:37 |
dolphm | ayoung: you mean either naive or +0? | 17:38 |
ayoung | yes | 17:38 |
dolphm | ayoung: what does the token driver do? | 17:38 |
ayoung | I'm kindof assuming naive since we have UTC now, but no corresponding non naive now | 17:38 |
*** boris-42 has joined #openstack-dev | 17:39 | |
ayoung | dolphm, I think naive. It does utcnow + delta | 17:39 |
*** cdub_ has joined #openstack-dev | 17:39 | |
ayoung | let me confirm | 17:39 |
ayoung | token.default_expire_time() | 17:39 |
ayoung | expire_delta = datetime.timedelta(seconds=CONF.token.expiration) | 17:39 |
ayoung | return timeutils.utcnow() + expire_delta | 17:39 |
*** YorikSar has quit IRC | 17:40 | |
*** PaulM has joined #openstack-dev | 17:40 | |
*** zing has quit IRC | 17:40 | |
*** john5223 has joined #openstack-dev | 17:41 | |
eglynn | bcwaldon: do you have a second stable-maint reviewer lined up for 23008? (I've +2'd, could +1 also at a stretch if v. urgent ...) | 17:45 |
*** yuanz has quit IRC | 17:45 | |
*** gyee has joined #openstack-dev | 17:45 | |
*** yuanz has joined #openstack-dev | 17:45 | |
*** mkollaro has quit IRC | 17:45 | |
*** yidclare has joined #openstack-dev | 17:47 | |
bcwaldon | eglynn: no idea who else is on the team | 17:47 |
bcwaldon | can you ping someone you know has these powers? | 17:47 |
eglynn | yep, I'll see I can scare another reviewer up ... | 17:47 |
bcwaldon | thank you, sir | 17:48 |
*** pabelanger is now known as nubbie | 17:49 | |
*** zoresvit has joined #openstack-dev | 17:50 | |
*** imsplitbit has quit IRC | 17:50 | |
*** darraghb has quit IRC | 17:50 | |
*** johnthetubaguy has quit IRC | 17:50 | |
*** _jmp_ has quit IRC | 17:51 | |
*** tomoe_ has quit IRC | 17:52 | |
*** olaph has quit IRC | 17:52 | |
sstent | hey guys- is there any way to determine the host a vm is on from inside the guest vm? I checked metadata but couldnt see anything | 17:52 |
eglynn | bcwaldon: done | 17:52 |
*** olaph has joined #openstack-dev | 17:53 | |
*** jcmartin has quit IRC | 17:55 | |
*** markwash has joined #openstack-dev | 17:56 | |
*** jcmartin has joined #openstack-dev | 17:56 | |
*** iartarisi has quit IRC | 17:57 | |
*** tomoe_ has joined #openstack-dev | 17:57 | |
*** Kharec has quit IRC | 17:58 | |
*** vkmc has quit IRC | 18:00 | |
*** mkollaro has joined #openstack-dev | 18:00 | |
*** flepied has quit IRC | 18:00 | |
*** dosaboy has quit IRC | 18:01 | |
*** martine has quit IRC | 18:01 | |
*** tomoe_ has quit IRC | 18:02 | |
*** vkmc has joined #openstack-dev | 18:02 | |
*** torandu has quit IRC | 18:03 | |
*** anniec has joined #openstack-dev | 18:04 | |
*** donaldh has quit IRC | 18:07 | |
*** fedgoat has quit IRC | 18:08 | |
openstackgerrit | A change was merged to openstack/python-openstackclient: Added compute flavor support. https://review.openstack.org/22226 | 18:08 |
*** markmc has quit IRC | 18:08 | |
*** zoresvit has quit IRC | 18:09 | |
zykes- | anyone here at raxx that work close to kurt griffiths ? | 18:09 |
zykes- | westmaas: maybe ? :O | 18:09 |
zykes- | or dolphm | 18:09 |
*** Ritz has quit IRC | 18:10 | |
*** ritzcarltn has joined #openstack-dev | 18:10 | |
westmaas | zykes-: I talk to them some | 18:10 |
westmaas | whats up | 18:10 |
*** alexpilotti_ has quit IRC | 18:11 | |
*** yidclare has quit IRC | 18:12 | |
*** xga has quit IRC | 18:13 | |
*** markmcclain has quit IRC | 18:14 | |
*** networkstatic has quit IRC | 18:14 | |
*** yidclare has joined #openstack-dev | 18:15 | |
*** romcheg has joined #openstack-dev | 18:15 | |
*** esp1 has joined #openstack-dev | 18:15 | |
*** esp1 has quit IRC | 18:18 | |
*** esp1 has joined #openstack-dev | 18:20 | |
*** lloydde has joined #openstack-dev | 18:21 | |
zykes- | westmaas: think you could get him on irc? | 18:22 |
*** romcheg has quit IRC | 18:23 | |
*** nunosantos has joined #openstack-dev | 18:23 | |
*** PaulM has quit IRC | 18:23 | |
westmaas | zykes-: just asked him, but he looks away | 18:23 |
westmaas | but I let him know you were looking for him | 18:24 |
*** tomoe_ has joined #openstack-dev | 18:24 | |
zykes- | :P | 18:24 |
zykes- | westmaas: what's the diff on the peeps working on the "rackspace" vs "racker" vs "rackspace-titan" repos ? | 18:24 |
westmaas | racker is the more control panel and monitoring groups, I think most of their repos are private - could be wrong though | 18:25 |
*** kagan has joined #openstack-dev | 18:25 | |
westmaas | rackspace are the official-ish rackspace projects | 18:25 |
zykes- | westmaas: then why are they "open" ? hah ;p | 18:26 |
vishy | dolphm, ayoung: see my email regarding caching in keystoneclient | 18:26 |
westmaas | rackspace-titan is just one that a sub team is doing that does some projects here so that it's done in the open, but we just haven't gotten a lot of feedback yet on whether its desired by the community | 18:26 |
vishy | markmc: ^^ | 18:26 |
zykes- | westmaas: you mean the Qonos stuff ? | 18:27 |
zykes- | it looks cool | 18:27 |
westmaas | zykes-: could be the opened it up | 18:27 |
ayoung | vishy, I'm for #3 | 18:27 |
*** torandu has joined #openstack-dev | 18:27 | |
westmaas | zykes-: yeah exactly | 18:27 |
zykes- | westmaas: yeah that seems cool | 18:27 |
zykes- | others ? ;) | 18:27 |
westmaas | iccha: nikhil: esheffield: ameade: ^^ | 18:27 |
westmaas | brianr-gone: ^^ | 18:28 |
*** dsanders has quit IRC | 18:28 | |
westmaas | not that team atm, most of their work is just done in openstack trunk | 18:28 |
ayoung | vishy, I think that is the right approach, at least for Keystone. We are trying to sync up a time issue with oslo right now as well. | 18:28 |
*** mmagr has quit IRC | 18:28 | |
zykes- | zykes-: you mean the titan guys ? | 18:29 |
*** dsanders has joined #openstack-dev | 18:30 | |
westmaas | zykes-: yeah those are the titan guys | 18:30 |
*** cdub_ has quit IRC | 18:30 | |
*** danpb has quit IRC | 18:30 | |
westmaas | (and girls) | 18:30 |
*** doude has left #openstack-dev | 18:30 | |
*** jpich has left #openstack-dev | 18:31 | |
*** zaitcev has joined #openstack-dev | 18:31 | |
tiamar | hi! I'm developing an extension for keystone. When I add it's filter into the pipeline in keystone.conf, the keystone service do not start. Is there a log I can look to see what is going on? | 18:32 |
vishy | ayoung: thanks, so it just means getting it approved by oslo core then :) | 18:33 |
ayoung | yep | 18:33 |
iccha | zykes-: yeah our repo on qonos is public https://github.com/rackspace-titan/qonos if you ever wanna check it out | 18:33 |
zykes- | westmaas: you do trunk work as well or ? | 18:33 |
*** arbrandes has joined #openstack-dev | 18:33 | |
*** jog0 has joined #openstack-dev | 18:34 | |
*** jog0 is now known as flashgordon | 18:34 | |
jk0 | zykes-: you writing a book? | 18:36 |
*** romcheg has joined #openstack-dev | 18:36 | |
*** andrewbogott_afk is now known as andrewbogott | 18:36 | |
*** danwent has joined #openstack-dev | 18:37 | |
zykes- | jk0: no ? | 18:37 |
*** PaulM has joined #openstack-dev | 18:38 | |
zykes- | jk0: just curious :) | 18:38 |
westmaas | zykes-: me personally? once a year to pretend I still write code :) | 18:39 |
westmaas | the teams definitely work on trunk though | 18:39 |
zykes- | westmaas: mostly internals stuff or ? | 18:39 |
westmaas | nah, I just manage teams | 18:39 |
zykes- | ah ok ;p | 18:40 |
zykes- | jk0: why do you ask ? | 18:41 |
*** tomoe_ has quit IRC | 18:41 | |
*** tomoe_ has joined #openstack-dev | 18:42 | |
zykes- | westmaas: the reason for me wanting to talk to kgriffs is Falcon | 18:43 |
westmaas | cool, yeah he'll be happy to chat I'm sure | 18:45 |
*** tomoe_ has quit IRC | 18:46 | |
*** romcheg has quit IRC | 18:47 | |
*** danwent has quit IRC | 18:50 | |
ayoung | dolphm, can you please fix the uuid in the trustee_404 test? | 18:50 |
*** Ryan_Lane has joined #openstack-dev | 18:50 | |
dolphm | ayoung: haha, will do -- sorry | 18:51 |
ayoung | NP...I'm pretty close to getting everything passing with Guang's change in place. | 18:52 |
ayoung | dolphm, couple other small changes...I'll send to you shortyl | 18:55 |
dolphm | ayoung: cool | 18:57 |
*** Kharec has joined #openstack-dev | 18:57 | |
dolphm | ayoung: updated that | 18:57 |
ayoung | dolphm, self.assertEqual(self.user['id'], token['user']['id']) | 18:57 |
ayoung | needsto be impoersonation aware | 18:57 |
ayoung | line 351 | 18:57 |
*** eglynn has quit IRC | 18:58 | |
*** terry7 has joined #openstack-dev | 19:00 | |
dolphm | ayoung: fixed | 19:02 |
*** olaph_ has joined #openstack-dev | 19:03 | |
*** nati_ueno has joined #openstack-dev | 19:03 | |
*** topol_ has joined #openstack-dev | 19:04 | |
*** topol has quit IRC | 19:05 | |
*** topol_ is now known as topol | 19:05 | |
*** olaph has quit IRC | 19:05 | |
*** imsplitbit has joined #openstack-dev | 19:06 | |
*** romcheg has joined #openstack-dev | 19:07 | |
*** zeriouz_ has quit IRC | 19:08 | |
*** aeperezt_ has joined #openstack-dev | 19:10 | |
*** aeperezt_ has quit IRC | 19:10 | |
*** bswartz has joined #openstack-dev | 19:14 | |
*** tmishler has joined #openstack-dev | 19:17 | |
*** cp16net|away is now known as cp16net | 19:17 | |
gyee | dolphm, adam, if we have micro second precision for expires_at, we won't need issued_at right? | 19:18 |
*** comstud is now known as bearhands | 19:19 | |
gyee | only reason for issued_at is to ensure uniqueness for the PKI tokens | 19:19 |
*** melwitt has joined #openstack-dev | 19:20 | |
*** nati_ueno has quit IRC | 19:21 | |
*** sandeepr has joined #openstack-dev | 19:22 | |
*** zodiak has quit IRC | 19:22 | |
sandeepr | on grizzly, keystone user-list resulted in Authorization Failed: Unable to communicate with identity service | 19:23 |
sandeepr | after adding service token and service endpoint, it works with a message WARNING: Bypassing authentication using a token & endpoint (authentication credentials are being ignored). | 19:23 |
sandeepr | i guess its ok? | 19:23 |
dolphm | gyee: we do, i guess -- token expiration is maintained on token-exchange so there'd be no way to tell the difference | 19:24 |
*** anniec has quit IRC | 19:25 | |
*** anniec_ has joined #openstack-dev | 19:25 | |
*** epim has quit IRC | 19:25 | |
gyee | dolphm, but the expires_at is the actual expiration right | 19:26 |
dolphm | gyee: yes | 19:27 |
*** PaulM has left #openstack-dev | 19:27 | |
dolphm | issued_at should be revised for every new token | 19:27 |
dolphm | gyee: expires_at should be maintained | 19:28 |
*** cloudchimp has quit IRC | 19:28 | |
*** koolhead17 has quit IRC | 19:29 | |
gyee | dolphm, correct, but I don't see any effectiveness of issued_at | 19:30 |
gyee | I mean we don't use it for token validation | 19:30 |
*** zbitter has joined #openstack-dev | 19:31 | |
*** zaneb has quit IRC | 19:34 | |
*** esp1 has quit IRC | 19:34 | |
*** psedlak has quit IRC | 19:35 | |
*** vishy is now known as vishious | 19:35 | |
*** spzala has quit IRC | 19:35 | |
*** esp1 has joined #openstack-dev | 19:36 | |
*** aeperezt_ has joined #openstack-dev | 19:38 | |
*** ritzcarltn has quit IRC | 19:38 | |
*** afazekas has quit IRC | 19:39 | |
*** cp16net is now known as cp16net|away | 19:39 | |
*** sandywalsh has quit IRC | 19:41 | |
*** kagan has quit IRC | 19:42 | |
openstackgerrit | A change was merged to openstack/tempest: skip ec2 test until it can be debugged https://review.openstack.org/23300 | 19:42 |
*** xxiao has quit IRC | 19:43 | |
imsplitbit | I'm doing some refactoring of a custom openvz driver I have for nova and it uses instance_metadata to store some items. That seems to be blocked off from access through the db and conductor. anyone know how to get and set stuff in there? | 19:44 |
*** morganfainberg has joined #openstack-dev | 19:44 | |
*** esp1 has quit IRC | 19:45 | |
dolphm | gyee: you should ask ayoung, but my understanding is that it might as well be a UUID to differentiate between two otherwise identical tokens such that their PKI values will be different | 19:45 |
*** xxiao has joined #openstack-dev | 19:46 | |
ayoung | dolphm, your last one is not quite right: need to check for self.trustee, not self.user http://fpaste.org/LgKh/ | 19:46 |
ayoung | dolphm, that is correct | 19:46 |
ayoung | gyee, if you request tokens in a tight loop, as some of the tests do, you get into a situation where you've just generated two identical tokens, which causes the DB to barf. | 19:47 |
*** crandquist has joined #openstack-dev | 19:49 | |
gyee | ayoung, but if we change the precision to micro seconds for expires_at, in theory, there's not a chance for collision right? | 19:49 |
*** jcmartin has quit IRC | 19:50 | |
dolphm | ayoung: more importantly, two simultaneous requests issued to two different keystone servers will result in a race condition for which tries to persist first | 19:50 |
ayoung | gyee, in theory | 19:50 |
dolphm | gyee: ^ there will still be collisions | 19:50 |
*** dev_sa has quit IRC | 19:51 | |
gyee | on multi instance situation, we would have the same problem even with issued_at | 19:51 |
*** novas0x2a|laptop has joined #openstack-dev | 19:52 | |
ayoung | dolphm, the chance of that happening at exactly the same time at the sub second level is so small that I am willing to ignore it. If we rate limit token requests , the problem goes away, to. | 19:52 |
ayoung | gyee, easy to test out your theory. Do the micro precision on expires, drop the issued_at field (set to blank if that is easier) and then request tokens in a tight loop using devstack | 19:53 |
dolphm | ayoung: rate limiting doesn't fix the issue either | 19:53 |
gyee | ayoung, I did | 19:54 |
ayoung | dolphm, it should | 19:54 |
*** danwent has joined #openstack-dev | 19:54 | |
ayoung | gyee, you rock | 19:54 |
gyee | that's why I was questioning whether issued_at is still needed | 19:54 |
ayoung | dolphm, it should. THe only case where we should be issuing out tokens that fast is load testing. Any script that requests multiple identical tokens that close together has a problem. | 19:55 |
ayoung | THis was really just an artifact of how fast the tests run | 19:55 |
*** aeperezt_ has quit IRC | 19:55 | |
ayoung | Someone asking for identical tokens on multiple machines at the same time is up to no good, | 19:56 |
ayoung | and should be denied a token. | 19:56 |
*** vkmc has quit IRC | 19:56 | |
gyee | only way to ensuring uniqueness is like issuing an x.509 cert, just have a serial number | 19:56 |
*** sandywalsh has joined #openstack-dev | 19:56 | |
*** ndipanov has quit IRC | 19:57 | |
ayoung | gyee, I think we can drop "issued_at" | 19:57 |
dolphm | gyee: + | 19:57 |
dolphm | + | 19:57 |
gyee | w00t! | 19:57 |
ayoung | dolphm, I typoed that last diff. There is no trustor_user. | 20:00 |
ayoung | http://fpaste.org/dexA/ | 20:00 |
ayoung | But I think I can get it a little cleaner | 20:00 |
*** aeperezt_ has joined #openstack-dev | 20:01 | |
*** aeperezt_ has quit IRC | 20:02 | |
*** Ryan_Lane has quit IRC | 20:02 | |
dolphm | ayoung: why did you remove " or not token['trust']['impersonation']" ? | 20:04 |
ayoung | dolphm, I'll show you how it looks now.... | 20:04 |
ayoung | dolphm, I had moved that to a trust specific function, but it is back there now....1 sec | 20:05 |
*** woodspa has quit IRC | 20:05 | |
ayoung | ugh, browserlock | 20:06 |
*** donaldh has joined #openstack-dev | 20:06 | |
*** jbr_ has quit IRC | 20:06 | |
*** topol has quit IRC | 20:07 | |
*** topol has joined #openstack-dev | 20:07 | |
*** anteaya-yo is now known as anteaya | 20:07 | |
*** martine has joined #openstack-dev | 20:08 | |
*** vkmc has joined #openstack-dev | 20:08 | |
*** devoid has quit IRC | 20:09 | |
*** gyee has quit IRC | 20:10 | |
*** gyee has joined #openstack-dev | 20:11 | |
*** cp16net|away is now known as cp16net | 20:12 | |
*** boris-42 has quit IRC | 20:14 | |
*** jcmartin has joined #openstack-dev | 20:14 | |
*** jcmartin has quit IRC | 20:15 | |
*** gyee has quit IRC | 20:16 | |
*** yolanda has quit IRC | 20:20 | |
*** kaushikc has joined #openstack-dev | 20:21 | |
ayoung | dolphm, sorry lost the diff, as I squashed the commit, but It looks like this in my tree now http://fpaste.org/YPUA/ | 20:22 |
*** kaushikc has left #openstack-dev | 20:22 | |
ayoung | dolphm, is it OK if I post both a new version of the trusts patch and a version of the tests with the above change? They are both rebased on top of gyee's time patch | 20:23 |
*** eglynn has joined #openstack-dev | 20:23 | |
sstent | ummm wierd --- do we need to create aggregates for each avail zone now? and add hosts to them manaully? | 20:26 |
sstent | changing a node_availability_zone doesn't seem to change it anymore | 20:27 |
*** john5223 has quit IRC | 20:28 | |
dolphm | ayoung: is it based on patchset 24? | 20:30 |
ayoung | dolphm, I think so..it might be 23 | 20:30 |
ayoung | looking now | 20:30 |
dolphm | ayoung: go ahead -- but i'd like to know what patchset you're on before you overwrite me | 20:30 |
ayoung | dolphm, I'll sync up | 20:30 |
dolphm | ayoung: don't bother -- i have more changes not in review | 20:31 |
*** networkstatic has joined #openstack-dev | 20:31 | |
*** fire has joined #openstack-dev | 20:34 | |
ayoung | dolphm, OK, I've rebased on top of 24 | 20:35 |
ayoung | letting the tests run, and then I will repost. | 20:35 |
openstackgerrit | A change was merged to openstack/python-quantumclient: Add pagination support for client https://review.openstack.org/19926 | 20:38 |
*** dolphm has quit IRC | 20:39 | |
*** dolphm has joined #openstack-dev | 20:39 | |
ayoung | dolphm, OK, I posted...lets see if it makes it through the gerrit gauntlet. Mine is based on gyee's patch, but I think we can move ahead assuming that we'll keep that review in sync with the decision from Oslo | 20:39 |
*** edmund has quit IRC | 20:40 | |
*** edmund has joined #openstack-dev | 20:40 | |
*** john5223 has joined #openstack-dev | 20:40 | |
*** cdub_ has joined #openstack-dev | 20:40 | |
dolphm | ayoung: looking | 20:44 |
*** devoid has joined #openstack-dev | 20:46 | |
*** soody has joined #openstack-dev | 20:48 | |
ayoung | dolphm, so aside from the rebase, the only difference between yours and mine should be the changes in test_v3.py. The rest come from Guang's patch | 20:50 |
ayoung | or they come from the update to the trusts patch itself. Much cleanup of datatime issues there | 20:51 |
*** alunduil has quit IRC | 20:51 | |
dolphm | ayoung: that explains why there's an entire class of unused assertions... | 20:51 |
*** markmcclain has joined #openstack-dev | 20:53 | |
*** jbresnah_ has quit IRC | 21:00 | |
*** jbresnah_ has joined #openstack-dev | 21:00 | |
*** devoid has quit IRC | 21:01 | |
*** enikanorov has quit IRC | 21:02 | |
*** soody has quit IRC | 21:02 | |
*** rnirmal has quit IRC | 21:03 | |
*** fire has quit IRC | 21:04 | |
*** Ryan_Lane has joined #openstack-dev | 21:05 | |
*** enikanorov has joined #openstack-dev | 21:06 | |
*** romcheg has left #openstack-dev | 21:06 | |
*** soody has joined #openstack-dev | 21:07 | |
*** soody has quit IRC | 21:09 | |
*** alunduil has joined #openstack-dev | 21:10 | |
*** esp1 has joined #openstack-dev | 21:12 | |
*** epim has joined #openstack-dev | 21:12 | |
*** soody has joined #openstack-dev | 21:13 | |
dolphm | ayoung: patchset 26 is just a refactor -- all test_v3_* stuff works for me | 21:15 |
*** jimfehlig has quit IRC | 21:15 | |
anteaya | sandywalsh, I just created a channel for the Canadian OpenStack User Group -> #canstack, all welcome | 21:15 |
*** jimfehlig has joined #openstack-dev | 21:15 | |
ayoung | dolphm, sounds good. I'll take a look | 21:16 |
dolphm | ayoung: i just made it so that you could pass in a user from the test to compare the contents of the token against, rather than the assertion making any assumptions or having to understand trusts | 21:16 |
ayoung | dolphm, what happend to all of the AuthTest stuff? | 21:17 |
ayoung | https://review.openstack.org/#/c/23057/25..26/tests/test_v3_auth.py | 21:17 |
dolphm | ayoung: i haven't used that class in like 20 patches | 21:17 |
dolphm | ayoung: it's all in test_v3 | 21:18 |
dolphm | ayoung: and has been | 21:18 |
ayoung | Cool | 21:18 |
ayoung | I take it merging with GUang's picked it up by mistake? | 21:18 |
dolphm | ayoung: i was doing something really similar to gyee's test, so i merged our approaches | 21:18 |
dolphm | ayoung: no worries | 21:18 |
ayoung | OK...test look good. | 21:19 |
ayoung | dolphm, So, where are we at? If Guang's change goes in, the other two patches should be ok to merge as well. I can understand if you want to give the trusts patch another look. | 21:22 |
openstackgerrit | A change was merged to openstack/oslo-incubator: Redis-based matchmaker https://review.openstack.org/20434 | 21:22 |
*** esp1 has left #openstack-dev | 21:22 | |
ayoung | Do we owe the Oslo guys anything in order to move the time thing along? Is that underway? | 21:22 |
openstackgerrit | A change was merged to openstack/swift: Fixed formpost QUERY_STRING bugs. https://review.openstack.org/22340 | 21:27 |
*** dprince has quit IRC | 21:28 | |
*** soody has quit IRC | 21:34 | |
*** radez is now known as radez_g0n3 | 21:34 | |
*** nati_ueno has joined #openstack-dev | 21:35 | |
*** esp1 has joined #openstack-dev | 21:36 | |
*** Ryan_Lane has quit IRC | 21:38 | |
*** arbrandes has quit IRC | 21:41 | |
*** eglynn has quit IRC | 21:42 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Add simple in-memory cache from nova. https://review.openstack.org/23306 | 21:43 |
*** Ryan_Lane has joined #openstack-dev | 21:43 | |
*** soody has joined #openstack-dev | 21:47 | |
*** pcm_ has quit IRC | 21:52 | |
*** cp16net is now known as cp16net|away | 21:55 | |
*** sacharya has quit IRC | 21:56 | |
*** dolphm has quit IRC | 22:00 | |
*** bryansd has left #openstack-dev | 22:01 | |
*** eharney has quit IRC | 22:01 | |
*** john5223 has quit IRC | 22:01 | |
*** jsindy has joined #openstack-dev | 22:03 | |
*** eglynn has joined #openstack-dev | 22:04 | |
*** jsindy has quit IRC | 22:10 | |
*** rnirmal has joined #openstack-dev | 22:10 | |
*** terryh has quit IRC | 22:12 | |
*** martine has quit IRC | 22:13 | |
*** mkollaro has quit IRC | 22:13 | |
*** danwent has quit IRC | 22:14 | |
openstackgerrit | A change was merged to openstack/nova: Add os-volumes extension to api samples https://review.openstack.org/22222 | 22:14 |
openstackgerrit | A change was merged to openstack/nova: don't stack trace if long ints are passed to db https://review.openstack.org/23199 | 22:14 |
*** john5223 has joined #openstack-dev | 22:14 | |
*** topol has quit IRC | 22:15 | |
*** soody has quit IRC | 22:19 | |
*** zing has joined #openstack-dev | 22:20 | |
*** mtreinish has quit IRC | 22:23 | |
*** aurous has joined #openstack-dev | 22:26 | |
*** tomoe_ has joined #openstack-dev | 22:30 | |
*** danwent has joined #openstack-dev | 22:31 | |
*** aurous has quit IRC | 22:31 | |
*** Gordonz has quit IRC | 22:33 | |
*** epim has quit IRC | 22:35 | |
*** danwent has quit IRC | 22:37 | |
*** jsindy has joined #openstack-dev | 22:40 | |
*** stevemar has quit IRC | 22:40 | |
*** tomoe_ has quit IRC | 22:42 | |
*** tomoe_ has joined #openstack-dev | 22:43 | |
*** Brad_K has joined #openstack-dev | 22:43 | |
*** jsindy has quit IRC | 22:44 | |
*** jsindy has joined #openstack-dev | 22:45 | |
*** Ritz-Mobile has quit IRC | 22:45 | |
*** rnirmal has quit IRC | 22:47 | |
*** metral has quit IRC | 22:47 | |
*** tomoe_ has quit IRC | 22:47 | |
*** digitalsanctum has quit IRC | 22:49 | |
*** ryant_ has quit IRC | 22:49 | |
*** zing has quit IRC | 22:54 | |
*** imsplitbit has quit IRC | 22:54 | |
*** edmund1 has joined #openstack-dev | 22:55 | |
*** edmund has quit IRC | 22:58 | |
*** gasbakid has joined #openstack-dev | 23:00 | |
openstackgerrit | A change was merged to openstack/python-novaclient: Added limit to image-list in a preparatory step toward addressing bug 1001345. https://review.openstack.org/22129 | 23:01 |
uvirtbot | Launchpad bug 1001345 in python-novaclient "novaclient support for offset" [Low,In progress] https://launchpad.net/bugs/1001345 | 23:01 |
*** terryh has joined #openstack-dev | 23:02 | |
openstackgerrit | A change was merged to openstack-dev/devstack: add quantum_available flag to tempest https://review.openstack.org/23267 | 23:02 |
openstackgerrit | A change was merged to openstack/quantum: mock quantum.agent.common.config.setup_logging https://review.openstack.org/23250 | 23:02 |
*** terryh has quit IRC | 23:02 | |
zykes- | 7win 39 | 23:02 |
*** terryh has joined #openstack-dev | 23:02 | |
arosen | I got a random question. When I do glance --debug image-list it does a gurl to localhost:9292 and passes an X-auth-Token though I never see it make a request to keystone to get the token first. | 23:02 |
arosen | Where is it saving this token it's passing, when i do quantum --debug net-list it will get a new token from keystone each time. | 23:03 |
zykes- | Daviey: or zul around ? | 23:03 |
*** metral has joined #openstack-dev | 23:03 | |
*** nunosantos has quit IRC | 23:04 | |
*** alunduil has quit IRC | 23:06 | |
*** johnthetubaguy has joined #openstack-dev | 23:08 | |
*** sacharya has joined #openstack-dev | 23:08 | |
*** ilblackdragon has quit IRC | 23:08 | |
*** john5223 has quit IRC | 23:08 | |
*** johnthetubaguy has quit IRC | 23:08 | |
*** edmund1 has quit IRC | 23:09 | |
*** yamahata has joined #openstack-dev | 23:10 | |
*** nubbie has quit IRC | 23:10 | |
*** eglynn has quit IRC | 23:12 | |
*** metral has quit IRC | 23:13 | |
vishious | ayoung: this should be good to go now | 23:14 |
*** davidha has quit IRC | 23:15 | |
*** gyee has joined #openstack-dev | 23:19 | |
*** Ryan_Lane has quit IRC | 23:19 | |
*** yuanz has quit IRC | 23:20 | |
*** metral has joined #openstack-dev | 23:20 | |
*** hemna is now known as hemnafk | 23:20 | |
*** vipul is now known as vipul|away | 23:21 | |
*** vipul|away is now known as vipul | 23:23 | |
*** maoy has quit IRC | 23:24 | |
*** jimfehlig has quit IRC | 23:25 | |
*** garyTh has quit IRC | 23:30 | |
*** markmcclain has quit IRC | 23:34 | |
*** Ryan_Lane has joined #openstack-dev | 23:35 | |
*** vkmc has quit IRC | 23:35 | |
*** vkmc has joined #openstack-dev | 23:38 | |
*** markmcclain has joined #openstack-dev | 23:38 | |
*** Ryan_Lane has quit IRC | 23:40 | |
*** networkstatic has quit IRC | 23:43 | |
*** danwent has joined #openstack-dev | 23:43 | |
*** Ryan_Lane has joined #openstack-dev | 23:43 | |
*** yamahata has quit IRC | 23:45 | |
*** kagan has joined #openstack-dev | 23:47 | |
*** danwent has quit IRC | 23:47 | |
openstackgerrit | A change was merged to openstack/python-novaclient: Allows admins to reset-network of an instance https://review.openstack.org/22440 | 23:48 |
*** rods` has quit IRC | 23:50 | |
openstackgerrit | A change was merged to openstack/python-novaclient: A minimum of Python3 fixes so that installation works without errors/warnings. https://review.openstack.org/22407 | 23:50 |
openstackgerrit | A change was merged to openstack/python-novaclient: Fix how tests were failing due to missing attributes. https://review.openstack.org/22721 | 23:50 |
openstackgerrit | A change was merged to openstack/nova: Use min_ram of original image for snapshot, even with VHD https://review.openstack.org/23013 | 23:50 |
openstackgerrit | A change was merged to openstack/python-novaclient: Accept 201 status code on POST https://review.openstack.org/22725 | 23:51 |
*** READ10 has quit IRC | 23:51 | |
*** pabelanger has joined #openstack-dev | 23:51 | |
openstackgerrit | A change was merged to openstack/python-novaclient: Fixes the output of 'os-evacuate' command. https://review.openstack.org/22848 | 23:51 |
*** koolhead17 has joined #openstack-dev | 23:51 | |
*** jsindy has quit IRC | 23:52 | |
*** sandeepr has quit IRC | 23:53 | |
*** sacharya has quit IRC | 23:58 | |
*** markmcclain has quit IRC | 23:58 | |
*** kagan has quit IRC | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!