Monday, 2013-09-23

jamielennoxbknudson: seeing as you're here, a while ago we were talking about using admin_auth_uri instead of auth_host, auth_port etc00:02
bknudsonjamielennox: right, to avoid having to build a uri and having to guess about ipv600:03
jamielennoxadmin_auth_uri was to override auth_uri, in the event that an admin_auth_uri is present and a auth_uri is not i was thinking it was best to have the WWW-Authenticate header return an empty string00:03
jamielennoxor at least Keystone uri=''00:04
bknudsonyou can have an empty string in a header?00:04
jamielennoxdoes that make sense to you or do you think it should default to the admin_auth_url?00:04
bknudsonI prefer that it has a default00:04
bknudsonunless there's a security reason to not use that info?00:05
jamielennoxright, so currently if you don't specify anything for auth_host etc you get the url https://127.0.0.1:3535700:05
jamielennoxand if you don't specify an auth_uri then that value gets used for the Keystone uri header as well00:05
jamielennoxbknudson: so my thought was though that if you specify auth_uri only then you get that behaviour - you use it for authenticating AND it goes into the header00:06
jamielennoxif you are specifying admin_auth_uri ONLY then you must be doing it because there is not a public url people can use00:06
bknudsonhow can the cloud be used if there's no public url?00:07
bknudsonI thought we wanted a public url in www-authenticate header00:07
jamielennoxright, this will always be an edge case00:07
bknudsonbut now it's defaulting to an internal url00:07
jamielennoxright, and i'm not sure why because all the guides i've ever read point you to a public URL and it works just fine00:08
bknudsonso they should set auth_uri to https://myhostname:5000 typically00:09
jamielennoxyes00:09
bknudsonoops, should have v2.0 at the end, I guess.00:09
*** ianw has joined #openstack-dev00:09
*** ericw has joined #openstack-dev00:10
*** annegentle has quit IRC00:10
bknudsonare you wondering, if we have an admin_auth_uri, that auth_uri should default to it?00:10
jamielennoxand then use admin_auth_uri if they want to use eg https://192.168.1.66 or some internally routable address OR if they want to use :3535700:10
jamielennoxyes00:10
bknudsonthat makes sense to me. they can override it with auth_uri00:11
jamielennoxessentially it would be misconfigured - but what should we default auth_uri to IF only admin_auth_uri is present00:11
jamielennoxthat's why i was thinking: Keystone uri='00:12
jamielennox'00:12
bknudsonthat's kind of what we do today, except using auth_host, etc.00:12
*** annegentle has joined #openstack-dev00:12
bknudsonso we'd use auth_uri if present, else admin_auth_uri, else auth_host, port, protocol.00:13
*** ericw has quit IRC00:13
jamielennoxyea00:13
bknudsonand admin_auth_uri would override auth_host/port/protocol00:13
bknudsonand auth_admin_prefix.00:14
jamielennoxyes00:14
jamielennoxbut for simplicity sake if auth_uri ONLY is provided then admin_auth_uri = auth_uri00:14
bknudsonthat would require more changes because auth_host and auth_port have defaults00:15
jamielennoxthat's what i'm finding00:15
*** gongysh has joined #openstack-dev00:15
*** dkehn has quit IRC00:16
*** jecarey has quit IRC00:16
bknudsonwe should be able to deprecate auth_admin_prefix, auth_host, auth_port, auth_protocol (and auth_version?)00:16
jamielennoxauth version is slightly different00:17
*** ctlaugh has joined #openstack-dev00:17
bknudsonjamielennox: what's this? http_handler  https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L23500:17
*** bdpayne has joined #openstack-dev00:18
jamielennoxhmm, that should be dead now that we use httpretty00:18
jamielennoxit was a way of passing in a fake http object so you could stub tests00:18
jamielennoxi'll get that00:18
bknudsonhopefully nobody was using it00:18
*** egallen has quit IRC00:18
jamielennoxit was fairly well marked as a testing only interface00:19
*** ericw has joined #openstack-dev00:19
bknudsonit does say "userful for unit testing", so I assume nobody would have some odd reason to think it was useful for them.00:19
*** notmyname_ has joined #openstack-dev00:19
jamielennoxalso you need to pass it a callback function so it's not something that could have ever been passed in via config file00:19
bknudsonsounds like it's good to get rid of it then00:21
*** jhesketh has quit IRC00:23
*** andymccr has quit IRC00:23
*** Mandell has quit IRC00:23
*** kpepple has quit IRC00:23
*** fbo_away has quit IRC00:23
*** jab416171 has quit IRC00:23
*** enikanorov-w has quit IRC00:23
*** ekarlso has quit IRC00:23
*** bearhands has quit IRC00:23
*** NobodyCam has quit IRC00:23
*** jcannava has quit IRC00:23
*** xarg__ has quit IRC00:23
*** ctlaugh_ has quit IRC00:23
*** jf-jenni has quit IRC00:23
*** vishy has quit IRC00:23
*** invsblduck has quit IRC00:23
*** Hien has quit IRC00:23
*** edleafe has quit IRC00:23
*** notmyname has quit IRC00:23
*** swann has quit IRC00:23
*** jmeridth has quit IRC00:23
*** t-8ch has quit IRC00:23
*** jhesketh has joined #openstack-dev00:24
*** notmyname_ is now known as notmyname00:24
*** swann has joined #openstack-dev00:24
*** Mandell has joined #openstack-dev00:24
jamielennoxyea, but so regarding the admin_auth_url only case - does it makes sense to use uri='' ? i would say yes as otherwise the behaviour is exactly the same as only specifying auth_url00:24
bknudsonnot sure what you mean by admin_auth_url only?00:25
jamielennoxok, so typically you use auth_url and then you override that with admin_auth_url if required00:26
jamielennoxwhat if you specify admin_auth_url without auth_url?00:26
bknudsonthere's no admin_auth_url00:26
jamielennoxwe don't need to provide any backwards behaviour there because the user is explicitly using the new config options00:26
*** kpepple has joined #openstack-dev00:27
jamielennoxadmin_auth_uri00:27
bknudsonthat doesn't exist now either... is this a new option being proposed?00:27
*** bearhands has joined #openstack-dev00:27
*** xarg_ has joined #openstack-dev00:28
*** NobodyCam has joined #openstack-dev00:28
jamielennoxthis is the new option we were talking about the one that would override auth_host/port/protocol for the admin or internal interface00:28
bknudsonok, just making sure I wasn't missing something.00:28
*** stevemar has quit IRC00:28
bknudsonwhy would it be better to set auth_uri to an empty string?00:29
*** ekarlso has joined #openstack-dev00:29
bknudsonthen clients wouldn't know where to go to authenticate... or they'd try to go to '' and fail.00:29
jamielennoxif we default it to admin_auth_uri then the behaviour would be exactly the same as if you had only specified auth_uri00:30
jamielennoxi can't imagine why you wouldn't want to provide an auth_uri - maybe someone else is generating tokens for you? I'm just not sure it's behaviour we would need to support00:31
bknudsonI think we don't provide a default for auth_uri only because we can't guess what the hostname should be?00:32
bknudson127.0.0.1 is generally not going to work00:32
*** akuan has quit IRC00:32
jamielennoxright the current default is https with 127.0.0.1 - that's unlikely to ever work00:33
*** jay-lau-513 has quit IRC00:34
*** adjohn has joined #openstack-dev00:34
*** Apsu has quit IRC00:34
bknudsonSo now if admin does set auth_host to a real hostname then their auth_uri would maybe be usable.00:34
bknudsonassuming keystone is listening on internal and external00:35
bknudsonmaybe we can assume that admins know what they're doing and actually set this up in a sane manner.00:35
*** kuuudos has quit IRC00:35
*** Apsu has joined #openstack-dev00:35
bknudsonso they do set auth_uri00:35
bknudsonor, maybe it doesn't matter what they set auth_uri to since nothing actually looks at WWW-Authenticate.00:35
jamielennoxyea, i would really like if you don't specify an auth_uri then you raise a ConfigException or something right of the bat to let people know they did it wrong00:36
jamielennoxbut there's backwards compat00:36
bknudsonif changes are backwards compatible then we don't have to worry about breaking anybody.00:37
jamielennoxbknudson: that's ok, i think i'll do it with an empty default and when i post the review later today i'll make sure to add you to it00:37
jamielennoxi think it might be easier to see with a real example00:37
bknudsonjamielennox: so does the admin_auth_uri include the auth_version?00:38
jamielennoxauth_version is used for a kind of bad discovery00:38
jamielennoxit doesn't get added to the URI, it get's used to say whether the URI you give is v2 or v300:39
*** thomasm has joined #openstack-dev00:40
bknudsonok, we do support v300:40
bknudsonit's just using v3 with X-Subject-Token rather than v2 with the token in the header.00:41
jamielennoxwe support v3 for validating tokens - we don't support having the middleware's token be a v3 token00:41
bknudsondoesn't do v3 auth.00:41
bknudsonto get the initial token00:41
jamielennoxright, you need a token to validate other tokens - that has to be done on v200:42
bknudsonnot sure about the safe_quote here... it's a header not a url: https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L107300:42
jamielennoxactually - this might not work at all00:42
*** mfer has joined #openstack-dev00:42
*** annegentle has quit IRC00:43
jamielennox00:43
bknudsonyou can't use a v3 token to validate other tokens?00:43
jamielennoxhttps://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L108200:43
*** ericw has quit IRC00:43
jamielennoxand the same with 107600:43
*** dprince has joined #openstack-dev00:43
*** thomasm has quit IRC00:43
bknudsonwhat doesn't work?00:43
jamielennoxit force appends /v2.0 to the auth_uri, so if people are in the habit of specifying auth_uri as http://host:5000/v2.0 then they will repeat the v2.000:44
*** annegentle has joined #openstack-dev00:44
bknudsonadmin_auth_uri, you mean... does it have /v2.0 on it or not?00:45
*** stevemar has joined #openstack-dev00:45
bknudsonauth_uri is only used for WWW-Authenticate00:45
jamielennoxbknudson: right, auth_token always fetches a v2.0 token to validate other tokens00:45
bknudsonjamielennox: it doesn't have to use a v2 token, though? it could get a v3 token?00:46
jamielennoxbknudson: if we changed it over to fetching a v3 token there is nothing that would prevent it from using a v3 token00:46
jamielennoxi had got most of the way to doing that with the discovery stuff i had done00:46
bknudsonwe need discovery before we can do v3 auth?00:47
jamielennoxbut i was hoping to get the APIClient stuff done before i pushed client discovery again00:47
jamielennoxbknudson: in reality you can probably assume that every keystone server has v3 by now - but you should check00:47
jamielennoxwe could add it's own discovery method to auth_token but i was hoping to have it happen with a standardized discovery that everyone could use00:48
bknudsonauth_token looks like it doesn't use the keystoneclient at all00:48
bknudsonhow ironic.00:48
jamielennoxit doesn't00:48
jamielennoxit's dumb00:48
*** sarob has joined #openstack-dev00:49
jamielennoxas i said i had patches for that but i was hoping this APIclient stuff would happen first as i didn't want to create more weird support cases00:49
jamielennoxi should probably just resurrect them as the other is not moving very quickly00:49
bknudsonwe've had enough problems with keystone server before rc.00:50
bknudsonbugs00:50
jamielennoxbknudson: oh yea, i know - i've been a little out of touch with some of it but i'm still following what's happening server side00:51
bknudsonbut once we hit rc, we should focus on the client, since this is something that I think a lot of people want to get. (I know there's people here wanting this)00:51
jamielennoxpushing client stuff this close to release wasn't the highest priority00:51
*** adjohn has quit IRC00:52
bknudsonseems like pushing client stuff has been a low priority just in general00:52
bknudsonalso documentation.00:52
jamielennoxthe server side is generally where you can do more experimenting with stuff, libraries in python with all this public vs private etc is just a PITA00:53
*** bdpayne has quit IRC00:53
*** alexrudenko has quit IRC00:53
*** sarob has quit IRC00:53
bknudsonkind of useless doing all the server stuff and then clients don't use it (e.g., auth_token, keystone CLI, doesn't use v3 auth)00:56
*** yaguang has joined #openstack-dev00:56
bknudsonand then it's not documented either so nobody knows it's available00:57
*** blamar has joined #openstack-dev00:59
jamielennoxright, and we whinge about nova for example not using keystoneclient - well that makes sense because it doesn't do the things they need00:59
*** mfer has quit IRC00:59
jamielennoxas you say, even auth_token doesn't use it01:00
bknudsonjamielennox: could auth_token use keystoneclient or is it missing something?01:01
jamielennoxso it's missing discovery - what protocol versions are available on this server01:01
jamielennoxand it's missing the ability to actually validate the tokens01:02
jamielennoxso it can make use of the tokens currently - but there is no method on client to check another token01:02
*** jhesketh__ has quit IRC01:02
*** pmathews has quit IRC01:02
*** akuan has joined #openstack-dev01:03
bknudsonjamielennox: could use it here https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L744 ? _request_admin_token01:03
jamielennoxalso, fair warning that this is the exact path i followed into doing client work and have ended up pushing for stuctural changes01:03
*** stevemar has quit IRC01:04
*** freedomhui has joined #openstack-dev01:04
bknudsonhopefully there will be a discussion at the design summit about structural changes01:04
*** michchap_ has quit IRC01:05
jamielennoxcould use it there, but i'd like to have a client that does discoverability first so that it could fetch a v3 admin token if available01:05
jamielennoxalso i'd like a way of sharing the client across object01:06
bknudsonjamielennox: could use it to fetch revocation list and certs? https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/middleware/auth_token.py#L121301:06
bknudsonI don't see those functions in the client, so probably not01:07
jamielennoxwhich was how i discovered that the v3 API doesn't expose revocation list and certs - also the client doesn't have a method for those things explicity01:07
*** michchap has joined #openstack-dev01:07
jamielennoxso you could use client.request to fetch it and use the client tokens but as i mentioned before there is no validate() command on client01:08
bknudsonmaybe we need to enforce these things in the blueprints, that has to include client support01:08
jamielennoxmost work that has happened recently that is client relevant has been coming to the client01:09
jamielennoxlike oauth, the trusts changes (though that was an outsider frustrated by them not being there)01:09
jamielennoxmost of keystone's big changes this time around haven't been client related01:09
jamielennoxthe exception i can think of is my binding stuff01:10
jamielennoxthat needs to go into client - but that's transport related which is exactly the area i'm trying to pull things out of01:10
*** freedomhui has quit IRC01:13
*** Tross has quit IRC01:15
*** freedomhui has joined #openstack-dev01:15
*** shang has joined #openstack-dev01:18
*** bknudson has left #openstack-dev01:18
*** freedomhui has quit IRC01:22
*** akuan has quit IRC01:23
*** akuan has joined #openstack-dev01:23
*** dprince has quit IRC01:24
*** ArcTanSusan has joined #openstack-dev01:26
*** Ryan_Lane has joined #openstack-dev01:26
*** freedomhui has joined #openstack-dev01:31
*** Ryan_Lane has quit IRC01:32
*** CaptTofu has joined #openstack-dev01:37
*** erkules_ has joined #openstack-dev01:39
*** erkules has quit IRC01:41
*** alexxu has joined #openstack-dev01:42
*** ArcTanSusan has quit IRC01:43
*** herndon has joined #openstack-dev01:43
*** neelashah has joined #openstack-dev01:46
*** sarob has joined #openstack-dev01:49
*** adjohn has joined #openstack-dev01:52
*** sarob has quit IRC01:54
*** rcrit has quit IRC01:54
*** zhikunliu has joined #openstack-dev01:56
*** rcrit has joined #openstack-dev01:58
*** ericw has joined #openstack-dev02:00
*** freedomhui has quit IRC02:02
*** Tross has joined #openstack-dev02:05
*** Tross has quit IRC02:06
*** gongysh has quit IRC02:06
*** Ryan_Lane has joined #openstack-dev02:13
*** Tross has joined #openstack-dev02:13
*** erkules_ is now known as erkules02:15
*** andymccr has joined #openstack-dev02:17
*** fbo_away has joined #openstack-dev02:17
*** jab416171 has joined #openstack-dev02:17
*** enikanorov-w has joined #openstack-dev02:17
*** jcannava has joined #openstack-dev02:17
*** jf-jenni has joined #openstack-dev02:17
*** vishy has joined #openstack-dev02:17
*** invsblduck has joined #openstack-dev02:17
*** Hien has joined #openstack-dev02:17
*** edleafe has joined #openstack-dev02:17
*** jmeridth has joined #openstack-dev02:17
*** t-8ch has joined #openstack-dev02:17
*** antigluk has quit IRC02:17
*** sungju has joined #openstack-dev02:18
*** sungju has quit IRC02:18
*** sarob has joined #openstack-dev02:19
*** neelashah has quit IRC02:23
*** sarob has quit IRC02:24
*** jecarey has joined #openstack-dev02:31
*** gongysh has joined #openstack-dev02:32
*** freedomhui has joined #openstack-dev02:34
*** Tross has quit IRC02:36
*** Tross has joined #openstack-dev02:45
*** pmathews has joined #openstack-dev02:48
*** fandikurnia01 has joined #openstack-dev02:49
fandikurnia01hello02:49
fandikurnia01how to get os-user-quota02:49
fandikurnia01stdClass Object02:50
fandikurnia01(02:50
fandikurnia01    [itemNotFound] => stdClass Object02:50
fandikurnia01        (02:50
fandikurnia01            [message] => The resource could not be found.02:50
fandikurnia01            [code] => 40402:50
fandikurnia01        )02:50
fandikurnia01)02:50
fandikurnia01how to get02:50
fandikurnia01how to solve this ?02:50
*** sarob has joined #openstack-dev02:50
*** sarob has quit IRC02:55
*** amotoki has quit IRC02:56
*** blamar has quit IRC02:57
*** ericw has quit IRC02:58
*** paragan has joined #openstack-dev02:58
*** ericw has joined #openstack-dev02:59
*** mrda has joined #openstack-dev03:02
*** ericw has quit IRC03:03
*** annegentle has quit IRC03:05
*** dims has quit IRC03:06
*** SergeyLukjanov has joined #openstack-dev03:06
*** annegentle has joined #openstack-dev03:08
*** CaptTofu has quit IRC03:11
*** CaptTofu has joined #openstack-dev03:12
*** ericw has joined #openstack-dev03:12
*** ericw has quit IRC03:12
*** herndon has quit IRC03:23
*** sushils has joined #openstack-dev03:25
*** nmiller_ has joined #openstack-dev03:35
*** adjohn has quit IRC03:39
*** adjohn has joined #openstack-dev03:39
*** adjohn has quit IRC03:44
*** sarob has joined #openstack-dev03:50
*** sarob has quit IRC03:55
*** danwent has joined #openstack-dev04:03
*** bdpayne has joined #openstack-dev04:04
*** alexxu has quit IRC04:08
*** noorul` is now known as noorul04:09
*** jecarey has quit IRC04:10
*** SergeyLukjanov has quit IRC04:17
*** chandankumar has joined #openstack-dev04:17
*** sushils has quit IRC04:17
*** michchap_ has joined #openstack-dev04:18
*** sushils has joined #openstack-dev04:19
*** michchap has quit IRC04:21
*** xjiujiu has joined #openstack-dev04:23
*** radsy has quit IRC04:23
*** pmathews has quit IRC04:26
*** stevemar has joined #openstack-dev04:27
*** michchap has joined #openstack-dev04:28
*** nmiller_ has quit IRC04:31
*** michchap_ has quit IRC04:31
*** basha has joined #openstack-dev04:39
*** basha has left #openstack-dev04:39
*** ArcTanSusan has joined #openstack-dev04:41
*** michchap has quit IRC04:42
*** raies has joined #openstack-dev04:43
*** michchap has joined #openstack-dev04:45
*** alexpilotti has joined #openstack-dev04:46
*** nshaikh has joined #openstack-dev04:47
*** annegentle has quit IRC04:49
*** xjiujiu has quit IRC04:49
*** xjiujiu has joined #openstack-dev04:50
*** sarob has joined #openstack-dev04:51
*** annegentle has joined #openstack-dev04:53
*** sarob has quit IRC04:55
*** twoputt has quit IRC04:59
*** afazekas has joined #openstack-dev05:01
*** kushal has joined #openstack-dev05:03
*** xjiujiu has quit IRC05:08
*** xjiujiu has joined #openstack-dev05:09
*** senk has joined #openstack-dev05:09
*** kushal has quit IRC05:10
*** vartom110 has joined #openstack-dev05:11
*** holms has joined #openstack-dev05:13
holmswhat's wrong with documentation site?05:13
*** senk has quit IRC05:13
*** stevemar has quit IRC05:14
*** nil1511 has joined #openstack-dev05:16
*** bdpayne has quit IRC05:16
*** holms has quit IRC05:16
*** cdub_ has joined #openstack-dev05:17
*** chandankumar has quit IRC05:18
*** vartom110 has quit IRC05:20
*** xjiujiu has quit IRC05:20
*** RajeshMohan has quit IRC05:20
*** xjiujiu has joined #openstack-dev05:20
*** RajeshMohan has joined #openstack-dev05:20
*** jhesketh has quit IRC05:20
*** nil1511_ has joined #openstack-dev05:24
*** jamespage_ has quit IRC05:24
*** xjiujiu has quit IRC05:26
*** xjiujiu has joined #openstack-dev05:26
*** kushal has joined #openstack-dev05:27
*** adjohn has joined #openstack-dev05:27
*** nil1511 has quit IRC05:27
*** bdpayne has joined #openstack-dev05:33
*** neoXsys has quit IRC05:33
*** shadowarrr is now known as shadower05:34
*** bearhands is now known as comstud05:35
*** hemna has quit IRC05:36
*** jamespage_ has joined #openstack-dev05:37
*** xjiujiu has quit IRC05:37
*** xjiujiu has joined #openstack-dev05:38
*** neoXsys has joined #openstack-dev05:39
*** enikanorov has quit IRC05:39
*** prekarat has joined #openstack-dev05:46
*** amotoki has joined #openstack-dev05:47
*** rdopieralski has joined #openstack-dev05:48
*** danwent has quit IRC05:48
*** chandankumar has joined #openstack-dev05:50
*** sarob has joined #openstack-dev05:52
*** nshaikh has left #openstack-dev05:52
*** gongysh has quit IRC05:52
*** sarob has quit IRC05:56
*** sumanthns has joined #openstack-dev05:57
*** neoXsys has quit IRC05:57
*** kushal has quit IRC05:58
*** yolanda has joined #openstack-dev06:07
*** xqueralt-afk is now known as xqueralt06:08
*** senk has joined #openstack-dev06:10
*** sumansn_ has joined #openstack-dev06:11
*** neoXsys has joined #openstack-dev06:11
*** Ryan_Lane has quit IRC06:13
*** sumanthns has quit IRC06:13
*** senk has quit IRC06:14
*** freedomhui has quit IRC06:15
*** bdpayne has quit IRC06:17
*** Nikolay11t has joined #openstack-dev06:19
*** garyk has joined #openstack-dev06:22
*** vartom110 has joined #openstack-dev06:22
*** RajeshMohan has quit IRC06:23
*** RajeshMohan has joined #openstack-dev06:23
*** neoXsys has quit IRC06:27
*** adjohn has quit IRC06:27
*** adjohn has joined #openstack-dev06:31
*** faramir has quit IRC06:31
*** rcrit has quit IRC06:35
*** neoXsys has joined #openstack-dev06:39
*** rcrit has joined #openstack-dev06:39
*** belmoreira has joined #openstack-dev06:40
*** rdopieralski has quit IRC06:41
*** nil1511 has joined #openstack-dev06:41
*** Ryan_Lane has joined #openstack-dev06:43
*** nil1511_ has quit IRC06:44
*** jprovazn has joined #openstack-dev06:45
*** jhesketh has joined #openstack-dev06:47
*** jhesketh__ has joined #openstack-dev06:47
*** faramir has joined #openstack-dev06:48
*** xchu has joined #openstack-dev06:49
*** doron_afk has joined #openstack-dev06:49
*** mrunge has joined #openstack-dev06:51
garykmikal: ping06:52
*** gongysh has joined #openstack-dev06:52
*** sarob has joined #openstack-dev06:52
*** o_petit has joined #openstack-dev06:54
*** therve has joined #openstack-dev06:54
*** adjohn has quit IRC06:55
*** Max_ has joined #openstack-dev06:55
*** sarob has quit IRC06:57
*** o_petit has quit IRC06:57
*** o_petit has joined #openstack-dev06:58
*** reidrac has joined #openstack-dev07:01
*** tkammer has joined #openstack-dev07:02
*** Nikolay11t has quit IRC07:03
*** Nikolay_St has joined #openstack-dev07:04
*** egallen has joined #openstack-dev07:06
*** git-harry has left #openstack-dev07:07
*** Mandell has quit IRC07:08
*** freedomhui has joined #openstack-dev07:09
*** xga has joined #openstack-dev07:10
*** fbo_away is now known as fbo07:12
*** alexxu has joined #openstack-dev07:14
*** xga_ has joined #openstack-dev07:14
*** doron_afk is now known as doron07:15
*** xga has quit IRC07:18
*** bogdando has joined #openstack-dev07:19
*** xga__ has joined #openstack-dev07:23
*** jcoufal has joined #openstack-dev07:23
*** xga_ has quit IRC07:26
*** aloga has joined #openstack-dev07:26
*** belmoreira has left #openstack-dev07:28
*** SergeyLukjanov has joined #openstack-dev07:32
*** flaper87|afk is now known as flaper8707:32
*** networkstatic has quit IRC07:33
*** xga has joined #openstack-dev07:33
*** JordanP has joined #openstack-dev07:34
*** xga__ has quit IRC07:34
*** jtomasek has joined #openstack-dev07:37
*** arezmerita has joined #openstack-dev07:38
*** martyntaylor has joined #openstack-dev07:41
*** adam_g has quit IRC07:42
*** adam_g has joined #openstack-dev07:42
*** adam_g has quit IRC07:42
*** adam_g has joined #openstack-dev07:42
*** martyntaylor has quit IRC07:43
*** safchain has joined #openstack-dev07:43
*** martyntaylor has joined #openstack-dev07:43
*** jistr has joined #openstack-dev07:43
*** martyntaylor has quit IRC07:44
*** martyntaylor1 has joined #openstack-dev07:44
*** martyntaylor1 has quit IRC07:45
*** martyntaylor has joined #openstack-dev07:45
*** wfoster_away is now known as wfoster07:45
*** jamespage_ has quit IRC07:46
*** fandikurnia01 has quit IRC07:47
*** doron is now known as doron_afk07:48
*** jbresnah has quit IRC07:48
*** mmagr has joined #openstack-dev07:49
*** adjohn has joined #openstack-dev07:50
*** jaimegil has joined #openstack-dev07:51
*** sarob has joined #openstack-dev07:53
*** athomas has joined #openstack-dev07:53
*** pabelanger has quit IRC07:53
*** zodiak has quit IRC07:53
*** tonyfy has joined #openstack-dev07:53
*** jhesketh__ has quit IRC07:53
*** jhesketh__ has joined #openstack-dev07:55
*** pabelanger has joined #openstack-dev07:55
*** pabelanger has joined #openstack-dev07:55
*** zodiak has joined #openstack-dev07:57
*** Ryan_Lane has quit IRC07:58
*** sarob has quit IRC07:58
*** xga_ has joined #openstack-dev07:59
*** git-harry has joined #openstack-dev08:01
*** giulivo has joined #openstack-dev08:02
*** imsurit has joined #openstack-dev08:02
*** ArcTanSusan has quit IRC08:02
*** xga has quit IRC08:03
*** boden has joined #openstack-dev08:03
*** yassine has joined #openstack-dev08:04
*** kpavel has joined #openstack-dev08:04
*** kpavel_ has joined #openstack-dev08:05
*** xga_ has quit IRC08:05
*** boden has quit IRC08:05
*** xga has joined #openstack-dev08:07
*** freedomhui has quit IRC08:08
*** kpavel has quit IRC08:09
*** kpavel_ is now known as kpavel08:09
*** shardy_afk is now known as shardy08:10
*** Alexei_987 has joined #openstack-dev08:11
*** xga_ has joined #openstack-dev08:11
*** adjohn has quit IRC08:12
*** eglynn has joined #openstack-dev08:13
*** faramir has quit IRC08:14
*** xga has quit IRC08:14
*** o_petit has quit IRC08:16
*** xga_ has quit IRC08:16
*** xga_ has joined #openstack-dev08:17
*** ygbo has joined #openstack-dev08:21
*** xga_ has quit IRC08:22
*** xga_ has joined #openstack-dev08:23
*** faramir has joined #openstack-dev08:26
*** Ryan_Lane has joined #openstack-dev08:28
*** AnilV4 has joined #openstack-dev08:28
*** o_petit has joined #openstack-dev08:31
*** Ryan_Lane has quit IRC08:32
*** lucasagomes has joined #openstack-dev08:34
*** corXi_ has joined #openstack-dev08:37
*** Max_ has quit IRC08:38
*** boris-42 has joined #openstack-dev08:41
*** imsurit has quit IRC08:46
*** jtomasek has quit IRC08:47
*** jtomasek has joined #openstack-dev08:47
*** gongysh has quit IRC08:50
*** gongysh has joined #openstack-dev08:50
*** o_petit has quit IRC08:50
*** o_petit has joined #openstack-dev08:51
*** doron_afk is now known as doron08:51
*** jhesketh has quit IRC08:52
*** Oneiroi has joined #openstack-dev08:52
*** sarob has joined #openstack-dev08:53
*** sergmelikyan has joined #openstack-dev08:54
*** qba73 has joined #openstack-dev08:55
*** paragan has quit IRC08:56
*** swaT30 has quit IRC08:57
*** sarob has quit IRC08:57
*** Ryan_Lane has joined #openstack-dev08:58
*** mrda has quit IRC08:59
*** swaT30 has joined #openstack-dev08:59
*** cdub_ has quit IRC09:01
*** Ryan_Lane has quit IRC09:05
*** Max_ has joined #openstack-dev09:07
*** markmc has joined #openstack-dev09:11
*** alexpilotti has quit IRC09:14
*** rushiagr has joined #openstack-dev09:21
*** o_petit has quit IRC09:21
*** Max_ has quit IRC09:22
*** sahid has joined #openstack-dev09:23
*** o_petit has joined #openstack-dev09:24
*** o_petit has quit IRC09:25
*** o_petit has joined #openstack-dev09:26
*** jtomasek has quit IRC09:27
*** tsufiev has joined #openstack-dev09:27
*** jtomasek has joined #openstack-dev09:27
*** ruhe has joined #openstack-dev09:29
*** AnilV4 has quit IRC09:30
*** doron is now known as doron_afk09:30
*** danpb has joined #openstack-dev09:31
*** rushiagr has quit IRC09:32
*** Max_ has joined #openstack-dev09:33
*** AnilV4 has joined #openstack-dev09:34
*** rushiagr has joined #openstack-dev09:40
*** vsergeyev has joined #openstack-dev09:47
*** Ruetobas has quit IRC09:50
*** rossella_s has joined #openstack-dev09:51
*** Ruetobas has joined #openstack-dev09:53
*** zaneb has joined #openstack-dev09:53
*** sarob has joined #openstack-dev09:54
*** Ruetobas has quit IRC09:57
*** Ruetobas has joined #openstack-dev09:58
*** sarob has quit IRC09:58
*** ema has joined #openstack-dev09:58
tsufievdavid-lyle, mrunge, amotoki, could you please take a look at https://review.openstack.org/#/c/45655/ ?10:01
*** pixelb has joined #openstack-dev10:02
*** zigo_ has joined #openstack-dev10:04
*** jcoufal has quit IRC10:04
*** ruhe has quit IRC10:05
*** zigo has quit IRC10:05
*** egallen has quit IRC10:07
*** paragan has joined #openstack-dev10:07
*** freedomhui has joined #openstack-dev10:10
*** o_petit has quit IRC10:11
*** ruhe has joined #openstack-dev10:11
*** ruhe has quit IRC10:12
*** rushiagr has quit IRC10:17
*** Nikolay_St has quit IRC10:18
*** mrda has joined #openstack-dev10:19
*** yaguang has quit IRC10:21
*** xchu has quit IRC10:22
*** rushiagr has joined #openstack-dev10:23
*** pcm_ has joined #openstack-dev10:26
amotokitsufiev: reviews of django_openstack_auth are out of my radar. will check.10:28
*** pcm__ has joined #openstack-dev10:30
tsufievamotoki, thanks!10:30
amotokitsufiev: just commented10:31
*** pcm_ has quit IRC10:32
*** SergeyLukjanov has quit IRC10:36
*** aloga has quit IRC10:36
*** tonyfy has quit IRC10:36
*** rdopieralski has joined #openstack-dev10:36
*** kushal has joined #openstack-dev10:38
*** gongysh has quit IRC10:38
*** Max_ has quit IRC10:39
*** o_petit has joined #openstack-dev10:41
*** mjb_ has quit IRC10:43
*** doron_afk is now known as doron10:43
*** faramir has quit IRC10:45
*** freedomhui has quit IRC10:46
*** athomas has quit IRC10:48
*** o_petit has quit IRC10:49
*** ruhe has joined #openstack-dev10:50
*** aloga has joined #openstack-dev10:51
*** boris-42 has quit IRC10:51
*** aloga has quit IRC10:52
*** aloga has joined #openstack-dev10:52
*** shang has quit IRC10:54
*** sarob has joined #openstack-dev10:54
*** athomas has joined #openstack-dev10:56
*** Max_ has joined #openstack-dev10:56
*** rushiagr has quit IRC10:58
*** sarob has quit IRC10:59
*** Max_ has quit IRC11:00
*** waa has joined #openstack-dev11:02
*** kushal has quit IRC11:03
*** SergeyLukjanov has joined #openstack-dev11:05
*** DeeJay1 has joined #openstack-dev11:07
DeeJay1hi, any ideas how I can make openstack.common.rpc.service listen to notifications.info from nova? I have some problems wrapping my head around that class :(11:08
*** dims has joined #openstack-dev11:12
*** adjohn has joined #openstack-dev11:13
*** mkollaro has joined #openstack-dev11:15
*** adjohn has quit IRC11:17
*** miziel_r has joined #openstack-dev11:18
*** edleafe has quit IRC11:19
miziel_rHi everyone! I'm assigned to this feature in the wishlist "View projects that a user is member of" (https://bugs.launchpad.net/horizon/+bug/1194109). David Lyle proposed to add a filter to manage user IDs on the projects panel. What do you think about that ?11:22
uvirtbotLaunchpad bug 1194109 in horizon "View projects that a user is member of" [Wishlist,Confirmed]11:22
*** toanster_ has quit IRC11:23
*** toanster_ has joined #openstack-dev11:24
*** Shaan7 has quit IRC11:24
*** egallen has joined #openstack-dev11:24
*** Shaan7 has joined #openstack-dev11:25
*** ruhe has quit IRC11:27
*** pcm__ has quit IRC11:29
*** KurtMartin has joined #openstack-dev11:29
*** kmartin has quit IRC11:29
*** alexxu has quit IRC11:32
*** CaptTofu has quit IRC11:33
*** dstanek has joined #openstack-dev11:33
*** belmoreira has joined #openstack-dev11:34
*** mkerrin has quit IRC11:37
*** alexxu has joined #openstack-dev11:37
*** o_petit has joined #openstack-dev11:37
*** o_petit has quit IRC11:40
*** CaptTofu has joined #openstack-dev11:42
*** zhikunliu has quit IRC11:44
*** CaptTofu has quit IRC11:45
*** CaptTofu has joined #openstack-dev11:46
*** ruhe has joined #openstack-dev11:46
*** CaptTofu has quit IRC11:49
*** lucasagomes is now known as lucas-hungry11:49
*** CaptTofu has joined #openstack-dev11:49
*** CaptTofu has quit IRC11:51
*** CaptTofu has joined #openstack-dev11:51
*** sarob has joined #openstack-dev11:55
*** sarob has quit IRC11:59
*** doron has quit IRC12:00
*** venkatesh has joined #openstack-dev12:00
*** doron has joined #openstack-dev12:04
*** markvoelker has quit IRC12:04
*** mrda has quit IRC12:04
*** markvoelker has joined #openstack-dev12:08
*** vsergeyev has left #openstack-dev12:09
*** vsergeyev has joined #openstack-dev12:09
*** vsergeyev has left #openstack-dev12:09
*** CaptTofu has quit IRC12:11
*** Max_ has joined #openstack-dev12:11
*** CaptTofu has joined #openstack-dev12:11
*** vsergeyev has joined #openstack-dev12:12
*** mrunge has quit IRC12:12
*** litong has joined #openstack-dev12:13
*** boris-42 has joined #openstack-dev12:13
*** Max_ has quit IRC12:15
*** jay-lau-513 has joined #openstack-dev12:18
*** freedomhui has joined #openstack-dev12:20
tsufievamotoki, just fixed the tests12:21
*** thomasm has joined #openstack-dev12:24
*** kushal has joined #openstack-dev12:24
*** jruzicka has joined #openstack-dev12:25
*** rfolco has joined #openstack-dev12:27
*** venkatesh has quit IRC12:28
*** prekarat has quit IRC12:28
*** READ10 has joined #openstack-dev12:29
*** crazed has quit IRC12:32
miziel_rHi everyone! I'm assigned to this feature in the wishlist "View projects that a user is member of" (https://bugs.launchpad.net/horizon/+bug/1194109). David Lyle proposed to add a filter to manage user IDs on the projects panel. What do you think about that ?12:32
uvirtbotLaunchpad bug 1194109 in horizon "View projects that a user is member of" [Wishlist,Confirmed]12:32
*** adalbas has joined #openstack-dev12:34
*** o_petit has joined #openstack-dev12:35
*** timello has quit IRC12:37
*** bcrochet has quit IRC12:38
*** timello has joined #openstack-dev12:39
*** bswartz has quit IRC12:40
*** edmund has quit IRC12:40
*** bcrochet has joined #openstack-dev12:40
lbragstadmorganfainberg: pong12:41
*** gongysh has joined #openstack-dev12:42
*** edmund has joined #openstack-dev12:43
*** dsirrine has joined #openstack-dev12:43
*** edmund has quit IRC12:47
*** doron has quit IRC12:48
*** edleafe has joined #openstack-dev12:48
*** doron has joined #openstack-dev12:48
*** ruhe has quit IRC12:50
*** jaimegil has quit IRC12:50
*** READ10 has quit IRC12:50
*** dims has quit IRC12:53
*** sridevi has joined #openstack-dev12:54
*** rushiagr has joined #openstack-dev12:54
*** dims has joined #openstack-dev12:54
*** maheshp has joined #openstack-dev12:55
*** belmoreira has quit IRC12:55
*** sandywalsh has quit IRC12:57
*** dstanek has quit IRC12:58
*** READ10 has joined #openstack-dev12:58
*** belmoreira has joined #openstack-dev12:58
*** dvarga has joined #openstack-dev12:59
*** herndon has joined #openstack-dev12:59
*** lucas-hungry is now known as lucasagomes12:59
*** pcm_ has joined #openstack-dev13:00
*** sgordon has joined #openstack-dev13:01
*** prad has joined #openstack-dev13:01
*** fc__ has quit IRC13:01
*** dprince has joined #openstack-dev13:03
*** venkatesh has joined #openstack-dev13:04
*** aloga has quit IRC13:05
*** prad has quit IRC13:05
*** venkatesh has quit IRC13:07
*** venkatesh has joined #openstack-dev13:08
*** rustlebee is now known as russellb13:08
*** kushal has quit IRC13:08
*** jayg|g0n3 is now known as jayg13:09
*** sandywalsh has joined #openstack-dev13:10
*** amotoki has quit IRC13:10
*** bknudson has joined #openstack-dev13:11
*** kevinconway has quit IRC13:11
*** rcrit has quit IRC13:12
*** vartom110 has quit IRC13:14
*** devoid has joined #openstack-dev13:14
*** rcrit has joined #openstack-dev13:14
*** CaptTofu has quit IRC13:15
*** BLZbubba has joined #openstack-dev13:15
*** CaptTofu has joined #openstack-dev13:16
*** paragan has quit IRC13:16
*** jhesketh__ has quit IRC13:16
*** CaptTofu has quit IRC13:17
*** CaptTofu has joined #openstack-dev13:17
*** gordc has joined #openstack-dev13:18
*** dprince has quit IRC13:19
*** aloga has joined #openstack-dev13:23
*** jcoufal has joined #openstack-dev13:24
*** kevinconway has joined #openstack-dev13:25
*** tserong has quit IRC13:25
*** dstanek has joined #openstack-dev13:25
*** sarob has joined #openstack-dev13:25
*** shang has joined #openstack-dev13:26
*** changbl has quit IRC13:29
*** radez_g0n3 is now known as radez13:29
*** tvb has joined #openstack-dev13:29
*** SergeyLukjanov has quit IRC13:29
*** tvb has quit IRC13:29
*** tvb has joined #openstack-dev13:29
*** dkranz has joined #openstack-dev13:29
*** sarob has quit IRC13:29
*** tvb has quit IRC13:33
*** bnemec has joined #openstack-dev13:33
*** jecarey has joined #openstack-dev13:33
*** SergeyLukjanov has joined #openstack-dev13:34
*** neelashah has joined #openstack-dev13:34
*** alunduil has quit IRC13:35
*** blamar has joined #openstack-dev13:37
*** jecarey has quit IRC13:40
*** jecarey has joined #openstack-dev13:41
*** sridevi has quit IRC13:41
*** roaet-away is now known as roaet13:43
*** sridevi has joined #openstack-dev13:44
*** kbringard has joined #openstack-dev13:45
*** bswartz has joined #openstack-dev13:48
*** sridevi has quit IRC13:48
*** JordanP has quit IRC13:50
*** burt has joined #openstack-dev13:50
*** rcleere has quit IRC13:50
*** eharney has joined #openstack-dev13:52
*** vartom110 has joined #openstack-dev13:53
*** sumansn_ has quit IRC13:54
*** sumanthns has joined #openstack-dev13:54
*** fc__ has joined #openstack-dev13:56
*** michchap has quit IRC13:56
*** michchap has joined #openstack-dev13:56
*** hartsocks has joined #openstack-dev13:56
*** hartsocks has left #openstack-dev13:57
*** edmund has joined #openstack-dev13:57
*** matiu has joined #openstack-dev13:58
*** vartom111 has joined #openstack-dev13:59
*** michchap has quit IRC13:59
*** michchap has joined #openstack-dev14:00
*** CaptTofu has quit IRC14:01
*** vartom110 has quit IRC14:01
*** CaptTofu has joined #openstack-dev14:02
*** JordanP has joined #openstack-dev14:03
*** irimi has joined #openstack-dev14:04
*** sushils has quit IRC14:04
*** stevemar has joined #openstack-dev14:04
*** tvb has joined #openstack-dev14:05
*** tvb is now known as Guest7263614:05
*** o_petit has quit IRC14:06
adalbasavishay, jgriffith : this cinder review is waiting approval for some time. Could one of you look at that please: https://review.openstack.org/#/c/43933/14:06
*** Guest72636 has quit IRC14:06
*** herndon has quit IRC14:08
*** belmoreira has quit IRC14:09
*** tserong has joined #openstack-dev14:09
*** DeeJay1 has quit IRC14:09
*** doron is now known as doron_afk14:10
*** gimps_ has joined #openstack-dev14:11
*** belmoreira has joined #openstack-dev14:11
*** vartom111 has quit IRC14:12
*** rnirmal has joined #openstack-dev14:15
*** Dr_Who has joined #openstack-dev14:16
*** cdub_ has joined #openstack-dev14:18
*** ruhe has joined #openstack-dev14:19
*** xjiujiu has quit IRC14:20
*** henrynash has joined #openstack-dev14:20
*** sahid has quit IRC14:20
*** Max_ has joined #openstack-dev14:21
*** salv-orlando has quit IRC14:22
*** rcleere has joined #openstack-dev14:22
*** CaptTofu has quit IRC14:22
*** CaptTofu has joined #openstack-dev14:22
*** rdopieralski has quit IRC14:23
henrynashdolphm: ping14:23
*** CaptTofu has quit IRC14:25
*** rcleere has quit IRC14:25
*** rcleere has joined #openstack-dev14:26
*** sarob has joined #openstack-dev14:26
*** CaptTofu has joined #openstack-dev14:26
*** Max_ has quit IRC14:26
*** rushiagr has left #openstack-dev14:27
*** noslzzp has joined #openstack-dev14:27
*** rcleere has quit IRC14:27
*** markmcclain has joined #openstack-dev14:28
*** o_petit has joined #openstack-dev14:28
*** rwsu has joined #openstack-dev14:29
*** dprince has joined #openstack-dev14:29
*** sarob has quit IRC14:30
*** CaptTofu has quit IRC14:31
*** dkranz has quit IRC14:31
*** jruzicka has quit IRC14:31
*** o_petit has quit IRC14:31
*** CaptTofu has joined #openstack-dev14:32
*** mmagr has quit IRC14:32
*** alunduil has joined #openstack-dev14:32
*** jruzicka has joined #openstack-dev14:33
*** belmoreira1 has joined #openstack-dev14:33
*** nil1511 has joined #openstack-dev14:34
*** burt has quit IRC14:35
*** belmoreira has quit IRC14:35
*** burt has joined #openstack-dev14:36
*** sushils has joined #openstack-dev14:36
*** burt has quit IRC14:37
*** o_petit has joined #openstack-dev14:38
*** burt has joined #openstack-dev14:38
*** otherwiseguy has joined #openstack-dev14:39
*** FunnyLookinHat has joined #openstack-dev14:39
*** armax has joined #openstack-dev14:41
*** sushils has quit IRC14:41
*** dafter has joined #openstack-dev14:42
*** dafter is now known as tvb14:42
*** tvb has quit IRC14:42
*** tvb has joined #openstack-dev14:42
*** o_petit has quit IRC14:43
*** dkranz has joined #openstack-dev14:43
*** datsun180b has joined #openstack-dev14:43
*** JordanP has quit IRC14:43
*** ilyashakhat has quit IRC14:44
*** JordanP has joined #openstack-dev14:44
*** phschwartz has quit IRC14:44
*** o_petit has joined #openstack-dev14:45
*** spzala has joined #openstack-dev14:47
*** phschwartz has joined #openstack-dev14:47
*** danwent has joined #openstack-dev14:48
*** mmagr has joined #openstack-dev14:49
*** henrynash has quit IRC14:49
*** carl_baldwin has joined #openstack-dev14:50
*** hashfail_ has joined #openstack-dev14:50
*** gimps_ has quit IRC14:50
*** hashfail_ has quit IRC14:50
*** hashfail_ has joined #openstack-dev14:50
*** lbragstad has quit IRC14:51
*** hashfail_ has quit IRC14:52
*** boden has joined #openstack-dev14:52
*** gimps_ has joined #openstack-dev14:52
*** rcleere has joined #openstack-dev14:52
*** fbo is now known as fbo_away14:52
*** zhiyan has joined #openstack-dev14:52
*** gimps_ has quit IRC14:53
*** gimps_ has joined #openstack-dev14:54
*** mmagr has quit IRC14:54
*** jruzicka has quit IRC14:54
*** kenperkins has joined #openstack-dev14:54
*** sthaha has quit IRC14:55
*** gimps_ has quit IRC14:55
*** gimps_ has joined #openstack-dev14:55
*** tmclaugh[work] has joined #openstack-dev14:56
avishayadalbas: i can't +2 backports - that's a different team. jgriffith?14:57
*** kuuudos has joined #openstack-dev14:58
*** spzala has quit IRC14:58
*** kuuudos has left #openstack-dev14:59
*** kuuudos has joined #openstack-dev14:59
*** gimps_ has quit IRC15:00
*** twoputt has joined #openstack-dev15:00
*** sarob has joined #openstack-dev15:01
*** carl_baldwin has quit IRC15:02
*** carl_baldwin has joined #openstack-dev15:02
*** tvb has quit IRC15:02
*** jprovazn has quit IRC15:02
*** doron_afk is now known as doron15:02
*** tvb has joined #openstack-dev15:03
*** galstrom_zzz is now known as galstrom15:03
*** reidrac has quit IRC15:03
*** sarob_ has joined #openstack-dev15:03
*** tvb is now known as Guest8217515:03
*** spzala has joined #openstack-dev15:03
*** thedodd has joined #openstack-dev15:04
*** sarob has quit IRC15:04
jgriffithavishay: adalbas what's up?15:04
avishayjgriffith: request for review - https://review.openstack.org/#/c/43933/15:04
*** Guest82175 is now known as tvb15:04
avishayjgriffith: grizzly backport15:04
*** jvrbanac has joined #openstack-dev15:05
*** tvb is now known as Guest3168215:05
*** changbl has joined #openstack-dev15:05
jgriffithavishay: adalbas I'd like to see one more core from stable-release have a look at it15:05
jgriffithavishay: or you're review and I'll +2/A it as it does have stable-main approval15:05
*** gimps_ has joined #openstack-dev15:06
jgriffithavishay: know what I'm saying... I'm good with it, but being a Grizzly patch I would like one more core from either side to review15:06
*** shang has quit IRC15:07
*** o_petit has quit IRC15:07
*** mmagr has joined #openstack-dev15:07
eharneyjgriffith: i actually had a question about that one...15:07
*** dolphm has joined #openstack-dev15:07
eharneyjgriffith: i don't think it's standard practice to combine two different patches into one for a backport?15:08
*** jruzicka has joined #openstack-dev15:08
*** sarob_ has quit IRC15:09
*** tmckay has joined #openstack-dev15:09
jgriffitheharney: no it's not15:10
avishayjgriffith: ok, i will review.  the request didn't come from me - adalbas asked us15:10
jgriffitheharney: but it's dep is a special case IMO15:10
*** sheepdog80 has left #openstack-dev15:11
*** danwent has joined #openstack-dev15:11
jgriffithavishay: of course, this seems to be the morning of people asking for reviews from me :)15:11
*** comay has joined #openstack-dev15:11
avishayjgriffith: :)15:12
jgriffithavishay: but I'm passing the buck to you :)15:12
jgriffithLOL15:12
jgriffithor just saying "don't ask"15:12
avishayjgriffith: no problemo - looking over the patch15:12
*** o_petit has joined #openstack-dev15:12
*** venkatesh has quit IRC15:13
*** spzala has quit IRC15:14
jgriffitheharney: so I don't disagree with you on the combination15:14
jgriffitheharney: but I'm not as concerned on this bp as it's pulling in the dep and it's relatively well grouped IMO15:15
*** git-harry has quit IRC15:15
*** git-harry has joined #openstack-dev15:15
jgriffitheharney: and it's not a clean cherry pick regardless given the divergence.  What's been done here is actually cleaner in this case15:16
*** clayb has joined #openstack-dev15:16
eharneyjgriffith: works for me -- i hadn't dug through all of the details yet15:16
afazekaszhiyan: ping15:17
*** doron is now known as doron_afk15:18
avishayadalbas: why didn't you take in all of the changes in cinder/db/sqlalchemy/api.py?15:18
*** doron_afk is now known as doron15:18
*** reed has joined #openstack-dev15:18
*** lbragstad has joined #openstack-dev15:19
*** jtomasek has quit IRC15:20
*** doron is now known as doron_afk15:20
*** doron_afk is now known as doron15:20
*** irimi has quit IRC15:20
zhiyanafazekas: pong15:23
*** AnilV4 has quit IRC15:24
miziel_rHi everyone! I'm assigned to this feature in the wishlist "View projects that a user is member of" (https://bugs.launchpad.net/horizon/+bug/1194109). David Lyle proposed to add a filter to manage user IDs on the projects panel. What do you think about that ?15:25
uvirtbotLaunchpad bug 1194109 in horizon "View projects that a user is member of" [Wishlist,Confirmed]15:25
afazekaszhiyan: https://review.openstack.org/#/c/47786/ The code did not reused the connection before the change15:25
*** sushils has joined #openstack-dev15:26
*** Guest31682 is now known as tvb15:26
afazekaszhiyan: I am unsure it is the right time to add a connection re-user version, and you really need an extreme load to run out from the fds15:26
*** tvb has quit IRC15:26
*** tvb has joined #openstack-dev15:26
zhiyanafazekas: yes, i saw your response, just do some other things. handing now ... thanks.15:27
*** belmoreira1 has quit IRC15:27
zhiyanafazekas: actually that is just I concerned15:27
zhiyanafazekas: actually your change is not on the rc1 bug list also15:27
zhiyanafazekas: so first thing, i'm not sure it will be handed/included in h release15:28
*** jecarey has quit IRC15:28
zhiyanafazekas: so if h release not plan to contains it, then i think it will be better if we drop re-use function in..thoughts?15:29
*** tace has left #openstack-dev15:30
afazekaswithout my change you can hang the glance with relatively low concurrency.  When the select monkey patching and local variable usage makes it to survive 4 time more load, if the tread also patched it can survive extreme load (16x tome more then originally)15:30
afazekasI just created the bug today15:30
*** adjohn has joined #openstack-dev15:30
*** venkatesh has joined #openstack-dev15:31
*** tvb has quit IRC15:31
*** tvb has joined #openstack-dev15:32
*** tvb has quit IRC15:32
*** tvb has joined #openstack-dev15:32
*** o_petit has quit IRC15:33
stevemardolphm: ping15:35
dolphmstevemar: pong15:35
*** dubsquared has joined #openstack-dev15:35
*** jecarey has joined #openstack-dev15:35
*** jprovazn has joined #openstack-dev15:36
stevemardolphm: in the sample keystone.conf, in the [auth] section, currently oauth1 is there by default, i'm thinking it should not be? right?15:36
stevemardolphm: it should be commented out, like external?15:36
*** lbragstad has left #openstack-dev15:36
*** debalina has quit IRC15:37
*** mlavalle has joined #openstack-dev15:37
dolphmstevemar: probably so - it's *not* included by keystone.common.config by default, correct?15:39
stevemarcorrect15:39
dolphmstevemar: (either way, they should match as best as possible)15:39
*** devoid has left #openstack-dev15:40
stevemardolphm: and one more thing, in the paste sample file, it's still called oauth, not oauth1. i'll fix that up too15:40
*** bnemec has quit IRC15:41
*** markmc has quit IRC15:41
*** bnemec has joined #openstack-dev15:41
*** Dr_Who has quit IRC15:41
*** zul has quit IRC15:43
*** yaguang has joined #openstack-dev15:44
*** miziel_r has quit IRC15:44
dolphmstevemar: as in, it doesn't match the actual expected config, or the actual expected config is oauth?15:45
afazekaszhiyan: can you elaborate it ? ' we drop re-use function' ?15:46
zhiyanafazekas: replied by review comments15:46
stevemardolphm: it's just a consistency issue, https://github.com/openstack/keystone/blob/master/etc/keystone-paste.ini#L2715:47
stevemardolphm: we use oauth1 everywhere, not oauth (no 1)15:47
*** yassine has quit IRC15:47
*** zul has joined #openstack-dev15:48
*** egallen_ has joined #openstack-dev15:48
*** egallen has quit IRC15:48
*** egallen_ is now known as egallen15:48
*** jistr has quit IRC15:49
*** mrodden1 has quit IRC15:49
*** radix has quit IRC15:51
*** radix has joined #openstack-dev15:51
*** radix has quit IRC15:52
*** radix has joined #openstack-dev15:52
*** wolfdreamer has joined #openstack-dev15:52
*** obondarev has quit IRC15:53
*** sridevi has joined #openstack-dev15:53
*** twoputt_ has joined #openstack-dev15:54
*** bdpayne has joined #openstack-dev15:54
*** twoputt_ has quit IRC15:55
*** Dr_Who has joined #openstack-dev15:56
*** Dr_Who has joined #openstack-dev15:56
*** dprince has quit IRC15:56
*** jistr has joined #openstack-dev15:57
*** dolphm has quit IRC15:57
*** dubsquared has quit IRC15:59
*** terriyu has joined #openstack-dev15:59
*** dubsquared has joined #openstack-dev15:59
*** mrodden has joined #openstack-dev16:00
*** adjohn has quit IRC16:00
*** doron is now known as doron_afk16:00
*** zaitcev has joined #openstack-dev16:00
*** litong has quit IRC16:00
*** Ruetobas has quit IRC16:01
*** xga__ has joined #openstack-dev16:02
*** Ruetobas has joined #openstack-dev16:03
*** venkatesh has quit IRC16:03
*** pmathews has joined #openstack-dev16:03
*** lbragstad has joined #openstack-dev16:04
*** xga_ has quit IRC16:05
*** dolphm has joined #openstack-dev16:05
*** sridevi has quit IRC16:07
*** xga__ has quit IRC16:07
*** RajeshMohan has quit IRC16:08
*** Ruetobas has quit IRC16:08
*** xga__ has joined #openstack-dev16:08
*** RajeshMohan has joined #openstack-dev16:08
*** Dr_Who has quit IRC16:08
*** imsurit has joined #openstack-dev16:08
*** henrynash has joined #openstack-dev16:11
*** nil1511 has quit IRC16:11
*** garyk has quit IRC16:11
*** flaper87 is now known as flaper87|afk16:11
*** corXi_ has quit IRC16:13
*** dims has quit IRC16:14
*** Ruetobas has joined #openstack-dev16:14
*** athomas has quit IRC16:14
*** mmagr has quit IRC16:15
*** cthulhup_ has joined #openstack-dev16:16
*** wchrisj has joined #openstack-dev16:16
*** safchain has quit IRC16:16
*** sushils has quit IRC16:16
*** shinylasers has joined #openstack-dev16:17
*** kbrierly has joined #openstack-dev16:18
*** angdraug has joined #openstack-dev16:19
*** tkammer has quit IRC16:19
*** alexpilotti has joined #openstack-dev16:19
*** boris-42 has quit IRC16:19
*** alexpilotti has quit IRC16:20
*** Max_ has joined #openstack-dev16:21
*** qba73 has quit IRC16:22
*** doron_afk has quit IRC16:22
*** gongysh has quit IRC16:24
*** athomas has joined #openstack-dev16:24
*** ema has quit IRC16:25
*** sushils has joined #openstack-dev16:25
*** jistr has quit IRC16:28
*** devoid has joined #openstack-dev16:34
*** afazekas has quit IRC16:37
*** gimps_ has quit IRC16:37
*** reed has quit IRC16:37
*** sridevi has joined #openstack-dev16:38
*** sridevi has quit IRC16:38
*** reed has joined #openstack-dev16:38
yaguangcould any Nova stable maintainer take a look at this https://review.openstack.org/#/c/44782/16:39
yaguangit has waiting for a long time to get approved16:40
*** xmltok has joined #openstack-dev16:40
*** adam_g has quit IRC16:40
*** xmltok has joined #openstack-dev16:40
*** dolphm has quit IRC16:41
*** reed has quit IRC16:41
*** alop has joined #openstack-dev16:42
*** devoid has left #openstack-dev16:42
*** reed has joined #openstack-dev16:42
*** yaguang has quit IRC16:43
*** Tross has quit IRC16:43
*** kpavel has quit IRC16:43
*** Tross has joined #openstack-dev16:43
*** adam_g has joined #openstack-dev16:43
*** adam_g has quit IRC16:43
*** adam_g has joined #openstack-dev16:43
*** anniec has joined #openstack-dev16:44
*** wchrisj has quit IRC16:45
*** jmontemayor has joined #openstack-dev16:45
*** adjohn has joined #openstack-dev16:46
*** jcoufal has quit IRC16:47
*** ygbo has quit IRC16:48
*** Dr_Who has joined #openstack-dev16:50
*** Dr_Who has joined #openstack-dev16:50
*** egallen has quit IRC16:50
*** gimps__ has quit IRC16:51
*** SumitNaiksatam has quit IRC16:51
*** JordanP has quit IRC16:51
*** xga has joined #openstack-dev16:52
*** egallen has joined #openstack-dev16:52
*** egallen has quit IRC16:52
*** enikanorov has joined #openstack-dev16:53
*** egallen has joined #openstack-dev16:53
*** xga has quit IRC16:53
*** xga has joined #openstack-dev16:54
*** hemnafk is now known as hemna16:54
*** xga__ has quit IRC16:55
*** adjohn has quit IRC16:55
adalbasavishay, about your question before, there were many changes on the api that would require other things to be merged that were out of the scope of those reviews.16:55
*** adjohn has joined #openstack-dev16:55
*** adjohn has quit IRC16:55
*** SergeyLukjanov has quit IRC16:56
*** Alexei_987 has quit IRC16:56
avishayadalbas: is that a separate bug (glance metadata for snapshots)?16:56
adalbasavishay, yes, i believe so.16:58
morganfainbergayoung, ping16:58
adalbasavishay, changes for the snapshot would imply in other changes in the manager and other things, iirc16:59
*** garyk has joined #openstack-dev17:00
*** dubsquared has quit IRC17:00
*** eglynn has quit IRC17:00
*** Mandell has joined #openstack-dev17:01
*** xga has quit IRC17:01
hub_caphey do any of the openstack api's use PATCH for update? Trove is in a spot where we need to be able to overwrite a set of params for a configuration, or update a single one and leave the rest.. any suggestions besides PATCH if its a dumb idea? (im full of dumb ideas fwiw!)17:02
morganfainberghub_cap, some do (Keystone does in some cases)17:02
*** ondergetekende_ has joined #openstack-dev17:03
hub_capok so its not completely crazy :)17:03
morganfainberghub_cap, PATCH is not a bad idea at all.17:03
morganfainberghub_cap, nope! :)17:03
morganfainbergto be fair, most updates could be considered PATCH17:03
* hub_cap is dissapointed... having sane ideas is just... no fun17:03
*** ondergetekende_ has quit IRC17:03
hub_capmorganfainberg: thats what im trying to do across the Trove app17:03
morganfainbergvs. say PUT unless it's 100% replacement17:03
hub_capexactly17:03
morganfainberghub_cap, in reality, PUT, PATCH, and POST seem to be interchanged a lot17:04
hub_capmorganfainberg: thats what im trying to do across the Trove app w/ PATCH vs PUT17:04
morganfainberghub_cap, but I totally think PATCH is a good choice for partial updates.17:04
hub_capya to me, POST = create, PUT = replace, PATCH = update17:04
morganfainberghub_cap, ++ I like it!17:05
hub_capthx for the input morganfainberg17:05
morganfainbergnp17:05
*** athomas has quit IRC17:06
stevemarayoung: ping17:07
morganfainbergstevemar, oh hi!17:08
*** RajeshMohan has quit IRC17:09
*** rossella_s has quit IRC17:09
*** RajeshMohan has joined #openstack-dev17:10
stevemarmorganfainberg hiya!17:10
*** mlavalle has quit IRC17:11
*** imsurit has quit IRC17:12
*** venkatesh has joined #openstack-dev17:12
*** zhiyan has quit IRC17:13
avishayjgriffith: adalbas: looks good to me - https://review.openstack.org/#/c/43933/17:13
*** BobBall is now known as BobBall_Away17:14
stevemarmorganfainberg hey, i just remembered that actually needed to ping you earlier17:14
*** RajeshMohan has quit IRC17:14
*** RajeshMohan has joined #openstack-dev17:14
stevemarmorganfainberg, i pulled in your changes for the tenantId vs tenant_id - and now when i run tests, i see an error: Conflict occurred attempting to store user. table user has no column named default_project_id. I assume it's because something needs to be cleaned/restored17:16
*** SumitNaiksatam has joined #openstack-dev17:16
morganfainbergstevemar, possibly17:16
morganfainbergstevemar, oh, you haven't dbsync'd17:17
stevemarahh17:17
morganfainbergstevemar, or didn't end up on v3417:18
morganfainbergstevemar, new column.17:18
* stevemar nods17:18
stevemaryep yep17:18
stevemari just pulled them in17:18
*** Dr_Who has quit IRC17:18
morganfainbergyeah.17:18
morganfainbergnormalizing that into a column for SQL because it was way cleaner than trying to deal w/ the json blob.17:19
*** gyee has joined #openstack-dev17:21
*** markmcclain1 has joined #openstack-dev17:21
*** markmcclain has quit IRC17:22
adalbasavishay, tks!!17:22
*** danpb has quit IRC17:24
*** tmclaugh[work] has quit IRC17:26
*** tmclaugh[work] has joined #openstack-dev17:28
*** sarob has joined #openstack-dev17:30
*** SergeyLukjanov has joined #openstack-dev17:31
*** dubsquared has joined #openstack-dev17:31
*** lucasagomes is now known as lucas-dinner17:33
*** martyntaylor has quit IRC17:33
*** pberis has joined #openstack-dev17:34
*** twoputt has quit IRC17:35
*** dubsquared has quit IRC17:36
*** eglynn has joined #openstack-dev17:36
*** ruhe has quit IRC17:38
*** al039 has joined #openstack-dev17:39
*** giulivo has quit IRC17:39
hub_capjamielennox: when you come to life today id like to discuss the auth plugins work and how they relate to oslo's apiclient17:39
al039i want to contribute to openstack development effort and start small like bug fixing17:39
*** otherwiseguy has quit IRC17:40
al039I am going through the simplest module possible the python-novaclient but looking at the humoungous code and all the utilities it is calling I am not sure where to start17:40
al039any tip on how to start?17:41
*** dolphm has joined #openstack-dev17:42
*** burt has quit IRC17:44
*** dprince has joined #openstack-dev17:46
*** dolphm has quit IRC17:46
*** Mandell has quit IRC17:47
*** nikhil has quit IRC17:48
*** eglynn has quit IRC17:49
*** zbitter has joined #openstack-dev17:50
*** boris-42 has joined #openstack-dev17:50
*** anniec has quit IRC17:50
*** dolphm has joined #openstack-dev17:52
*** mjbright has quit IRC17:53
*** zaneb has quit IRC17:53
*** Max_ has quit IRC17:54
*** Ryan_Lane has joined #openstack-dev17:56
*** Mandell has joined #openstack-dev17:56
*** moted has quit IRC17:57
morganfainbergdolphm, ping17:58
*** freedomhui has quit IRC17:58
*** moted has joined #openstack-dev17:58
*** morganfainberg has quit IRC17:59
*** sarob has quit IRC18:00
*** elfelvin has joined #openstack-dev18:00
*** phschwartz has quit IRC18:00
*** mestery has quit IRC18:01
*** phschwartz has joined #openstack-dev18:01
*** nikhil has joined #openstack-dev18:01
*** kpavel has joined #openstack-dev18:01
*** morganfainberg has joined #openstack-dev18:02
jgriffithsdague: ping18:03
sdaguejgriffith: pong18:03
*** ruhe has joined #openstack-dev18:03
*** ruhe has quit IRC18:03
jgriffithsdague: hey ya... is there a place in the gate logs that show what version of tempest is checked out?18:03
jgriffithsdague: Can't reproduce the failure on my True/False change and only thing I can think of is it hand't merged yet18:04
jgriffiths/hand/had/18:04
*** schwicht has joined #openstack-dev18:04
*** ayoung is now known as ayoung-vrooom18:05
*** anniec has joined #openstack-dev18:05
jgriffithsdague: https://review.openstack.org/#/c/47447/ is the patch I'm referring to BTW18:05
jgriffithhmmm... json version perhaps18:06
*** fbo_away is now known as fbo18:06
*** morganfainberg has quit IRC18:06
*** dubsquared has joined #openstack-dev18:07
*** morganfainberg has joined #openstack-dev18:07
*** morganfainberg has quit IRC18:07
sdaguejgriffith: it's latest tempest from git18:07
jgriffithsdague: well, I know just wondering if there's a marker in the logs to show commit ID (I didn't see one)18:08
*** mestery has joined #openstack-dev18:08
jgriffithsdague: I was hoping that it hadn't actually merged when the test was called, therefore causing the fail18:08
*** morganfainberg has joined #openstack-dev18:08
stevemarmorganfainberg hmm, run_tests are still failing with the same problem as before18:10
morganfainbergstevemar, hrm.  sec18:10
*** esheffield has quit IRC18:11
morganfainbergstevemar, try run_tests.sh -r18:11
morganfainbergoh huh18:11
*** nikhil has quit IRC18:11
morganfainbergthat is the default.18:11
sdaguejgriffith: not currently18:11
sdaguethat would be a good devstack thing18:11
jgriffithsdague: cool, thanks18:12
morganfainbergstevemar, i know tox -epy27 works ;)18:12
clarkbsdague: jgriffith: devstack-gate in setup workspace should tell you what was checked out and that should be logged18:12
morganfainbergstevemar, looking at it now.18:13
*** eharney has quit IRC18:13
dolphmmorganfainberg: pong18:14
mtreinishjgriffith: from http://logs.openstack.org/47/47447/1/check/gate-tempest-devstack-vm-full/3ffcf89/logs/devstack-gate-setup-workspace-new.txt.gz fcbca58 was the tempest head18:14
jgriffithmtreinish: ooo... nice!18:14
jgriffithmtreinish: thanks!18:14
stevemarmorganfainberg thx for lookin at it18:14
morganfainbergdolphm, https://bugs.launchpad.net/keystone/+bug/1227980 is haneef working on this?18:14
uvirtbotLaunchpad bug 1227980 in keystone "Pluggable auth provider:  Can't write a custom plugin due to hardcoded check" [Medium,Triaged]18:14
jgriffithmtreinish: as it turns out the problem is my tempest patch only addressed the XML version of the test, and not the json run :(18:14
dolphmmorganfainberg: not that i'm aware of18:15
morganfainbergdolphm, if so, i wont start getting it cleaned up.  if not, i'll go ahead and see about getting a fix in.18:15
mtreinishjgriffith: it's all on clarkb I didn't know what was in that log until he mentioned it18:15
jgriffithmtreinish: ;)18:15
*** vartom111 has joined #openstack-dev18:15
morganfainbergdolphm, ok. I'll start working on it then.  we're close.  :)  i think that is the only one that isn't in progress18:15
dolphmmorganfainberg: what's your approach?18:15
jgriffithmtreinish: clarkb thanks to both of you then18:15
mtreinishjgriffith: that's probably a first most people always forget xml and only take care of the json18:15
dolphmmorganfainberg: we are VERY close18:15
morganfainbergdolphm, haven't even looked at it yet.  i'll hit you up when i have a thought on the best approach18:15
morganfainbergbefore chasing any rabbitholes.18:16
dolphmgyee: bknudson: henrynash: simple cleanup for an RC blocker https://review.openstack.org/#/c/47514/18:16
morganfainbergdolphm, i think it should be pretty simple.18:16
*** eglynn has joined #openstack-dev18:16
dolphmmorganfainberg: bknudson and gyee can provide feedback there as well18:16
morganfainbergdolphm, nod.18:17
*** mlavalle has joined #openstack-dev18:17
mtreinishjgriffith: yeah I see that now looking at https://review.openstack.org/#/c/47460/18:17
*** melwitt has joined #openstack-dev18:18
mtreinishbut to be fair the json doesn't have that helper method because the json lib just makes it a bool18:18
al039i am trying to read through the source code of python-novaclient and other modules18:19
morganfainbergstevemar, run_tests is (so far) clean [fresh checkout]18:19
al039but it is so big and sphagetti like that i am getting lost18:19
dolphmstevemar: what's the problem with run tests?18:20
al039any tips to a newbie on how to approach reading the source code?18:20
morganfainbergdolphm, he was getting an error on conflict with default_project_id column18:20
stevemardolphm: Conflict occurred attempting to store user. table user has no column named default_project_id18:20
dolphmal039: depends on what your goal is?18:20
stevemarwhat he said18:20
morganfainbergstevemar, clean checkout, new VENV no issues.18:20
dolphmmorganfainberg: oh god i just got that too18:21
morganfainbergstevemar, i think you have some stale data somewhere.18:21
morganfainberg(still running to be fair)18:21
stevemardolphm, yay18:21
morganfainbergdolphm, i'm looking at it.18:21
gyeedolphm, looking, sorry I was afk18:21
dolphmstevemar: morganfainberg: http://pasteraw.com/bs6p3ifkytw9yql5j49s2m5ube4mpmi18:21
stevemardolphm: yup18:22
morganfainberg----------------------------------------------------------------------18:22
morganfainbergRan 1906 tests in 340.690s18:22
morganfainbergOK (SKIP=153)18:22
morganfainbergRunning flake8 ...18:22
morganfainbergtools/with_venv.sh flake8 --show-pep818:22
stevemardophm: thanks for showing me what i'm already looking at18:22
stevemarhehe18:22
morganfainbergno errors on a clean environment.18:22
dolphmmorganfainberg: there's not enough spam in there from migrate.versioning18:22
stevemarjust deleted my venv18:22
dolphmmorganfainberg: try running just keystone.tests.test_associate_project_endpoint_extension:AssociateEndpointProjectFilterCRUDTestCase.test_check_endpoint_project_assoc18:22
*** spzala has joined #openstack-dev18:22
stevemarre-running now18:22
henrynashdolphm: when you have a moment, wanted to just better understand your point in your review of list_role_assignments in https://review.openstack.org/#/c/46613/10/keystone/assignment/backends/sql.py18:23
morganfainbergdolphm, it just passed for me.  i think my DB is "correct" now.18:23
morganfainbergtrying clean again.18:24
*** roaet is now known as roaet-away18:24
bknudsonseems like it's pretty normal to treat the kwargs to list_ functions as filters18:24
dolphmhenrynash: sure -- instead of adding an optional parameter to the method, create a new method for that specific use case (it's just a new example of an existing bad habit in our drivers)18:24
stevemardolphm: morganfainberg, since we're msging each other anyway, can you guys take a look at: https://review.openstack.org/#/c/30043/18:25
*** xqueralt is now known as xqueralt-afk18:26
morganfainbergstevemar, dolphm, running off to a meeting be back in ~15 or so.18:26
dolphmmorganfainberg: o/18:26
dolphmstevemar: yep18:26
morganfainbergstevemar, still trying to chase down the error with run_tests.  just can't get it to error.18:26
henrynashdolphm: so your goal is a more "specific" driver interface (or maybe at least a driver manager interface), even if we might map those down onto common private methods within the driver itself?18:26
al039dolphm: I want to start contributing and fixing some bugs18:26
morganfainbergstevemar, and yes i'll look at it when i'm back.18:26
dolphmhenrynash: yes basically... get_metadata() is the worst offender ... looking at the method signature alone doesn't say much about it's intended behavior18:28
henrynashdolphm: ok, got it… and boy do I agree with you about metadata1118:28
dolphmhenrynash: in the example from your patch, it could be a method implemented innefficiently by the base driver, but could be radically improved by a proper assignments table18:29
dolphmhenrynash: and thus a better sql impl18:29
dolphmhenrynash: as you allude to in your comment there :)18:29
henrynashdolphm: agreed, given this approach, that is what I was planning…new path within the hour18:29
*** tstevenson has joined #openstack-dev18:29
bknudsonisn't the old function just going to call the new function? otherwise there's going to be a lot of duplicate code.18:30
dolphmhenrynash: thanks!18:31
dolphmbknudson: in henrynash's patch?18:31
*** adjohn has joined #openstack-dev18:31
dolphmbknudson: i was thinking the new method could wrap the existing method (just filter it's output to the specified role)18:31
bknudsondolphm: yes, wouldn't the new function just be this? https://review.openstack.org/#/c/46613/10/keystone/assignment/backends/sql.py18:31
bknudsondolphm: ah, that's another way to implement.18:32
elfelvinwould someone be please tell me why i cant authenticate with the API? newbee http://pastebin.com/nq7HguMm18:32
henrynashdolphm: agreed…while we still have the inefficient grant tables, we might as well filter in the Manager…a18:32
henrynashdolphm: and I'll add a comment that says when I implement the single assignment table in IceHouse, we'll want to push that method down into the driver18:33
*** xqueralt-afk is now known as xqueralt18:33
dolphmbknudson: it'd be more or less like this in the base Driver class (i think) http://pasteraw.com/bjkvqqz7bogpbayrc3ktngenlwsiq0o18:34
*** jdurgin has joined #openstack-dev18:34
*** amcrn has joined #openstack-dev18:35
bknudsondolphm: that looks good.18:35
dolphmelfelvin: hello! i'm looking at your paste trying to figure out what you're doing18:38
*** otherwiseguy has joined #openstack-dev18:38
dolphmelfelvin: i don't know the lib you're using at all, but it looks like you're *maybe* calling an administrative API (get endpoint?) against the public API (port 5000 by default) instead of the Admin API (port 35357 by default)18:39
dolphmelfelvin: OR, you should remove "/tokens" from your $endpoint value18:39
*** eharney has joined #openstack-dev18:39
*** sarob has joined #openstack-dev18:39
dolphmelfelvin: but either way, i'd guess that the $endpoint value is wrong18:40
*** sushils has quit IRC18:40
elfelvinive tried many variations of the endpoint18:40
elfelvinhow do i find the correct one ?18:41
elfelvinkeystone endpoint-list ?18:41
elfelvinthe documenation says "$endpoint = 'https://your-cloud-provider/path';"18:42
dolphmelfelvin: well, i don't know what the lib expects under the hood, but the python openstack tools would work with 'http://192.168.10.4:5000/v2.0/' or 'http://192.168.10.4:35357/v2.0/'18:42
*** adjohn has quit IRC18:42
elfelvinokay let me try with a trailing slash18:42
elfelvinhmm looks like a different error now, 'No endpoints for service type [compute], name [compute], region [RegionOne] and urlType [publicURL]'18:44
elfelvinso it looks like that may have been it18:44
*** sarob has quit IRC18:44
elfelvinthanks dolphm18:44
*** venkatesh has quit IRC18:45
dolphmelfelvin: awesome!18:46
*** novas0x2a|laptop has joined #openstack-dev18:47
dolphmelfelvin: what does your service-list look like?18:47
*** cthulhup_ has quit IRC18:49
*** CaptTofu has quit IRC18:49
dolphmelfelvin: better off pasting to pastbin and linking in the public channel, in case someone else spots something wrong / is able to help :)18:49
*** vipul is now known as vipul-away18:49
dolphmelfelvin: or we have http://paste.openstack.org/18:49
*** vipul-away is now known as vipul18:50
al039I am thinking of trying my hand to try to fix this bug https://bugs.launchpad.net/python-novaclient/+bug/110360118:50
uvirtbotLaunchpad bug 1103601 in python-novaclient "quota settings are ignored by nova" [Wishlist,Triaged]18:50
al039i think i have located the corresponding code in v1.1/shell.py18:50
*** ruhe has joined #openstack-dev18:51
*** martines has joined #openstack-dev18:51
elfelvinhttp://paste.openstack.org/show/47390/18:51
dolphmelfelvin: thanks18:51
al039but from there trying to figure out what to change - i need help with that18:51
*** ruhe has quit IRC18:51
*** Dr_Who has joined #openstack-dev18:52
dolphmelfelvin: so you definitely have a 'compute' service in 'RegionOne'18:52
*** lucasagomes has joined #openstack-dev18:53
dolphmelfelvin: are you sure you're specifying tenantId correctly? (what happens if you change tenantId to an invalid value? it should 401)18:53
dolphmelfelvin: if you don't specify tenant, you won't get a catalog back, and the client won't be able to discover nova18:53
*** lucas-dinner has quit IRC18:54
annegentlerosmaita: you were looking for how the markdown is built? Take a look at http://git.openstack.org/cgit/openstack-infra/config/tree/modules/jenkins/files/slave_scripts/markdown-docbook.sh18:56
dolphmal039: it sounds like you need to call keystoneclient's tenants.get(tenant_id_or_name) to figure out if the shell parameter is really a name or ID18:56
*** wchrisj has joined #openstack-dev18:56
dolphmal039: if it's an ID, you'll get the ref back from keystone there, if it's a name, it'll 40418:56
*** morganfainberg has quit IRC18:57
*** morganfainberg has joined #openstack-dev18:57
*** xga has joined #openstack-dev18:57
dolphmal039: i'm not really sure it makes sense for nova to handle tenant names there, though18:57
elfelvindolphm: tenantId as an invalid still returns "No endpoints for service type [compute]"18:58
dolphmal039: (i.e. i think you should be calling nova with an ID, not a name)18:58
*** devoid has joined #openstack-dev18:58
dolphmelfelvin: hmm, i'd be paranoid that just putting that as an attribute in the array of credentials is getting ignored or thrown away18:59
dolphmelfelvin: can you see what the actual request to keystone looks like on the wire?18:59
dolphmelfelvin: or in keystone's logs18:59
*** martine has joined #openstack-dev19:00
dolphmstevemar: left you a sort of complicated comment on the oauth patch, stab me if it's not clear19:00
*** martine is now known as Guest1678019:00
*** rushiagr has joined #openstack-dev19:00
elfelvindolphm: it does a POST to "POST http://192.168.10.4:5000/v2.0/tokens HTTP/1.0" even though i have http://192.168.10.4:5000/v2.0/ as my endpoint in the php script19:00
*** jbresnah has joined #openstack-dev19:00
dolphmstevemar: and your manager classes look like v2 managers instead of v3 managers19:01
dolphmelfelvin: what's the request body?19:01
dolphmelfelvin: (that part is good)19:01
elfelvinok let me do a capture quick19:01
*** Guest16780 is now known as martine_19:01
*** xga has quit IRC19:02
stevemardolphm: your inline comment wasn't that complicated, but what's up with the manager classes19:03
*** READ10 has quit IRC19:04
rushiagrwhat is the channel for tripleo? I am the lone one at #openstack-tripleo LOL19:04
dolphmstevemar: you're building request bodies and stuff instead of letting the v3 manager do all the fragile work19:04
elfelvindolphm: looks like it isnt passing the tenantId? http://pastebin.com/LUHx7jTp19:05
*** Dr_Who has quit IRC19:06
*** safchain has joined #openstack-dev19:08
stevemardolphm: you mean specifically the oauth token manager?19:08
elfelvindolphm: i think im meant to have "tenantName" and not "tenantId"19:08
dolphmstevemar: yes19:08
dolphmstevemar: both oauth managers?19:08
elfelvinlet me give that a go19:09
stevemardolphm: what's wrong with the consumer one?19:09
dolphmelfelvin: you'll have to use a different value (it looks like that's an ID)19:09
*** jbresnah has quit IRC19:09
dolphmelfelvin: the API supports both, so it's just a matter of which (or both) the lib supports19:09
*** sarob has joined #openstack-dev19:10
henrynashdolphm: patch posted19:10
dolphmhenrynash: link?19:10
henrynashdolphm: https://review.openstack.org/#/c/46613/19:11
dolphmstevemar: consumer one needs more work than the token manager (which is a bit necessarily complicated)19:11
dolphmstevemar: but most of the work you're doing there you'll get for free by using the same base manager as the other v3 managers19:11
*** READ10 has joined #openstack-dev19:11
*** dmakogon_ has joined #openstack-dev19:11
dolphmstevemar: all you really need to do is define the interface and maybe call getid() if appropriate19:12
elfelvindolphm: i get a better response now in the tcp capture, looks like its authing now http://pastebin.com/ZDaSnSXg19:12
*** adjohn has joined #openstack-dev19:13
*** radez is now known as radez_g0n319:14
dolphmelfelvin: that looks good! request and response are both correct, a service catalog is returned, so you should be able to get a 'compute' endpoing in 'RegionOne' out of that response19:15
dolphmelfelvin: ( http://192.168.10.4:8774/v2/4528bf4136b6400eb5ee6089bf8a9613 )19:15
*** nil1511 has joined #openstack-dev19:15
elfelvinyou a star dolphm, i will give it a go shortly19:16
dolphmelfelvin: just trying to help :)19:17
stevemardolphm: ahh i get ya19:17
stevemardolphm: you want to use the crudManager19:18
dolphmstevemar: yes! that's it19:18
dolphmstevemar: that wouldn't help much in TokenManager, right?19:18
dolphmstevemar: it's hardly doing CRUD work19:18
stevemardolphm: unfortunately, yes19:18
*** jprovazn has quit IRC19:19
*** vuil has joined #openstack-dev19:19
*** devoid has quit IRC19:20
*** devoid has joined #openstack-dev19:22
*** adjohn has quit IRC19:22
*** dstanek has quit IRC19:27
al039dolphm: the corresponding code (I think!) seems to be using tenant_id (not sure what the else is doing).. from python-novaclient/novaclient/v1_1/shell.py line 306819:27
al039def do_quota_show(cs, args):     """List the quotas for a tenant/user."""      if not args.tenant:         _quota_show(cs.quotas.get(cs.client.tenant_id, user_id=args.user))     else:         _quota_show(cs.quotas.get(args.tenant, user_id=args.user))19:27
*** tvb has quit IRC19:27
*** tvb has joined #openstack-dev19:28
*** tvb is now known as Guest4853619:28
*** nil1511 has quit IRC19:29
*** shinylasers has quit IRC19:29
*** salv-orlando has joined #openstack-dev19:30
*** shinylasers has joined #openstack-dev19:32
*** alop_ has joined #openstack-dev19:32
*** burt has joined #openstack-dev19:33
*** alop has quit IRC19:34
*** alop_ is now known as alop19:34
*** jbresnah has joined #openstack-dev19:34
*** sarob has quit IRC19:34
*** f13o has joined #openstack-dev19:36
*** neelashah has quit IRC19:37
*** romcheg_ has joined #openstack-dev19:38
rosmaitaannegentle: thanks!19:38
stevemardolphm: btw - for the problem that i brought up with tenantId/tenant_id earlier today19:40
*** mlavalle has quit IRC19:40
stevemardolphm: just run git clean -fdx, nuke everything. then the tests will pass19:40
*** dolphm has quit IRC19:41
*** READ10 has quit IRC19:45
*** shinylasers has quit IRC19:45
*** dstanek has joined #openstack-dev19:45
*** anniec has quit IRC19:45
*** clayb has quit IRC19:47
*** shinylasers has joined #openstack-dev19:47
*** shinylasers has quit IRC19:47
*** shinylasers has joined #openstack-dev19:48
*** yolanda has quit IRC19:48
*** israr has joined #openstack-dev19:49
*** israr has left #openstack-dev19:49
*** ayoung-vrooom is now known as ayoung19:50
*** ruhe has joined #openstack-dev19:52
*** esheffield has joined #openstack-dev19:53
*** dmakogon__ has joined #openstack-dev19:53
*** dmakogon_ has quit IRC19:53
*** dmakogon__ has quit IRC19:53
*** dmakogon_ has joined #openstack-dev19:53
*** Guest48536 is now known as tvb19:55
*** tvb has joined #openstack-dev19:55
*** chandankumar has quit IRC19:57
*** adjohn has joined #openstack-dev19:57
*** lucasagomes has quit IRC19:57
*** romcheg_ has quit IRC19:58
*** colinmcnamara has joined #openstack-dev19:59
*** sarob has joined #openstack-dev20:00
*** waa has quit IRC20:01
*** fbo is now known as fbo_away20:02
*** Max_ has joined #openstack-dev20:05
*** dolphm has joined #openstack-dev20:05
*** Max_ has quit IRC20:05
*** devoid has left #openstack-dev20:06
*** roaet-away is now known as roaet20:06
*** vartom111 has quit IRC20:06
*** jruzicka has quit IRC20:11
*** henrynash has quit IRC20:12
*** vipul is now known as vipul-away20:13
*** vipul-away is now known as vipul20:13
*** arezmerita has quit IRC20:13
*** arezmerita has joined #openstack-dev20:14
*** egallen has quit IRC20:18
*** ruhe has quit IRC20:19
al039hello colin20:19
al039ping20:19
*** dvarga has quit IRC20:21
*** dubsquared has quit IRC20:25
*** eddie has joined #openstack-dev20:26
*** eddie is now known as Guest1924920:27
*** boden has quit IRC20:27
morganfainberggyee / dolphm, https://bugs.launchpad.net/keystone/+bug/1227980 couldn't we just encase the check in if conf.signing.format is not None as well?  or just make conf.signing.token_format for havana override the provider config?20:27
uvirtbotLaunchpad bug 1227980 in keystone "Pluggable auth provider:  Can't write a custom plugin due to hardcoded check" [Medium,Triaged]20:27
morganfainberge.g. if you have a signing format, use the "known" options, otherwise just go with whatever the provider config uses.20:28
*** roaet is now known as roaet-away20:28
*** elfelvin has quit IRC20:28
dolphmmorganfainberg: you mean token_format?20:28
morganfainbergdolphm, yes20:28
morganfainbergsorry, token_format20:28
dolphmmorganfainberg: is it [signing] token_format?20:28
gyeewe are deprecating token_format20:28
morganfainbergaccording to the check, yes it is conf.signing.token_format20:29
morganfainberggyee, correct.20:29
gyeeso after IceHouse, we can just remove it. Workaround is don't set it to UUID or PKI for a custom provider20:29
dolphmgyee: i think that's a decent workaround for havana-3, but it needs to be better in rc120:30
*** dprince has quit IRC20:30
morganfainberggyee, wouldn't it make sense to just set the default to None and only use it if set for RC?20:30
*** SergeyLukjanov has quit IRC20:30
dolphmmorganfainberg: but what you just described sounds like what i recall is implemented -- the catch is if both are specified and they conflict20:30
gyeeor do as Haneef suggested, check for both token_format and default class20:31
dolphmmorganfainberg: so the difference would be, if provider is specified, then complete ignore token_format?20:31
morganfainbergdolphm, or vice-versa20:31
morganfainbergsince there is a default config for the provider20:31
dolphmmorganfainberg: you'd prefer the deprecated config option to take precedence?20:31
*** rushiagr has left #openstack-dev20:31
*** markwash has joined #openstack-dev20:31
dolphmmorganfainberg: in the event of a conflict20:31
gyeeif provider is not Keystone default provider, don't check token_format20:32
morganfainberggyee, that seems more correct20:32
dolphmgyee: you mean one of the default providers?20:32
gyeelets do this20:32
gyeedolphm, yes20:32
dolphmgyee: ++20:33
morganfainbergi like that.20:33
*** sandywalsh has quit IRC20:33
gyeemorganfainberg, you working on it or you want me to submit a patch20:33
*** salv-orlando has quit IRC20:33
morganfainberggyee, i just started, i can do it unless you want to20:33
*** salv-orlando has joined #openstack-dev20:33
morganfainberghaven't done any code work, it's a small patchset in either case and some simple tests20:33
morganfainberggyee, not sure how busy you are :)20:34
gyeemorganfainberg, lemme fix it, I am just getting back to Keystone20:34
morganfainberggyee, sounds good.20:34
gyeehave been working on "internal" projects the last few weeks20:34
morganfainberggyee, all yours then!20:34
gyeew00t!20:34
*** Max_ has joined #openstack-dev20:34
dolphmchmouel: o/ friendly reminder for https://review.openstack.org/#/c/45447/20:35
*** morganfainberg has quit IRC20:36
gyeemorganfainberg, wouldn't it be great if we get more than 24 hrs a day?20:36
*** morganfainberg has joined #openstack-dev20:37
*** sarob has quit IRC20:38
stevemargyee, why do you say such things20:38
*** sarob has joined #openstack-dev20:38
gyeestevemar, too much shit on my plate man20:38
stevemargyee, drop stuff to others, i hear dolphm has lots of time to code.20:39
stevemargyee, anything I can help out with?20:39
gyeestevemar, I wish, all internal projects, I am working 3 jobs :(20:39
stevemareek20:40
stevemargyee, then i'll let you be, good luck dude20:40
*** nikhil has joined #openstack-dev20:40
*** Max_ has quit IRC20:42
*** venkatesh has joined #openstack-dev20:42
*** sarob has quit IRC20:42
*** roaet-away is now known as roaet20:43
morganfainbergstevemar, going to look at your python-keystoneclient review here in a couple mins20:43
morganfainbergstevemar, anything specific i should be looking at or just the whole thing?20:44
*** colinmcnamara has quit IRC20:45
*** sandywalsh has joined #openstack-dev20:45
*** KurtMartin is now known as kmartin20:45
*** networkstatic has joined #openstack-dev20:48
stevemarmorganfainberg the whole shabang20:48
morganfainbergstevemar, ok cool20:48
stevemarmorganfainberg, just uploaded a new patch to address dolphs concerns20:48
*** hemanth has joined #openstack-dev20:48
morganfainbergi'm reading dolphs comment before i start20:48
stevemarmorganfainberg, umm, make sure my tests are kosher, the oauth specific headers are not getting testing. I had tested them before the httpretty migration20:49
morganfainbergstevemar, i shall do my best, but i also want jamielennox's input before this merges.20:50
stevemarmorganfainberg, of course20:50
stevemarmorganfainberg, he is the client king20:50
morganfainbergstevemar, we need to make a crown for him then ;)20:50
*** Jon___ has joined #openstack-dev20:50
*** dolphm has quit IRC20:52
*** shakayumi has joined #openstack-dev20:52
morganfainbergstevemar, https://review.openstack.org/#/c/30043/35/keystoneclient/v3/contrib/oauth1/__init__.py did you need the noqa lines?  not sure which hacking check that would be in violation on20:52
morganfainbergof*20:52
morganfainbergyou're importing modules.20:52
stevemarmorganfainberg, it wasn't passing in my env20:53
*** shakayumi has quit IRC20:53
morganfainbergstevemar, fair enough.20:53
*** dsirrine_ has joined #openstack-dev20:54
*** dmakogon_ has left #openstack-dev20:54
*** tmclaugh[work] has quit IRC20:54
*** dims has joined #openstack-dev20:55
*** dsirrine has quit IRC20:56
*** wchrisj has quit IRC20:57
*** amotoki has joined #openstack-dev21:01
*** markmcclain1 has quit IRC21:03
*** markmcclain has joined #openstack-dev21:03
*** martine_ has quit IRC21:05
*** dolphm has joined #openstack-dev21:05
*** alunduil has quit IRC21:06
*** stevemar has quit IRC21:06
*** maheshp has quit IRC21:07
*** Dr_Who has joined #openstack-dev21:07
*** Dr_Who has joined #openstack-dev21:07
*** maheshp has joined #openstack-dev21:08
*** Dr_Who has quit IRC21:08
*** neelashah has joined #openstack-dev21:08
*** sarob has joined #openstack-dev21:09
*** Jon___ has quit IRC21:11
*** Jon___ has joined #openstack-dev21:12
*** sarob has quit IRC21:13
*** venkatesh has quit IRC21:14
dolphmmorganfainberg: this is finally +1'd by jenkins https://review.openstack.org/#/c/46123/21:14
*** jb__ has quit IRC21:14
*** sgordon has quit IRC21:15
*** jb__ has joined #openstack-dev21:16
*** lifeless has quit IRC21:17
*** emagana has joined #openstack-dev21:17
morganfainbergdolphm, ah did it need a rebase?21:18
*** thomasm has quit IRC21:18
dolphmmorganfainberg: it was blocked by the change to tempest and oslo21:18
morganfainbergdolphm, yeah i chased the tempest stuff earlier (a couple days ago)21:18
dolphmmorganfainberg: the change to oslo looks to be hand copied into this patch :(21:18
*** lifeless has joined #openstack-dev21:19
morganfainbergdolphm, it is, i think oslo hadn't accepted it yet? haven't seen the status of that changeset21:19
dolphmmorganfainberg: not sure - i've seen the patch, but it's not tracked against either of the bugs referenced here21:19
*** tmckay has quit IRC21:19
morganfainberghrm.21:19
dolphmmorganfainberg: i know he hasn't used oslo's sync before, so we can probably help there21:19
*** roampune has joined #openstack-dev21:20
*** kpavel has quit IRC21:20
*** xqueralt is now known as xqueralt-afk21:22
*** kbringard has quit IRC21:24
*** lifeless has quit IRC21:25
*** bswartz has quit IRC21:29
ayoungbknudson, lbragstad morganfainberg, please have a look at https://review.openstack.org/#/c/46363/2  you all oked a patch that depends on this one21:29
bknudsonayoung: I wrote 4636321:29
ayoungbknudson, yeah, good point21:30
*** spzala has quit IRC21:30
ayoungI guess we shhould both +2 to start21:30
lbragstadayoung: looking21:31
*** xqueralt-afk is now known as xqueralt21:31
*** venkatesh has joined #openstack-dev21:31
*** sarob has joined #openstack-dev21:31
*** boris-42 has quit IRC21:31
*** kui has joined #openstack-dev21:35
*** boris-42 has joined #openstack-dev21:38
*** dkranz has quit IRC21:40
*** READ10 has joined #openstack-dev21:41
kuiWhen I test novaclient in py33 env ( running tox -epy33), I got error:  "db type could not be determined",  I got few info from log.  Is there any suggestion/clue ?21:41
*** pcm_ has quit IRC21:44
*** mfer has joined #openstack-dev21:44
*** mfer has quit IRC21:44
clarkbkui: I think the py33 stuff is still very new, experimental and there to help draw attention to the fact that those tests fail21:45
*** dolphm has quit IRC21:47
*** lifeless has joined #openstack-dev21:47
*** galstrom is now known as galstrom_zzz21:49
kuiclarkb: I want to verify a test case under py33.   I have tried to "source .tox/py33/bin/activate", then run the test, it still emitted the same error.   It seems that some package is not install properly for venv in py33.21:49
clarkbkui: right, I don'y think novaclient works under py33 yet21:50
*** dolphm has joined #openstack-dev21:54
kuiclarkb: yes, jenkins always fails for py33 in novaclient.  But, at least, the build machine of jenkins can run test in py33.  Actually I am trying to fix some of the failed tests in py33, before that, the py33 env should be ready on my host, just like jenkins.21:54
*** stevemar has joined #openstack-dev21:55
*** boris-42 has quit IRC21:55
*** CaptTofu has joined #openstack-dev21:55
dhellmannmordred: ping?21:57
*** jvrbanac has quit IRC21:59
*** alop has quit IRC21:59
*** stevemar has quit IRC22:01
mordreddhellmann: ola!22:02
mordredkui: it's a testr issue22:02
dhellmannmordred: how does pbr handle python-version-specific requirements like argparse and ordereddict?22:02
mordredkui: do "rm -rf .testrepositrory" and re-run22:02
mordredkui: testr currently has problems when you switch between python verisons22:03
mordredlifeless: ^^ I believe you know about this already22:03
lifelessyes22:03
lifelessincompatible db format for python's db lib22:03
*** sarob has quit IRC22:04
mordreddhellmann: you don't want to know the answer22:04
*** xqueralt is now known as xqueralt-afk22:04
* dhellmann braces himself22:04
mordreddhellmann: right now, there is a hardcoded list of package sin pbr for whom the upstream packagers should be shot22:04
lifeless.testrepository/times.db is the file to remove22:04
mordreddhellmann: pbr/packaging.py:BROKEN_ON_27 = ('argparse', 'importlib')22:04
*** sarob has joined #openstack-dev22:04
*** stevemar-droid has joined #openstack-dev22:04
dhellmannhahahahahahaha22:04
dhellmannmordred: ok, well, that's something22:04
mordreddhellmann: it is, of course, possible for hte upstream author of such a package to make installing it a no-op on 2.622:04
mordredbut, well, they don't22:05
*** mrda has joined #openstack-dev22:05
dhellmannmordred: I'm going to recommend that netflix look at pbr instead of what they're doing now: https://github.com/Netflix/aminator/issues/14722:05
mordreddhellmann: more complexly, it is possible to write a custom per-project setup hook to process your list22:05
*** burt has quit IRC22:05
mordreddhellmann: yes. let me know if they need any help22:05
mordreddhellmann: also, the early error there is the transient setuptools upgrade error22:05
dhellmannyeah22:06
dhellmannthey're still using distribute, so that's the first fix22:06
*** stevemar-droid has quit IRC22:06
mordredwel, they should not be depending on it at least22:06
* mordred submits pr22:06
dhellmannI'm working on one, now, what change are you suggesting?22:06
dhellmannoh, depending on distribute22:07
*** neelashah has quit IRC22:07
kuimordred, lifeless:  I remove the file .testrepository/time.dbm, the py33 test can work.  Thanks :)22:07
dhellmannmordred: I think I've got it22:07
*** egallen has joined #openstack-dev22:08
*** lbragstad has quit IRC22:08
*** sarob has quit IRC22:09
mordreddhellmann: https://github.com/Netflix/aminator/pull/14922:09
lifelesskui: I don't think there is a specific bug about it, and I'm not entirely sure what I can do to fix it, but you are welcome to file a bug if you want.22:09
dhellmannmordred: https://github.com/Netflix/aminator/pull/14822:09
dhellmannhaha22:09
mordreddamn. you beat me22:09
*** eharney has quit IRC22:09
mordreddhellmann: we each missed something22:10
*** galstrom_zzz is now known as galstrom22:10
dhellmannmordred: :(22:11
mordreddhellmann: you should delete distribute_setup.py22:11
mordreddhellmann: I'll abandon mine22:11
*** jhesketh has joined #openstack-dev22:11
*** dosaboy has quit IRC22:12
dhellmannmordred: amended. It will be interesting to see what cloudbees does with an amended pull request.22:12
*** changbl has quit IRC22:13
kuilifeless: In my case, I run "tox -epy27", then run "tox -epy33", the problem can be reproduced.22:13
mordreddhellmann: if it can't handle that, it's TERRIBLE22:13
dhellmannhttps://netflixoss.ci.cloudbees.com/job/aminator-pull-requests/119/console22:13
dhellmannit can't22:13
lifelesskui: I know22:13
mordreddhellmann: wow.22:13
lifelesskui: my previous statement still applies :)22:13
*** dosaboy has joined #openstack-dev22:14
kuilifeless: where should I open a bug to track it ?   which project should it belong to ?22:14
lifelesshttps://bugs.launchpad.net/testrepository22:14
*** dolphm has quit IRC22:14
*** amotoki has quit IRC22:14
mordreddhellmann: wow. they just have a jenkins job that makes and pushes to naively named branches22:14
mordreddhellmann: how are they selling that as a service?22:15
kuilifeless: I will file one to track it.  :)22:15
dhellmannmordred: if they weren't an amazon customer, I'd offer to help them ;-)22:15
*** safchain has quit IRC22:17
*** tvb has quit IRC22:18
*** vipul is now known as vipul-away22:20
dhellmannmordred: oh, wow, I thought cloudbees was a netflix thing, I didn't realize that was a paid service22:20
*** armax has left #openstack-dev22:20
*** vipul-away is now known as vipul22:22
*** otherwiseguy has quit IRC22:23
*** dstanek has quit IRC22:23
kui lifeless: testr bug is filed for db issue:  https://bugs.launchpad.net/testrepository/+bug/122944522:23
uvirtbotLaunchpad bug 1229445 in testrepository "db type could not be determined" [Undecided,New]22:23
*** adalbas has quit IRC22:25
al039in python-novaclient shell.py we have OpenStackComputeShell().main(map(strutils.safe_decode, sys.argv[1:]))22:25
al039in the OpenStackComputeShell class though I have only def main(self, argv):22:25
al039why do I need self when declaring main22:25
*** bknudson has left #openstack-dev22:27
*** FunnyLookinHat has quit IRC22:27
*** venkatesh has quit IRC22:28
*** networkstatic has quit IRC22:29
*** openstack has joined #openstack-dev22:32
*** alunduil has joined #openstack-dev22:34
*** radsy has joined #openstack-dev22:36
*** gimps__ has joined #openstack-dev22:36
*** rackerjoe has quit IRC22:37
*** shakayumi has quit IRC22:38
*** galstrom is now known as galstrom_zzz22:38
*** rcleere has quit IRC22:39
*** rcleere has joined #openstack-dev22:39
*** rackerjoe has joined #openstack-dev22:39
*** sheeprine has quit IRC22:42
*** thedodd has quit IRC22:43
*** dims has quit IRC22:43
*** rcleere has quit IRC22:43
*** egallen has quit IRC22:45
*** rackerjoe has quit IRC22:47
*** rackerjoe has joined #openstack-dev22:48
*** egallen has joined #openstack-dev22:49
*** cthulhup has joined #openstack-dev22:50
*** vipul is now known as vipul-away22:51
*** datsun180b has quit IRC22:51
*** jbresnah_ has joined #openstack-dev22:52
*** egallen has quit IRC22:53
*** jasdeepH has joined #openstack-dev22:54
*** cthulhup has quit IRC22:54
*** jbresnah has quit IRC22:56
al039i wish there was a lxrc for openstack code22:57
*** sheeprine has joined #openstack-dev22:58
*** sheeprine has joined #openstack-dev22:58
al039sorry lxr22:58
*** dims has joined #openstack-dev23:00
*** markwash has quit IRC23:00
*** vipul-away is now known as vipul23:01
*** jayg is now known as jayg|g0n323:01
*** radsy has quit IRC23:05
*** jbresnah_ is now known as jbresnah23:06
*** edmund has quit IRC23:13
*** sheeprine has quit IRC23:13
*** mmoya has quit IRC23:14
*** rnirmal has quit IRC23:15
*** anniec has joined #openstack-dev23:17
*** bswartz has joined #openstack-dev23:17
*** adjohn has quit IRC23:17
*** mmoya has joined #openstack-dev23:20
*** sheeprine has joined #openstack-dev23:21
*** thomasm has joined #openstack-dev23:21
*** changbl has joined #openstack-dev23:22
*** gmurphy__ has quit IRC23:23
*** hemna is now known as hemnafk23:24
*** sheeprine has quit IRC23:25
*** networkstatic has joined #openstack-dev23:27
*** gmurphy has joined #openstack-dev23:28
*** tvb has joined #openstack-dev23:29
*** tvb is now known as Guest3162423:29
*** noorul` has joined #openstack-dev23:29
*** noorul has quit IRC23:32
*** Guest31624 has quit IRC23:33
*** salv-orlando has quit IRC23:33
*** sheeprine has joined #openstack-dev23:34
*** sheeprine has joined #openstack-dev23:34
*** kui has quit IRC23:34
*** gyee has quit IRC23:34
*** rfolco has quit IRC23:35
*** zbitter has quit IRC23:38
*** carl_baldwin has quit IRC23:38
*** kbrierly has quit IRC23:38
*** zbitter has joined #openstack-dev23:40
*** mrodden has quit IRC23:41
*** sheeprine has quit IRC23:43
*** f13o has quit IRC23:44
*** sthaha has joined #openstack-dev23:46
*** sthaha has quit IRC23:46
*** sthaha has joined #openstack-dev23:46
*** mrda has quit IRC23:47
*** arosen has quit IRC23:47
*** venkatesh has joined #openstack-dev23:47
*** shinylasers has quit IRC23:48
*** thomasm has quit IRC23:48
*** arosen has joined #openstack-dev23:50
*** matsuhashi has joined #openstack-dev23:50
*** adjohn has joined #openstack-dev23:50
*** venkatesh has quit IRC23:50
*** mrodden has joined #openstack-dev23:52
*** mrodden1 has joined #openstack-dev23:54
*** galstrom_zzz is now known as galstrom23:54
*** bknudson has joined #openstack-dev23:54
*** dkranz has joined #openstack-dev23:54
*** JonnyNomad has quit IRC23:56
*** mrodden has quit IRC23:57
*** sarob has joined #openstack-dev23:57
*** pcm_ has joined #openstack-dev23:58
*** pcm_ has quit IRC23:58
*** sarob_ has joined #openstack-dev23:59
*** Ryan_Lane has quit IRC23:59
*** pcm_ has joined #openstack-dev23:59
*** Ryan_Lane1 has joined #openstack-dev23:59
*** Ryan_Lane1 is now known as Ryan_Lane23:59
*** Ryan_Lane has joined #openstack-dev23:59
*** pmathews has quit IRC23:59

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