Thursday, 2015-01-22

*** lisaclark1 has quit IRC00:10
*** dimtruck is now known as zz_dimtruck00:37
*** zz_dimtruck is now known as dimtruck00:50
*** lisaclark1 has joined #openstack-barbican00:56
*** SheenaG1 has quit IRC01:12
*** lisaclark1 has quit IRC01:14
*** lisaclark1 has joined #openstack-barbican01:22
*** crc32 has quit IRC01:27
*** dimtruck is now known as zz_dimtruck01:28
*** ryanpetrello has joined #openstack-barbican01:29
*** ryanpetrello has quit IRC01:35
*** ryanpetrello has joined #openstack-barbican01:38
*** ryanpetrello has quit IRC01:47
*** bdpayne has quit IRC01:50
*** d0ugal has quit IRC01:55
*** d0ugal has joined #openstack-barbican01:55
*** ryanpetrello has joined #openstack-barbican01:55
*** d0ugal is now known as Guest8510401:56
*** mordred_ has joined #openstack-barbican02:04
*** mordred has quit IRC02:06
*** mordred_ is now known as mordred02:06
*** ryanpetrello has quit IRC02:08
*** ryanpetrello has joined #openstack-barbican02:15
*** ryanpetrello has quit IRC02:23
*** lisaclark1 has quit IRC02:32
*** lisaclark1 has joined #openstack-barbican02:33
*** lisaclark1 has quit IRC02:36
*** ryanpetrello has joined #openstack-barbican02:47
*** zz_dimtruck is now known as dimtruck02:51
*** ryanpetrello has quit IRC02:57
*** woodster_ has quit IRC03:10
*** woodster_ has joined #openstack-barbican03:11
*** bdpayne has joined #openstack-barbican03:15
*** woodster_ has quit IRC05:20
*** bdpayne has quit IRC05:36
*** woodster_ has joined #openstack-barbican06:50
*** chlong has quit IRC07:38
*** Guest85104 is now known as d0ugal07:42
*** d0ugal is now known as Guest7919507:42
*** Guest79195 is now known as d0ugal07:48
*** d0ugal has joined #openstack-barbican07:48
*** jamielennox is now known as jamielennox|away08:01
*** jraim has quit IRC08:50
*** codekobe has quit IRC08:50
*** codekobe has joined #openstack-barbican08:53
*** woodster_ has quit IRC09:00
*** jraim has joined #openstack-barbican09:01
*** chlong has joined #openstack-barbican10:15
*** chlong has quit IRC10:20
*** chlong has joined #openstack-barbican10:33
*** chlong has quit IRC10:37
*** jaosorior has joined #openstack-barbican10:39
*** chlong has joined #openstack-barbican10:50
*** samueldmq-away is now known as samueldmq11:37
*** samueldmq has quit IRC12:18
*** samueldmq has joined #openstack-barbican12:18
*** dimtruck is now known as zz_dimtruck12:43
*** chlong has quit IRC12:44
*** zz_dimtruck is now known as dimtruck13:17
*** dimtruck is now known as zz_dimtruck13:21
*** zz_dimtruck is now known as dimtruck13:25
*** alee_dinner has quit IRC13:26
*** darrenmoffat has quit IRC13:36
*** darrenmoffat has joined #openstack-barbican13:37
*** tkelsey has joined #openstack-barbican13:40
*** miqui has joined #openstack-barbican13:54
jaosoriortkelsey: ping13:58
tkelseyo/ jaosorior13:59
tkelseyhows things?13:59
jaosoriorpretty good man13:59
jaosoriorwhat about there?13:59
tkelseyyeah not too bad :) cant complain14:00
jaosoriortkelsey: I was checking out the bugs in barbican, and stumbled upon this one: https://bugs.launchpad.net/barbican/+bug/1394594 is there anything new on that?14:00
tkelseyI havnt had any new info about it. I think there was suposed to be some work to tighten up validation that would have covered this14:01
tkelseybut im not completely sure14:01
jaosorioroh, alright14:02
jaosorioroooh, now I see this review: https://review.openstack.org/#/c/133725/14:02
tkelseyyeah, that was me playing with a fix, but it wasnt quite the right way to go about it14:03
jaosorioruhm, alright... dunno if I should put that bug as incomplete, since I'm not sure what action is gonna be taken for that14:03
tkelseythat would make sense to me14:04
tkelseybtw, i have pushed this spec https://review.openstack.org/#/c/148948/ about a Master Key Encryption Key model, would value your input if you get a moment to look it over14:06
jaosoriorsure man14:06
tkelseyawesome :)14:07
jaosoriorAdded myself as a reviewer14:07
jaosoriorwill probably only get time tomorrow though14:07
tkelseysure, no rush14:07
*** alee_dinner has joined #openstack-barbican14:42
*** sigmavirus24 has joined #openstack-barbican14:50
*** nkinder has joined #openstack-barbican14:51
*** rellerreller has joined #openstack-barbican15:01
*** paul_glass has joined #openstack-barbican15:02
*** woodster_ has joined #openstack-barbican15:08
*** dimtruck is now known as zz_dimtruck15:12
*** alee_dinner is now known as alee15:18
*** samueldmq is now known as samueldmq-away15:19
*** zz_dimtruck is now known as dimtruck15:20
*** lisaclark1 has joined #openstack-barbican15:39
*** SheenaG1 has joined #openstack-barbican15:41
openstackgerritSteve Heyman proposed openstack/barbican: ** DO NOT MERGE **  https://review.openstack.org/14660815:54
*** ayoung has joined #openstack-barbican16:02
*** dave-mccowan has joined #openstack-barbican16:07
aleewoodster_, ping16:23
woodster_alee, morning16:25
aleewoodster_, morning -- I'm trying to understand how exceptions  are supposed to work in the server16:26
aleewoodster_, lets say I want to throw an exception for "InvalidCA"  for instance ..16:26
aleeso I can define this exception in exception.py16:27
aleeclass InvalidCAID(BarbicanException):16:27
alee    message = u._("Invalid CA_ID: %(ca_id)")16:27
aleeand I can therefore throw this exception as follows ..16:27
aleeraise exception.InvalidCAID(ca_id=ca_id)16:28
aleenow -- I  want this exception to raise a 400 status ..16:28
aleehow do I do that?16:28
*** samueldmq-away is now known as samueldmq16:29
woodster_alee, checkout out barbican.api's __init__.py module...the generate_safe_exception_message() function16:30
woodster_alee that handles all exceptions raised and assigns a response code and optional message override to them16:30
aleewoodster_, yeah - I saw that16:31
aleewoodster_, now - it seems to me that most likely we do  not want to list every exception that we want to throw here, right?16:31
aleewoodster_, doesn't it make sense to have some exception hierarchies ..16:32
woodster_alee, well any exception you want a non 500 response on has to be defined there. It is getting long there though, so other options/approaches would be good to think about.16:32
aleewoodster_,  for example InvalidCA <- InvalidInput  (or something like that)16:32
aleeand InvalidInput -> 40016:33
alee(for example)16:33
woodster_alee, yeah that makes sense16:33
aleewoodster_, ok - I just wanted to be sure I wasn't missing anything16:33
woodster_alee, no that is early ugly code that needs to be refactored...that re-raise is 'fun' when a class check would do the job instead for example16:35
aleeok -- I'm going to resist the temptation to refactor that now in this cr16:37
aleeand do it the ugly way for now16:38
*** ryanpetrello has joined #openstack-barbican16:41
openstackgerritSteve Heyman proposed openstack/barbican: ** DO NOT MERGE **  https://review.openstack.org/14660816:45
woodster_alee, yeah, better to separate those CRs, then blast away!16:46
*** lisaclark1 has quit IRC16:53
*** lisaclark1 has joined #openstack-barbican16:56
*** SheenaG1 has quit IRC16:57
openstackgerritMerged openstack/python-barbicanclient: Enable usage of oslo_debug_helper from tox  https://review.openstack.org/14805517:19
*** bdpayne has joined #openstack-barbican17:21
*** SheenaG1 has joined #openstack-barbican17:26
*** ryanpetrello has quit IRC17:49
*** ryanpetrello has joined #openstack-barbican17:50
*** david-lyle has joined #openstack-barbican17:50
*** ryanpetrello has quit IRC17:50
*** bdpayne has quit IRC17:55
*** ryanpetrello has joined #openstack-barbican17:55
*** ryanpetrello has quit IRC17:58
openstackgerritMerged openstack/python-barbicanclient: Updated from global requirements  https://review.openstack.org/14670618:03
*** kebray has joined #openstack-barbican18:04
*** ryanpetrello has joined #openstack-barbican18:04
*** ryanpetrello_ has joined #openstack-barbican18:07
*** lisaclark1 has quit IRC18:08
*** ryanpetrello_ has quit IRC18:08
*** ryanpetrello has quit IRC18:08
*** SheenaG11 has joined #openstack-barbican18:09
*** ryanpetrello has joined #openstack-barbican18:09
*** ryanpetrello has quit IRC18:09
*** ryanpetrello has joined #openstack-barbican18:10
*** SheenaG1 has quit IRC18:11
*** kebray has quit IRC18:21
*** bdpayne has joined #openstack-barbican18:21
*** lisaclark1 has joined #openstack-barbican18:24
*** tkelsey has quit IRC18:24
*** rellerreller has quit IRC18:29
*** kebray has joined #openstack-barbican18:33
*** ryanpetrello has quit IRC18:38
*** kebray has quit IRC18:38
*** bdpayne has quit IRC18:40
*** lisaclark1 has quit IRC18:45
*** lisaclark1 has joined #openstack-barbican18:51
*** bdpayne has joined #openstack-barbican19:02
*** atiwari has joined #openstack-barbican19:04
*** jaosorior has quit IRC19:14
aleewoodster_, ?19:17
aleewoodster_, actually never mind - I think I just answered my own question19:18
aleewoodster_, ?20:02
chellygelhey alee he's in a big planning meeting today20:05
chellygeli can pass a message a long if its an emergency20:05
aleechellygel, yeah - I figured .. you're not in the same meeting?20:05
chellygelnope!20:06
aleechellygel, no worries - I can ping him later20:06
chellygelalrighty!20:06
aleejust trying to figure out how to do something in the models. code20:06
rm_workhmm where's my JHU peeps? :(20:13
rm_workrellerreller missing, briana .... i don't know what her nick is20:14
*** jkf has joined #openstack-barbican20:22
*** kebray has joined #openstack-barbican20:25
*** dimtruck is now known as zz_dimtruck20:27
*** zz_dimtruck is now known as dimtruck20:29
*** jkf has quit IRC20:34
*** jkf has joined #openstack-barbican20:35
*** sigmavirus24 is now known as sigmavirus24_awa20:40
*** nkinder has quit IRC20:43
*** kgriffs|afk is now known as kgriffs20:55
*** kebray has quit IRC20:57
*** lisaclark1 has quit IRC21:00
*** ayoung has quit IRC21:04
*** kebray has joined #openstack-barbican21:06
*** jkf has quit IRC21:18
*** jkf has joined #openstack-barbican21:21
*** ayoung has joined #openstack-barbican21:36
*** dimtruck is now known as zz_dimtruck21:50
*** bdpayne has quit IRC21:56
*** zz_dimtruck is now known as dimtruck21:59
*** paul_glass has quit IRC22:16
*** ayoung has quit IRC22:26
*** jkf has quit IRC22:34
*** jkf has joined #openstack-barbican22:35
*** alee has quit IRC22:35
*** kebray has quit IRC22:39
*** SheenaG11 has quit IRC22:49
*** ayoung has joined #openstack-barbican23:01
*** jamielennox|away is now known as jamielennox23:01
*** nkinder has joined #openstack-barbican23:09
*** dave-mccowan has quit IRC23:25
*** dimtruck is now known as zz_dimtruck23:55
*** david-lyle is now known as david-lyle_afk23:56

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