Wednesday, 2016-05-04

jamielennoxbknudson, stevemar, @here: so the change to add is_admin_project to all tokens, not just is_admin_project=true - can i get away with a bug for that?00:03
openstackgerritMerged openstack/keystone: Make all fixture project_ids into uuids  https://review.openstack.org/30668100:03
jamielennoxseems trivial for a spec, but it could be considered api00:03
bknudsondoes the API spec need to change?00:04
bknudsona bug would help explain what problem it's causing.00:04
jamielennoxbknudson: it's only referenced in the token option attributes, and doesn't say that it is only set true00:06
jamielennoxso it would be more clarifying it to say that would be always set00:06
jamielennoxbut my reading doesn't indicate i would need to update anything there00:07
bknudsonit's in the "Optional asttributes" section, so it should be moved to the "Required attributes" setion00:07
jamielennoxcan it be required when it's only introduced in a later api version?00:07
bknudsonI guess the spec should say it's required in 3.7 and optional in 3.6 ?00:09
*** amrith is now known as _amrith_00:09
bknudsonI'd expect it to still be moved to required, and say it was optional in 3.600:10
jamielennoxok, but still seems like i can do that without a spec00:10
bknudsona spec seems like overkill to me.00:11
jamielennoxbknudson: me too, but i thought i'd check with others00:12
*** markvoelker has joined #openstack-keystone00:14
jamielennoxbknudson: filed bug 157799600:21
openstackbug 1577996 in OpenStack Identity (keystone) "Unable to distinguish between not is_admin_project and feature not enabled" [Undecided,New] https://launchpad.net/bugs/157799600:21
jamielennoxayoung: ^00:21
ayoungjamielennox, its a feature00:22
jamielennoxthere is a question there about adding it to every token, or adding False when admin project is not defined00:22
jamielennoxayoung: everything is00:22
ayoungjamielennox, so, did you catch the hack to fix that we discussed at the summit?  Essentially what you wrote there, but...00:23
ayoungif the feature is not enabled, we put it in the token IFF the user requests an admin_token00:23
ayounger00:23
ayounga token with admin_role in it00:23
ayoungso...yeah, its on my roadmap00:23
*** pgbridge has joined #openstack-keystone00:24
ayoungjamielennox, does not need to be in the token, though.00:24
*** _amrith_ is now known as amrith00:24
jamielennoxayoung: yea, that was in my policy discussion and what i was going for with the bug00:24
ayoungjamielennox, cool.  I just grabbed it,  assuming you wrote it for me.00:25
jamielennoxi'm happy to fix this one00:25
jamielennoxoh, depends on speed, i was going to do a quick version now00:25
jamielennoxcause i'm thinking i'll need a new cross project spec to fix policy for projects to use it00:25
jamielennoxi was just giving you the heads up because we discussed it00:26
*** roxanaghe has quit IRC00:30
*** rderose has quit IRC00:50
*** dan_nguyen has quit IRC00:53
openstackgerritBrant Knudson proposed openstack/keystone: Revert "Revert "Unit test for checking cross-version migrations compatibility""  https://review.openstack.org/31058900:56
*** amrith is now known as _amrith_00:59
*** csoukup has joined #openstack-keystone01:04
*** csoukup has quit IRC01:08
*** dan_nguyen has joined #openstack-keystone01:10
*** sdake has quit IRC01:13
jamielennoxayoung: ping - are you taking it, i was going to fix it but i don't want to repeat the work if you are doing ti01:13
ayoungjamielennox, take it01:14
jamielennoxcool01:14
ayoungits yours, assuming you are going with the solution I just wrote01:14
ayoungif tyou are doing something else, please let me know about it first01:14
ayoungjamielennox, I was going to modify things right here http://git.openstack.org/cgit/openstack/keystone/tree/keystone/token/providers/common.py#n27501:16
ayoungsomething like:01:16
ayoungelse: if 'admin' in roles: token_data['is_admin_project'] = True01:16
ayoungand move the check http://git.openstack.org/cgit/openstack/keystone/tree/keystone/token/providers/common.py#n52201:17
ayoungjamielennox, make sense, or do you have something else planned?01:17
jamielennoxi don't want to explicitly check admin role - i don't think we need to01:17
*** vkmc is now known as Guest987401:20
*** Guest9874 is now known as cmkv01:22
*** cmkv is now known as violenciarivas01:22
*** violenciarivas is now known as vkmc01:23
*** EinstCrazy has joined #openstack-keystone01:24
*** dan_nguyen has quit IRC01:24
ayoungjamielennox, just put it in all tokens?  That would actually work01:27
jamielennoxyea, that was the plan01:27
jamielennoxstill testing that i haven't done anything silly but basically: http://paste.openstack.org/show/496022/01:28
*** EinstCrazy has quit IRC01:28
*** EinstCrazy has joined #openstack-keystone01:29
*** EinstCrazy has quit IRC01:29
*** EinstCrazy has joined #openstack-keystone01:30
jamielennoxit's probably not a backport candidate - but it's a shame because it essentially means that is_admin_project isn't useful in this release01:32
*** EinstCra_ has joined #openstack-keystone01:32
*** EinstCrazy has quit IRC01:33
ayoungjamielennox, change line 277 to01:33
ayoungtoken_data['is_admin_project'] = True01:33
*** EinstCrazy has joined #openstack-keystone01:33
ayoungif the feature is not enabled, always add that to a token01:33
ayoungthat is, essentially what we have now01:33
*** wxy has joined #openstack-keystone01:33
jamielennoxayoung: that was the choice i was talking about in the bug, i don't mind which way we go on that01:33
ayoungjamielennox, what is the other choice?01:34
jamielennoxbecause the policy check is going to have to be token.get(is_admin_project, True) for backwards compatibility01:34
jamielennoxso so long as we have = False in there setting true doesn't matter that much01:34
ayoungI'm pretty sure that missing is OK01:35
jamielennoxhaving empty in the token can be used to indicate this feature not being used in the cloud, which i don't know if it matters we leak that anyway as it's easy to guess01:35
ayoungjamielennox, grab this review and test with it: https://review.openstack.org/#/c/257636/01:36
patchbotayoung: patch 257636 - keystone - Add is_admin_project check to policy.json01:36
jamielennoxayoung: what's adding is_admin_project to the context there01:37
jamielennoxi was thinking because of the unusual default i would want to add an is_admin_project check to oslo.policy01:37
*** EinstCra_ has quit IRC01:37
ayoungjamielennox, getting it right out of the token itself works01:37
ayoungwe do the same thing in cloudsample01:37
ayounghttp://git.openstack.org/cgit/openstack/keystone/tree/etc/policy.v3cloudsample.json#n301:38
jamielennoxyea, works for keystone because we dump the entire token into policy enforcement, not true for other services01:38
ayoungwe have a test that shows it works...01:38
jamielennoxso (not knowing enough of the internals) how will that work if Is_admin_token is not present in the token?01:38
ayoungjamielennox, you sure?  I thought I checked that.01:39
ayoungI had a context patch but killed it01:39
*** EinstCrazy has quit IRC01:39
* ayoung can pull it back up01:39
jamielennoxi have some work to do in oslo.context to add it there as well01:39
jamielennoxand then get all services using it01:39
ayoungjamielennox, https://review.openstack.org/#/c/295870/01:39
patchbotayoung: patch 295870 - oslo.context - Add is_admin_project check (ABANDONED)01:39
jamielennoxbecause, ugh01:39
ayoungjamielennox, should I restore that?01:40
jamielennoxayoung: so not exactly as is, i would like to add it to the from_environ check01:41
*** EinstCrazy has joined #openstack-keystone01:41
jamielennoxwhich would probably mean passing the flag down out of auth_token middleware01:41
ayoungjamielennox, I'll restore and you can take it from there01:41
jamielennoxi don't want to have every service have to figure out what to pass to __init__ there01:41
ayoungjamielennox, yep, see bknudson 's comment, too01:42
ayoungregardless, the change can go into Keystone to start.01:42
jamielennoxyea, i don't think we do oslo.context correctly anyway01:43
*** ozialien10 has joined #openstack-keystone01:46
*** ozialien10 has quit IRC01:46
*** ozialien10 has joined #openstack-keystone01:47
ayoungjamielennox, oslo config question. I want to make the api, the scheduler, the conductor services and  compute node to each read a different Rabbit user out of the Nova config file(s). Are there any tools to make that somewhat easy?01:47
jamielennoxumm01:49
jamielennoxayoung: not afaik if they are reading from the same actual file01:49
ayoungjamielennox, they are in devstack, and whenever co-located01:49
ayoungis there support for includes?01:50
jamielennoxbut those are very different services and the easiest thing to do is probably create a new config file for each service like glance does01:50
ayoungyeah, but they share a huge portion of the config file, I think01:50
jamielennoxi think there is some support for conf directories, but i'm not sure01:50
ayoungI really don't want to rework Nova's config file01:50
jamielennoxayoung: which is a problem for devstack but not your average config mgmt system01:50
ayoungNova core hates me.01:50
ayoungI mean, they hate everyone, but that includes me01:51
jamielennoxayoung: but apparently they had enough people complain about it last week that they are going to do it anyway01:51
ayoungreally?01:51
jamielennoxi'm told at least the vendordata extension has been undeprecated01:51
jamielennoxand i'm sure they will do it there own way, but it might get here01:51
jamielennoxthere01:51
*** dan_nguyen has joined #openstack-keystone01:51
*** pgbridge has quit IRC01:54
ayoungvendordata is for metatdata I thought?01:57
jamielennoxi'm not sure, i just know that someone in that session complained they were using it for something like this but it got deprecated01:57
ayoungCONF(default_config_files=['app.conf', 'mything.conf'])01:58
ayoungSo I could do somethuing like01:58
jamielennoxi still think you should do it the  metadata way for now though01:58
ayoungCONF(default_config_files=['conductor.conf', 'nova.conf'])01:58
ayoungmetadata fro Rabbit?01:58
ayoungor are you tallking about autoenroll01:58
jamielennoxno i mean the instance users still01:58
ayoungcuz on autoenroll I am withh oyou01:58
ayoungOK01:58
jamielennoxso to change CONF for rabbit you would need to change code in all your projects01:59
*** EinstCrazy has quit IRC01:59
jamielennoxactually no01:59
jamielennoxyou can probably pass --config-file multiple times to the service start01:59
jamielennoxi think that's how the packages managed to have distro config in /usr/share02:00
ayoungand then each gets a common and a rabbit specific file name.02:00
*** EinstCrazy has joined #openstack-keystone02:00
ayoungyeah, we do something horrible like that in the Keystone RPM02:00
jamielennoxall the services i think02:00
jamielennoxbecause it sometimes means the defaults are not the same as upstream which is blah02:00
*** EinstCra_ has joined #openstack-keystone02:04
ayoung dirname = env.get('OS_KEYSTONE_CONFIG_DIR', '').strip()02:08
*** woodster_ has quit IRC02:08
*** EinstCrazy has quit IRC02:08
*** jaosorior has joined #openstack-keystone02:09
*** gyee has quit IRC02:12
*** fangxu has quit IRC02:19
*** EinstCra_ has quit IRC02:22
harborhi, I know this isn't directly keystone related but there seem to be enough people about who might know the answer :) I'm using ipsilon to authenticate with keystone via federation - and want to map user groups from FreeIPA to keystone user groups - I'm getting everything I need from Ipsilon but in the wrong format : MELLON_group_X etc. but i need a single Var with all the groups in - I've tried a few approche02:27
harbors but seem to be hitting a brick wall?02:27
*** dan_nguyen has quit IRC02:37
*** EinstCrazy has joined #openstack-keystone02:44
*** EinstCrazy has quit IRC02:45
*** markvoelker has quit IRC02:52
*** ozialien10 has quit IRC02:52
*** ozialien10 has joined #openstack-keystone02:52
*** akscram has quit IRC02:54
*** akscram has joined #openstack-keystone02:54
*** EinstCrazy has joined #openstack-keystone02:57
*** EinstCrazy has quit IRC02:58
*** EinstCrazy has joined #openstack-keystone03:00
*** lhcheng has joined #openstack-keystone03:01
*** ChanServ sets mode: +v lhcheng03:01
*** EinstCrazy has quit IRC03:01
*** EinstCrazy has joined #openstack-keystone03:03
*** EinstCrazy has quit IRC03:07
*** EinstCrazy has joined #openstack-keystone03:09
*** dave-mccowan has quit IRC03:10
*** EinstCra_ has joined #openstack-keystone03:12
*** EinstCra_ has quit IRC03:15
*** EinstCrazy has quit IRC03:15
*** EinstCrazy has joined #openstack-keystone03:18
*** wanghua has joined #openstack-keystone03:18
*** EinstCra_ has joined #openstack-keystone03:23
*** EinstCrazy has quit IRC03:23
*** jamielennox is now known as jamielennox|away03:28
*** dan_nguyen has joined #openstack-keystone03:35
*** jamielennox|away is now known as jamielennox03:37
harborturned out it was as easy as adding "MellonMergeEnvVars On" to my wsgi-keystone.conf :)03:43
*** jaosorior has quit IRC03:51
*** markvoelker has joined #openstack-keystone03:52
*** markvoelker has quit IRC03:57
*** e0ne has joined #openstack-keystone03:59
*** dan_nguyen has quit IRC04:00
*** e0ne has quit IRC04:01
*** e0ne has joined #openstack-keystone04:02
*** EinstCra_ has quit IRC04:03
*** EinstCrazy has joined #openstack-keystone04:04
*** e0ne has quit IRC04:05
*** EinstCrazy has quit IRC04:05
*** jaosorior has joined #openstack-keystone04:06
*** richm has quit IRC04:06
*** EinstCrazy has joined #openstack-keystone04:08
*** EinstCrazy has quit IRC04:09
*** EinstCrazy has joined #openstack-keystone04:10
*** EinstCrazy has quit IRC04:10
*** EinstCrazy has joined #openstack-keystone04:12
*** EinstCrazy has quit IRC04:13
*** EinstCrazy has joined #openstack-keystone04:14
*** EinstCrazy has quit IRC04:14
*** EinstCrazy has joined #openstack-keystone04:15
*** EinstCrazy has quit IRC04:15
*** EinstCrazy has joined #openstack-keystone04:16
*** EinstCrazy has quit IRC04:16
*** EinstCrazy has joined #openstack-keystone04:17
*** EinstCrazy has quit IRC04:19
*** EinstCrazy has joined #openstack-keystone04:21
*** EinstCra_ has joined #openstack-keystone04:22
*** EinstCrazy has quit IRC04:22
*** EinstCra_ has quit IRC04:22
*** EinstCrazy has joined #openstack-keystone04:24
*** EinstCrazy has quit IRC04:24
*** links has joined #openstack-keystone04:25
*** EinstCra_ has joined #openstack-keystone04:27
*** EinstCra_ has quit IRC04:28
*** hoonetorg has quit IRC04:32
*** EinstCrazy has joined #openstack-keystone04:32
*** EinstCrazy has quit IRC04:33
*** hoonetorg has joined #openstack-keystone04:33
openstackgerritJamie Lennox proposed openstack/keystone: Always add is_admin_project if admin project defined  https://review.openstack.org/31232304:37
*** EinstCra_ has joined #openstack-keystone04:37
*** EinstCra_ has quit IRC04:38
*** EinstCra_ has joined #openstack-keystone04:38
*** EinstCra_ has quit IRC04:38
*** josecastroleon has joined #openstack-keystone04:43
*** EinstCrazy has joined #openstack-keystone04:43
*** EinstCrazy has quit IRC04:44
*** amit213 has quit IRC04:44
*** EinstCrazy has joined #openstack-keystone04:45
*** EinstCrazy has quit IRC04:45
*** EinstCrazy has joined #openstack-keystone04:46
*** EinstCrazy has quit IRC04:46
*** EinstCrazy has joined #openstack-keystone04:46
*** EinstCra_ has joined #openstack-keystone04:49
*** EinstCrazy has quit IRC04:50
*** EinstCra_ has quit IRC04:53
*** EinstCrazy has joined #openstack-keystone04:58
*** EinstCrazy has quit IRC04:58
*** EinstCrazy has joined #openstack-keystone04:58
*** furface has quit IRC04:59
*** EinstCrazy has quit IRC04:59
*** furface has joined #openstack-keystone05:02
morgani think we have an issue with our migrations.05:02
*** EinstCrazy has joined #openstack-keystone05:05
*** EinstCrazy has quit IRC05:06
stevemarmorgan: ?05:07
*** EinstCrazy has joined #openstack-keystone05:07
morganstevemar: nope, nvm ... 16.04 changed defaults breaks sql-alchemy-migrate out of the box :(05:07
*** EinstCrazy has quit IRC05:07
*** hoonetorg has quit IRC05:07
*** EinstCrazy has joined #openstack-keystone05:07
stevemarmorgan: weird, devstack ran fine with my 16.0405:07
morganstevemar: Specified key was too long; max key length is 767 bytes') [SQL: u'\nCREATE TABLE migrate_version (\n\trepository_id VARCHAR(250) NOT NULL, \n\trepository_path TEXT, \n\tversion INTEGER, \n\tPRIMARY KEY (repository_id)\n)\n\n05:08
morganstevemar: oh wait... mariadb vs mysql05:14
morganstevemar: yep. mariadb is all sorts of wonky05:15
morganby default05:15
*** ramishra has joined #openstack-keystone05:15
stevemarmorgan: i wonder if it worked before mitaka05:16
morganstevemar: i think 16.04 changed things05:16
morganso ... likely not with xenial05:16
*** yolanda has joined #openstack-keystone05:16
*** hoonetorg has joined #openstack-keystone05:23
*** akscram has quit IRC05:26
*** akscram has joined #openstack-keystone05:28
*** ayoung has quit IRC05:31
jaosoriormorgan: Stumbled upon the same issue in Barbican. Had to change the the length of the index to fix the 767 bytes that are required in InnoDB databases in the migration script that was crashing. In theory it shouldn't have worked from the beginning05:39
*** jamielennox is now known as jamielennox|away05:40
*** mnaser has quit IRC05:41
*** huats_ has quit IRC05:42
*** huats_ has joined #openstack-keystone05:42
*** huats_ has quit IRC05:42
*** huats_ has joined #openstack-keystone05:42
*** furface has quit IRC05:58
*** furface has joined #openstack-keystone05:59
*** furface has joined #openstack-keystone05:59
*** mnaser has joined #openstack-keystone06:00
*** david-lyle has quit IRC06:05
*** jrist has quit IRC06:06
*** jaosorior_ has joined #openstack-keystone06:07
*** jaosorior has quit IRC06:07
openstackgerritMerged openstack/keystone: Revert "Revert "Unit test for checking cross-version migrations compatibility""  https://review.openstack.org/31058906:08
*** jaosorior_ has quit IRC06:13
*** jaosorior_ has joined #openstack-keystone06:17
*** openstackgerrit has quit IRC06:17
*** openstackgerrit has joined #openstack-keystone06:17
*** jaosorior_ is now known as jaosorior06:20
*** naresht has joined #openstack-keystone06:32
*** lhcheng has quit IRC06:35
*** vgridnev has joined #openstack-keystone06:40
*** e0ne has joined #openstack-keystone06:41
*** markvoelker has joined #openstack-keystone06:54
*** NeedHelpKestoneF has joined #openstack-keystone06:55
*** markvoelker has quit IRC07:00
*** tesseract has joined #openstack-keystone07:01
*** tesseract is now known as Guest2331907:01
*** henrynash has joined #openstack-keystone07:02
*** ChanServ sets mode: +v henrynash07:02
openstackgerritSteve Martinelli proposed openstack/keystone: Fix fernet audit ids for v2.0  https://review.openstack.org/31188607:05
NeedHelpKestoneFHi all. Is any one had done POC on Keystone Federation ?07:08
openstackgerritSteve Martinelli proposed openstack/python-keystoneclient: Updated from global requirements  https://review.openstack.org/31154807:09
*** jrist has joined #openstack-keystone07:20
*** jamielennox|away is now known as jamielennox07:22
*** jamielennox has left #openstack-keystone07:22
*** jamielennox has joined #openstack-keystone07:22
*** ChanServ sets mode: +v jamielennox07:22
jamielennoxgah - glance tests run without keystonemiddleware07:22
stevemar?07:23
stevemarthey do07:23
*** yolanda has quit IRC07:23
stevemarnews to me :\07:24
stevemarwhat were they running07:24
jamielennoxthey have a paste file that is only for tests and they just skip authtoken and pass X-Tenant-Id etc as headers07:24
jamielennoxi have no idea how to fix that07:26
*** fhubik has joined #openstack-keystone07:29
*** nkinder has quit IRC07:31
*** yolanda has joined #openstack-keystone07:32
*** jaosorior has quit IRC07:37
*** jaosorior has joined #openstack-keystone07:37
*** jrist has quit IRC07:38
*** sshen has quit IRC07:39
*** ayoung has joined #openstack-keystone07:49
*** ChanServ sets mode: +v ayoung07:49
*** pnavarro has joined #openstack-keystone07:49
*** dmk0202 has joined #openstack-keystone07:54
*** EinstCra_ has joined #openstack-keystone07:57
*** zzzeek has quit IRC08:00
*** zzzeek has joined #openstack-keystone08:00
*** EinstCrazy has quit IRC08:00
*** henrynash has quit IRC08:01
*** jaosorior_ has joined #openstack-keystone08:04
*** arunkant_ has quit IRC08:06
*** jaosorior has quit IRC08:07
openstackgerrityolanda.robla proposed openstack/keystoneauth: Use betamax hooks to mask fixture results  https://review.openstack.org/31113308:08
*** sshen has joined #openstack-keystone08:09
*** jaosorior_ is now known as jaosorior08:11
openstackgerrityolanda.robla proposed openstack/keystoneauth: Use betamax hooks to mask fixture results  https://review.openstack.org/31113308:14
*** mvk_ has joined #openstack-keystone08:23
*** jistr has joined #openstack-keystone08:24
*** mvk has quit IRC08:26
*** ozialien10 has quit IRC08:28
*** ozialien10 has joined #openstack-keystone08:29
*** TxGVNN has joined #openstack-keystone08:30
*** jrist has joined #openstack-keystone08:33
*** arunkant has joined #openstack-keystone08:37
*** mhu has joined #openstack-keystone08:45
*** markvoelker has joined #openstack-keystone08:50
*** markvoelker has quit IRC08:55
*** Srushti has joined #openstack-keystone09:15
*** fhubik has quit IRC09:21
*** fhubik has joined #openstack-keystone09:25
*** TxGVNN has quit IRC09:25
*** daemontool has joined #openstack-keystone09:35
*** yolanda has quit IRC09:36
*** yolanda has joined #openstack-keystone09:41
*** dmk0202 has quit IRC09:59
*** jrist has quit IRC10:02
*** TxGVNN has joined #openstack-keystone10:04
*** e0ne has quit IRC10:06
*** e0ne has joined #openstack-keystone10:06
*** _amrith_ is now known as amrith10:08
*** ozialien10 has quit IRC10:18
*** ozialien10 has joined #openstack-keystone10:18
*** mou has joined #openstack-keystone10:20
*** EinstCra_ has quit IRC10:30
*** yolanda has quit IRC10:33
*** yolanda has joined #openstack-keystone10:38
*** links has quit IRC10:45
*** jrist has joined #openstack-keystone10:45
*** mvk_ has quit IRC10:46
*** dave-mccowan has joined #openstack-keystone10:51
*** david-lyle has joined #openstack-keystone10:58
*** jaosorior has quit IRC11:10
*** jaosorior has joined #openstack-keystone11:10
*** chmouel has left #openstack-keystone11:12
*** belmoreira has joined #openstack-keystone11:15
*** rodrigods has quit IRC11:16
*** rodrigods has joined #openstack-keystone11:16
*** daemontool has quit IRC11:27
*** TxGVNN has quit IRC11:28
*** amrith is now known as _amrith_11:42
*** NeedHelpKestoneF has quit IRC11:46
*** naresht has quit IRC11:46
*** mvk_ has joined #openstack-keystone11:54
*** links has joined #openstack-keystone11:59
*** nkinder has joined #openstack-keystone12:04
*** markvoelker has joined #openstack-keystone12:04
*** e0ne has quit IRC12:05
*** raildo-afk is now known as raildo12:13
*** e0ne has joined #openstack-keystone12:22
*** dave-mcc_ has joined #openstack-keystone12:24
*** ozialien10 has quit IRC12:24
*** ozialien10 has joined #openstack-keystone12:25
*** doug-fish has joined #openstack-keystone12:27
*** dave-mccowan has quit IRC12:27
*** links has quit IRC12:46
*** julim has joined #openstack-keystone12:47
*** jsavak has joined #openstack-keystone12:49
*** pauloewerton has joined #openstack-keystone12:51
*** richm has joined #openstack-keystone12:56
*** _amrith_ is now known as amrith12:57
*** jsavak has quit IRC12:58
*** jsavak has joined #openstack-keystone12:59
*** nalind has joined #openstack-keystone13:03
*** krotscheck_dcm is now known as krotscheck13:10
*** TxGVNN has joined #openstack-keystone13:10
openstackgerritGyorgy Szombathelyi proposed openstack/keystone: Allow 'domain' property for local.group  https://review.openstack.org/31014713:20
openstackgerritLance Bragstad proposed openstack/keystone: Make keystone exit when fernet keys don't exist  https://review.openstack.org/31181113:22
*** tonytan4ever has joined #openstack-keystone13:26
*** amakarov has joined #openstack-keystone13:28
*** markus_z has joined #openstack-keystone13:30
*** BjoernT has joined #openstack-keystone13:30
markus_zHey, tempest sometimes fails because an authentication cannot be made: http://logstash.openstack.org/#/dashboard/file/logstash.json?from=86400s&query=message:%5C%22Details:%20%7Bu'title':%20u'Unauthorized',%20u'code':%20401,%20u'message':%20u'The%20request%20you%20have%20made%20requires%20authentication.'%7D%5C%2213:31
markus_zAnyone an idea what's happening there?13:31
*** BigWillie has joined #openstack-keystone13:33
markus_zIt seems to happen only in teardowns when tenants or users get deleted13:35
*** d0ugal has quit IRC13:46
*** d0ugal has joined #openstack-keystone13:47
*** csoukup has joined #openstack-keystone13:48
*** sdake has joined #openstack-keystone13:48
markus_zFor the sake of completeness: https://bugs.launchpad.net/keystone/+bug/157821013:48
openstackLaunchpad bug 1578210 in OpenStack Identity (keystone) "Keystone fails negative tests with unauthenticated users" [High,Confirmed]13:48
*** sdake has quit IRC13:48
*** ametts has joined #openstack-keystone13:55
*** sigmavirus24_awa is now known as sigmavirus2413:56
*** dave-mcc_ has quit IRC13:57
*** josecastroleon has quit IRC14:03
*** sdake has joined #openstack-keystone14:06
*** gordc has joined #openstack-keystone14:09
*** dmk0202 has joined #openstack-keystone14:14
*** daemontool has joined #openstack-keystone14:19
*** lamt has joined #openstack-keystone14:21
*** jaosorior has quit IRC14:25
*** jaosorior has joined #openstack-keystone14:25
*** jaosorior has quit IRC14:30
*** BigWillie has quit IRC14:30
*** ozialien10 has quit IRC14:31
*** julim has quit IRC14:32
*** dmk0202 has quit IRC14:33
*** julim has joined #openstack-keystone14:35
*** navidp has joined #openstack-keystone14:36
*** slberger has joined #openstack-keystone14:42
*** m1r4nt15_b0y is now known as d34dh0r5314:44
*** pgbridge has joined #openstack-keystone14:46
*** navidp has quit IRC14:46
*** ramishra has quit IRC14:47
*** ramishra has joined #openstack-keystone14:48
*** e0ne has quit IRC14:50
*** edtubill has joined #openstack-keystone14:56
*** timcline has joined #openstack-keystone14:58
*** haplo37 has joined #openstack-keystone14:58
*** jsavak has quit IRC14:59
*** dan_nguyen has joined #openstack-keystone15:00
*** slberger1 has joined #openstack-keystone15:00
*** jsavak has joined #openstack-keystone15:00
*** yolanda has quit IRC15:00
*** slberger has quit IRC15:01
*** yolanda has joined #openstack-keystone15:03
*** gb21 has joined #openstack-keystone15:10
*** vgridnev has quit IRC15:10
*** pushkaru has joined #openstack-keystone15:14
*** yolanda has quit IRC15:15
*** yolanda has joined #openstack-keystone15:17
*** spzala has joined #openstack-keystone15:18
openstackgerritMerged openstack/keystone: Fix fernet audit ids for v2.0  https://review.openstack.org/31188615:22
bknudsonhopefully https://review.openstack.org/311886 fixes https://bugs.launchpad.net/keystone/+bug/157821015:24
openstackLaunchpad bug 1577558 in OpenStack Identity (keystone) "duplicate for #1578210 v2.0 fernet tokens audit ids are inconsistent" [High,Fix released] - Assigned to Lance Bragstad (lbragstad)15:24
*** fhubik has quit IRC15:25
openstackgerritSteve Martinelli proposed openstack/python-keystoneclient: Fixing D204, D205, and D207 PEP257 violation.  https://review.openstack.org/31219215:26
openstackgerritSteve Martinelli proposed openstack/python-keystoneclient: Fixing D202 and D203 PEP257 violation.  https://review.openstack.org/31220715:27
openstackgerritSteve Martinelli proposed openstack/python-keystoneclient: Fixing D200 PEP257 violation.  https://review.openstack.org/31220815:28
*** yolanda has quit IRC15:29
*** yolanda has joined #openstack-keystone15:32
*** belmoreira has quit IRC15:34
*** timcline_ has joined #openstack-keystone15:37
*** timcline has quit IRC15:37
*** jistr has quit IRC15:37
*** sdake_ has joined #openstack-keystone15:40
*** sdake has quit IRC15:43
*** sdake_ has quit IRC15:46
*** Guest23319 has quit IRC15:46
*** e0ne has joined #openstack-keystone15:49
*** jistr has joined #openstack-keystone15:58
*** woodster_ has joined #openstack-keystone16:04
*** mou has quit IRC16:06
*** mou has joined #openstack-keystone16:06
*** nikhil has joined #openstack-keystone16:07
*** slberger1 has quit IRC16:07
*** slberger has joined #openstack-keystone16:07
*** roxanaghe has joined #openstack-keystone16:16
*** TxGVNN has quit IRC16:18
*** mou has quit IRC16:19
*** sdake has joined #openstack-keystone16:24
*** TxGVNN has joined #openstack-keystone16:27
*** daemontool_ has joined #openstack-keystone16:27
*** daemontool_ has quit IRC16:28
*** daemontool has quit IRC16:28
*** daemontool has joined #openstack-keystone16:29
*** ozialien10 has joined #openstack-keystone16:29
*** fangxu has joined #openstack-keystone16:31
*** TxGVNN has quit IRC16:31
*** gb21 has quit IRC16:35
*** ninag has joined #openstack-keystone16:38
*** TxGVNN has joined #openstack-keystone16:44
*** e0ne has quit IRC16:46
*** e0ne has joined #openstack-keystone16:47
*** gb21 has joined #openstack-keystone16:47
*** rbridgeman has joined #openstack-keystone16:48
*** rbridgeman_ has joined #openstack-keystone16:49
*** markus_z has quit IRC16:51
*** e0ne has left #openstack-keystone16:52
*** rbridgeman has quit IRC16:53
*** jistr has quit IRC16:54
*** sdake has quit IRC16:55
raildolbragstad: hey, did you find a way to fix the 'Config file not found, using default configs.' not in u'' error?16:59
*** eandersson has quit IRC16:59
raildolbragstad: I'm having the same problem now :(16:59
*** ninag has quit IRC17:02
*** ninag has joined #openstack-keystone17:02
*** darosale has joined #openstack-keystone17:03
*** ninag has quit IRC17:07
*** bigdogstl has joined #openstack-keystone17:09
*** pnavarro has quit IRC17:12
*** bigdogstl has quit IRC17:15
*** phalmos has joined #openstack-keystone17:21
rodrigodsdstanek, ping... care to +A https://review.openstack.org/#/c/294201/ ?17:22
patchbotrodrigods: patch 294201 - keystone - Add conflict validation for idp update17:22
*** dave-mccowan has joined #openstack-keystone17:22
dstanekrodrigods: looking17:23
*** jed56 has quit IRC17:24
dstanekrodrigods: done17:26
dstaneknice work17:26
rodrigodsthanks dstanek17:26
*** roxanaghe has quit IRC17:29
stevemarchannel is quiet today17:29
rodrigodsstevemar, yeah, will start to ask for reviews17:30
*** spzala has quit IRC17:30
*** spzala has joined #openstack-keystone17:30
openstackgerritMerged openstack/python-keystoneclient: Fixing D301 PEP257 violation.  https://review.openstack.org/31178317:31
openstackgerritMerged openstack/python-keystoneclient: Fixing D211 PEP257 violation.  https://review.openstack.org/31178517:31
*** spzala has quit IRC17:31
openstackgerritMerged openstack/python-keystoneclient: Fixing D208 PEP257 violation.  https://review.openstack.org/31178717:31
*** spzala has joined #openstack-keystone17:32
*** roxanaghe has joined #openstack-keystone17:33
stevemarnavidp's changes are landing ^_^17:33
stevemarbknudson: ksc gate should be fixed now... time to drop ksc 3.0.0? :)17:33
bknudsonstevemar: yes, but then there's a note to the mailing list that there won't be releases this week.17:34
*** tonytan4ever has quit IRC17:34
stevemarwomp womp17:34
*** bigdogstl has joined #openstack-keystone17:35
*** jsavak has quit IRC17:36
stevemarlunch time i guess, things are quiet17:36
rodrigodsbknudson, thanks for the review in https://review.openstack.org/#/c/302299/17:37
patchbotrodrigods: patch 302299 - keystone - Add identity providers integration tests17:37
*** tqtran has joined #openstack-keystone17:37
rodrigodstook a while to address everything, but i think it is much better now :)17:37
*** bigdogstl has quit IRC17:45
*** tonytan4ever has joined #openstack-keystone17:45
lbragstadraildo nope, i haven't fixed that one yet17:46
raildolbragstad: I got this error during the rebase on https://review.openstack.org/#/c/311811/, so I didn't send a new patch set17:47
patchbotraildo: patch 311811 - keystone - Make keystone exit when fernet keys don't exist17:47
lbragstadraildo it doesn't happen upstream in the gate17:47
lbragstadraildo I can only reproduce it locally17:47
raildolbragstad: great, so I'll send the rebase17:48
kfox1111whats the environment variable for passing a token instead of authing with username/password.17:48
kfox1111OS_TOKEN?17:48
openstackgerritRaildo Mascena proposed openstack/keystone: Make keystone exit when fernet keys don't exist  https://review.openstack.org/31181117:50
*** mvk_ has quit IRC17:53
*** ninag has joined #openstack-keystone18:02
*** jsavak has joined #openstack-keystone18:06
*** hoonetorg has quit IRC18:07
*** ninag has quit IRC18:18
*** ninag has joined #openstack-keystone18:19
*** ninag_ has joined #openstack-keystone18:20
*** ninag has quit IRC18:24
*** ninag_ has quit IRC18:25
*** yolanda has quit IRC18:25
*** bigdogstl has joined #openstack-keystone18:32
*** timcline_ has quit IRC18:34
*** jsavak has quit IRC18:34
*** ninag has joined #openstack-keystone18:34
*** ninag_ has joined #openstack-keystone18:35
*** ninag__ has joined #openstack-keystone18:36
*** ninag has quit IRC18:38
*** bigdogstl has quit IRC18:39
*** ninag_ has quit IRC18:40
*** ninag__ has quit IRC18:40
*** sdake has joined #openstack-keystone18:42
*** roxanaghe has quit IRC18:42
*** bigdogstl has joined #openstack-keystone18:43
*** sdake has quit IRC18:44
*** sdake has joined #openstack-keystone18:46
*** roxanaghe has joined #openstack-keystone18:46
openstackgerritayoung proposed openstack/keystone: Replace revoke tree with linear search  https://review.openstack.org/31165218:48
*** vgridnev has joined #openstack-keystone18:48
*** bigdogstl has quit IRC18:48
stevemardolphm: if you're around, https://review.openstack.org/#/c/309491/7 could use a quick set of eyes18:49
patchbotstevemar: patch 309491 - keystone - Fixing D105, D203, and D205 PEP25718:49
stevemarbknudson: why don't we backport https://review.openstack.org/#/c/306681/ and then lance's fix for fernet+v2+audit_id?18:50
patchbotstevemar: patch 306681 - keystone - Make all fixture project_ids into uuids (MERGED)18:50
bknudsonstevemar: that's one option. I don't have time to do it now.18:50
*** TxGVNN has quit IRC18:50
stevemarbknudson: i can do it18:51
bknudsonI'm on a squad now so am not sure how much time I'll have to work upstream for a while.18:51
lbragstadstevemar is that going to help with some of the issues in the gate?18:51
*** ninag has joined #openstack-keystone18:52
ayoungbknudson, an Infantry squad?18:52
bknudsonayoung: might as well be.18:52
ayoungDid they make you carry the M-60?18:52
lbragstadstevemar dolphm and I are also looking into why all the tempest.api.identity.admin.v2.test_roles_negative.RolesNegativeTestJSON tests are failing18:52
ayounglbragstad, is this more Fernet Fallout?18:53
lbragstadi'll carry an m-6018:53
lbragstadayoung possibly18:53
ayounglbragstad, just make sure the round extractor is in place out you will be carying nothing but a very heavy necklace.  True Story18:53
bknudsonI expect that the incorrect audit IDs is causing revocation to not work18:53
bknudsonsince revocation is by audit id18:53
lbragstadbknudson but we landed that patch?18:54
*** ninag has quit IRC18:54
bknudsonthe patch landed a couple of hours ago18:54
lbragstadaudit ids should be working for v2 + fernet now18:54
lbragstadayoung lol nice18:54
ayoungbknudson, what do you mean by Squad?18:54
bknudsonayoung: https://labs.spotify.com/2014/03/27/spotify-engineering-culture-part-1/18:55
stevemarbknudson: I backported the proejct id patch and rebased lance's bits on it18:55
*** ninag has joined #openstack-keystone18:55
stevemarbknudson: upstream will miss you :(18:55
bknudsonayoung: they're making me actually do work.18:55
ayoungbknudson, pretty sure IBM can't afford to have you directed off of Keystone.18:56
stevemarbknudson: your time of idling and sitting on your hands is over!18:56
stevemarayoung: openstack as a whole can't afford that18:57
ayounglbragstad, it was a live fire exercise a Infantry Officer Basic.  I got to fire one round, and then had to pull off the barrel and treat it as a possible live, because the shell was still in the end of it.18:59
ayoungTurns out the person that had it before me lost the extractor.18:59
*** mvk_ has joined #openstack-keystone19:00
lbragstadayoung ha that sucks19:01
lbragstadstevemar if you propose the backports i'll review them19:01
stevemarlbragstad: https://review.openstack.org/#/q/status:open+project:openstack/keystone+branch:stable/mitaka19:02
*** jsavak has joined #openstack-keystone19:04
lbragstadstevemar the gate would be picking this up through master though right?19:05
lbragstadstevemar just asking because there seem to be some patches still failing19:06
stevemarlbragstad: i don't follow, what's failing?19:12
lbragstadstevemar https://review.openstack.org/#/c/312207/19:12
patchbotlbragstad: patch 312207 - python-keystoneclient - Fixing D202 and D203 PEP257 violation.19:12
lbragstadstevemar ignore the pep8 issue19:12
stevemarlbragstad: the functional gate job was failing19:13
stevemarthe dsvm one is probably transient failure19:13
lbragstadstevemar because of fernet + v2.0 + audit_ids?19:13
stevemarlbragstad: i don't think so... cause https://review.openstack.org/#/c/311787/ just merged now19:14
patchbotstevemar: patch 311787 - python-keystoneclient - Fixing D208 PEP257 violation. (MERGED)19:14
openstackgerritNavid Pustchi proposed openstack/python-keystoneclient: Fixing D105 PEP257  https://review.openstack.org/31270319:15
*** rmcall has joined #openstack-keystone19:16
*** tonytan4ever has quit IRC19:17
*** pnavarro has joined #openstack-keystone19:19
*** lhcheng has joined #openstack-keystone19:22
*** ChanServ sets mode: +v lhcheng19:22
ayoungstevemar, Here is what I plan on working on this release   http://adam.younglogic.com/2016/05/identity-newton/19:23
stevemarayoung: i like 119:24
stevemari like 219:24
stevemar3 is kinda out of keystone scope19:25
*** sdake has quit IRC19:25
*** sdake has joined #openstack-keystone19:26
ayoungstevemar, yeah.  A lot of this getting stuff into Tripleo that we have worked on in Keystone, to get it out to the deployments.19:27
*** bigdogstl has joined #openstack-keystone19:28
stevemarall good stuff19:28
stevemari don't quite understand the new federation routes, but hopefully i see a spec that explains it so well a dumb guy like me can understand it :)19:29
openstackgerritNavid Pustchi proposed openstack/python-keystoneclient: Fixing D204, D205, and D207 PEP257 violation.  https://review.openstack.org/31219219:30
*** bigdogstl has quit IRC19:33
ayoungstevemar, yeah, I'll work with rderose on those19:34
*** timcline has joined #openstack-keystone19:34
openstackgerritNavid Pustchi proposed openstack/python-keystoneclient: Fixing D105 PEP257  https://review.openstack.org/31270319:36
*** tonytan4ever has joined #openstack-keystone19:38
*** timcline has quit IRC19:39
*** mkrcmari__ has joined #openstack-keystone19:40
*** timcline has joined #openstack-keystone19:41
*** mvk_ has quit IRC19:44
openstackgerritRaildo Mascena proposed openstack/keystone: Make keystone exit when fernet keys don't exist  https://review.openstack.org/31181119:45
openstackgerritNavid Pustchi proposed openstack/python-keystoneclient: Fixing D202 and D203 PEP257 violation.  https://review.openstack.org/31220719:45
openstackgerritNavid Pustchi proposed openstack/python-keystoneclient: Fixing D200 PEP257 violation.  https://review.openstack.org/31220819:47
openstackgerritNavid Pustchi proposed openstack/python-keystoneclient: Fixing D105 PEP257  https://review.openstack.org/31270319:47
*** openstackgerrit has quit IRC19:48
*** openstackgerrit has joined #openstack-keystone19:48
openstackgerritMerged openstack/python-keystoneclient: httpclient: remove unused debug kwargs  https://review.openstack.org/23673919:54
*** navidp has joined #openstack-keystone19:57
*** gyee has joined #openstack-keystone19:57
*** ChanServ sets mode: +v gyee19:57
navidpcan you review this19:57
navidphttps://review.openstack.org/#/c/309491/19:57
patchbotnavidp: patch 309491 - keystone - Fixing D105, D203, and D205 PEP25719:57
*** pauloewerton has quit IRC20:06
*** stingaci has joined #openstack-keystone20:08
*** harlowja has quit IRC20:09
*** stingaci has quit IRC20:09
*** stingaci has joined #openstack-keystone20:10
*** jsavak has quit IRC20:11
*** jsavak has joined #openstack-keystone20:11
*** navid_ has joined #openstack-keystone20:13
*** dmk0202 has joined #openstack-keystone20:14
*** navidp has quit IRC20:16
*** mvk_ has joined #openstack-keystone20:16
*** mvk has joined #openstack-keystone20:18
*** mkrcmari__ has quit IRC20:19
*** mvk_ has quit IRC20:21
*** mkrcmari__ has joined #openstack-keystone20:21
*** bigdogstl has joined #openstack-keystone20:23
*** mvk has quit IRC20:25
*** fawadkhaliq has joined #openstack-keystone20:27
*** bigdogstl has quit IRC20:27
*** gyee has quit IRC20:27
*** amrith is now known as _amrith_20:28
*** roxanaghe has quit IRC20:29
*** gyee has joined #openstack-keystone20:30
*** ChanServ sets mode: +v gyee20:30
*** tonytan4ever has quit IRC20:33
*** navid_ has quit IRC20:36
*** bigdogstl has joined #openstack-keystone20:38
*** mvk has joined #openstack-keystone20:41
*** bigdogstl has quit IRC20:43
*** mkrcmari__ has quit IRC20:44
*** mvk_ has joined #openstack-keystone20:44
*** spandhe has joined #openstack-keystone20:45
openstackgerritMerged openstack/keystone: Remove test_invalid_policy_raises_error  https://review.openstack.org/31180420:46
*** mkrcmari__ has joined #openstack-keystone20:47
*** fawadk has joined #openstack-keystone20:47
*** doug-fis_ has joined #openstack-keystone20:48
*** mvk has quit IRC20:48
*** _amrith_ is now known as amrith20:48
*** fawadkhaliq has quit IRC20:50
*** doug-fish has quit IRC20:50
*** mvk_ has quit IRC20:50
*** mvk has joined #openstack-keystone20:51
*** doug-fish has joined #openstack-keystone20:51
*** doug-fi__ has joined #openstack-keystone20:52
*** doug-fis_ has quit IRC20:52
*** mkrcmari__ has quit IRC20:53
*** mvk_ has joined #openstack-keystone20:53
*** doug-fish has quit IRC20:55
*** mkrcmari__ has joined #openstack-keystone20:56
arunkantdstanek, stevemar: Can you review https://review.openstack.org/#/c/279828/ . It has been sitting there for quite some time.20:56
patchbotarunkant: patch 279828 - keystonemiddleware - Adding audit middleware specific notification driv...20:56
*** mvk has quit IRC20:56
*** doug-fi__ has quit IRC20:57
*** julim has quit IRC20:59
*** mvk_ has quit IRC20:59
*** richm has quit IRC21:00
*** mvk_ has joined #openstack-keystone21:00
*** julim has joined #openstack-keystone21:01
*** mkrcmari__ has quit IRC21:04
*** gyee has quit IRC21:06
*** harlowja has joined #openstack-keystone21:10
openstackgerritJamie Lennox proposed openstack/keystone: Always add is_admin_project if admin project defined  https://review.openstack.org/31232321:11
*** haplo37 has quit IRC21:12
*** roxanaghe has joined #openstack-keystone21:18
*** gyee has joined #openstack-keystone21:20
*** ChanServ sets mode: +v gyee21:20
*** gyee has quit IRC21:27
*** pushkaru has quit IRC21:31
*** pushkaru has joined #openstack-keystone21:32
*** fangxu has quit IRC21:34
*** bigdogstl has joined #openstack-keystone21:34
*** ninag has quit IRC21:35
*** roxanaghe has quit IRC21:37
*** gyee has joined #openstack-keystone21:39
*** ChanServ sets mode: +v gyee21:39
*** bigdogstl has quit IRC21:39
*** roxanaghe has joined #openstack-keystone21:40
*** vgridnev has quit IRC21:40
*** chlong has quit IRC21:45
*** rmcall has quit IRC21:47
*** amrith is now known as _amrith_21:47
mfischmorgan: I filed a bug on the memcache thing I found and I think it might have an impact on system resources, but the impact is just a guess for now.  https://bugs.launchpad.net/keystone/+bug/157840121:50
openstackLaunchpad bug 1578401 in OpenStack Identity (keystone) "tokens in memcache have no/improper expiration" [Undecided,New]21:50
mfischbonus ghostbusters reference in bug21:50
*** diazjf has joined #openstack-keystone21:51
*** spandhe has quit IRC21:54
* tellesnobrega is away: I'm busy21:57
*** navidp has joined #openstack-keystone21:58
*** fangxu has joined #openstack-keystone21:59
*** dmk0202 has quit IRC22:01
*** nalind has quit IRC22:02
openstackgerritMerged openstack/python-keystoneclient: Fixing D204, D205, and D207 PEP257 violation.  https://review.openstack.org/31219222:04
*** chlong has joined #openstack-keystone22:05
*** julim has quit IRC22:06
*** diazjf has quit IRC22:08
*** stingaci has quit IRC22:08
openstackgerritNavid Pustchi proposed openstack/keystonemiddleware: Fix D401 PEP257 violation.  https://review.openstack.org/31276722:09
*** darosale has quit IRC22:09
*** stingaci has joined #openstack-keystone22:11
openstackgerritOpenStack Proposal Bot proposed openstack/python-keystoneclient: Updated from global requirements  https://review.openstack.org/31154822:12
*** slberger has left #openstack-keystone22:13
*** navidp has quit IRC22:13
*** csoukup has quit IRC22:15
mfischdolphm: do fernet tokens not get returned in the revocation list?22:16
mfischdocs says that only for PKI22:16
mfischand I dont see the middleware calling to ask for a list in my keystone logs22:17
*** phalmos has quit IRC22:17
*** gordc has quit IRC22:20
*** sigmavirus24 is now known as sigmavirus24_awa22:21
*** darosale has joined #openstack-keystone22:22
*** edtubill has quit IRC22:30
*** BjoernT has quit IRC22:38
*** timcline has quit IRC22:40
*** pushkaru has quit IRC22:42
*** agrebennikov_ has quit IRC22:47
*** gordc has joined #openstack-keystone22:50
*** ametts has quit IRC22:52
*** harlowja has quit IRC22:52
*** harlowja has joined #openstack-keystone22:53
*** darosale has quit IRC22:55
*** _amrith_ is now known as amrith23:00
openstackgerritRodrigo Duarte proposed openstack/keystone: Add conflict validation for idp update  https://review.openstack.org/29420123:07
openstackgerritMerged openstack/keystone: Fixing D105, D203, and D205 PEP257  https://review.openstack.org/30949123:10
*** jsavak has quit IRC23:16
*** gordc has quit IRC23:20
*** chrisplo has quit IRC23:23
*** bapalm_ has quit IRC23:30
openstackgerritMerged openstack/python-keystoneclient: Fixing D202 and D203 PEP257 violation.  https://review.openstack.org/31220723:31
openstackgerritMerged openstack/python-keystoneclient: Fixing D200 PEP257 violation.  https://review.openstack.org/31220823:31
openstackgerritMerged openstack/python-keystoneclient: Fixing D105 PEP257  https://review.openstack.org/31270323:31
*** tellesnobrega is now known as tellesnobrega_af23:35
*** sdake has quit IRC23:37
*** pushkaru has joined #openstack-keystone23:38
*** pgbridge has quit IRC23:38
*** gb21 has quit IRC23:39
*** gb21 has joined #openstack-keystone23:40
gyeeayoung, fyi, Anchor master branch is broken right now, its Pecan instantiation is outdated23:40
gyeeI got it working finally, but yak!23:41
*** fawadkhaliq has joined #openstack-keystone23:50
*** amit213 has joined #openstack-keystone23:51
*** fawadk has quit IRC23:52
ayounggyee, Pecan?  REally?23:53
*** roxanaghe has quit IRC23:58

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