Friday, 2014-10-03

openstackgerritJohn Vrbanac proposed a change to openstack/barbican: Adding tox job for local functional test dev  https://review.openstack.org/12582400:18
openstackgerritJohn Vrbanac proposed a change to openstack/barbican: Adding tox job for local functional test dev  https://review.openstack.org/12582400:19
*** zz_dimtruck is now known as dimtruck00:35
*** woodster_ has quit IRC01:01
*** Kamaris has joined #openstack-barbican02:03
*** gyee has quit IRC03:17
*** dimtruck is now known as zz_dimtruck04:09
Kamarisgood evening04:25
*** alee has quit IRC04:39
*** juantwo has quit IRC04:41
*** jamielennox has quit IRC04:43
*** jamielennox has joined #openstack-barbican05:01
*** zz_dimtruck is now known as dimtruck05:50
*** dimtruck is now known as zz_dimtruck06:00
openstackgerritOpenStack Proposal Bot proposed a change to openstack/barbican: Imported Translations from Transifex  https://review.openstack.org/12588906:17
*** jaosorior has joined #openstack-barbican06:22
openstackgerritA change was merged to openstack/python-barbicanclient: Change object __str__() to use pretty formatting  https://review.openstack.org/11849406:51
jaosoriorniiiiiiice :D07:21
openstackgerritTim Kelsey proposed a change to openstack/python-kiteclient: Adding group key support to kiteclient.  https://review.openstack.org/12106908:46
openstackgerritJuan Antonio Osorio Robles proposed a change to openstack/barbican-specs: Replace the concept of tenants in the code-base  https://review.openstack.org/12590909:03
openstackgerritJuan Antonio Osorio Robles proposed a change to openstack/barbican-specs: Replace the concept of tenants in the code-base  https://review.openstack.org/12590909:38
*** juantwo has joined #openstack-barbican12:09
*** juantwo has quit IRC12:10
*** juantwo has joined #openstack-barbican12:11
*** woodster_ has joined #openstack-barbican12:25
*** joesavak has joined #openstack-barbican13:04
*** lisaclark1 has joined #openstack-barbican13:05
*** lisaclark1 has quit IRC13:32
*** lisaclark1 has joined #openstack-barbican13:46
*** SheenaG11 has joined #openstack-barbican13:51
*** jamielennox has quit IRC13:56
*** jsavak has joined #openstack-barbican13:56
*** joesavak has quit IRC14:00
*** jamielennox has joined #openstack-barbican14:15
*** zz_dimtruck is now known as dimtruck14:17
*** dimtruck is now known as zz_dimtruck14:46
*** lisaclark1 has quit IRC14:49
*** paul_glass1 has joined #openstack-barbican14:51
openstackgerritA change was merged to openstack/barbican: Imported Translations from Transifex  https://review.openstack.org/12588914:52
*** lisaclark1 has joined #openstack-barbican14:54
*** paul_glass1 is now known as paul_glass14:55
*** zz_dimtruck is now known as dimtruck15:00
jenkins-keepProject openstack-barbican-cloudcafe build #54: STILL FAILING in 8 min 20 sec: http://jenkins.cloudkeep.io/job/openstack-barbican-cloudcafe/54/15:01
jenkins-keepopenstack-infra: Imported Translations from Transifex15:01
jvrbanacwoodster_, https://review.openstack.org/#/c/12582415:52
*** kebray has joined #openstack-barbican16:15
*** ayoung is now known as ayoung-runch16:33
*** gyee has joined #openstack-barbican16:50
*** lisaclark1 has quit IRC16:56
*** jsavak has quit IRC17:03
*** kebray has quit IRC17:06
*** lisaclark1 has joined #openstack-barbican17:24
*** rtom has joined #openstack-barbican17:35
*** jamielennox has quit IRC17:43
openstackgerritJohn Wood proposed a change to openstack/barbican-specs: Add Version Responses Consistent with Openstack  https://review.openstack.org/12580517:44
*** rtom_ has joined #openstack-barbican17:45
*** rtom has left #openstack-barbican17:45
*** kebray has joined #openstack-barbican17:46
*** ayoung-runch has quit IRC18:01
*** ayoung has joined #openstack-barbican18:09
*** jaosorior has quit IRC18:13
*** lisaclark1 has quit IRC18:15
*** jamielenz has joined #openstack-barbican18:26
*** jamielenz is now known as jamielennox18:26
*** bubbva has quit IRC18:54
*** bubbva has joined #openstack-barbican18:54
*** gyee has quit IRC19:28
*** JeffF has joined #openstack-barbican20:02
*** JeffF has quit IRC20:11
openstackgerritJohn Wood proposed a change to openstack/barbican: Update to the latest global requirements versions  https://review.openstack.org/12605520:14
*** JeffF has joined #openstack-barbican20:15
rm_workwoo, thanks redrobot / alee / woodster_20:47
rm_workanyone know why the minimum value for "limit" for a GET call is 1? why is 0 not valid?20:47
rm_workwe use "limit=0" in the client to get the "total" count of Secrets/Containers/Orders, so there's a use-case for it20:47
*** JeffF has left #openstack-barbican20:48
redrobotrm_work limit=0 to get a count?  Doesn't seem intuitive at all.  List already includes an entity total.20:48
rm_workredrobot: there's a function in EntityBase20:48
rm_workdef total()20:49
rm_workerr20:49
rm_workBaseEntityManager20:49
rm_workdocstring just says "Returns the total number of entities stored in Barbican."20:49
woodster_rm_work in the client code you mean?20:49
rm_workyes... it essentially just does a GET on the base_url with limit=0 and gets the total out of the response20:50
woodster_rm_work did that used to work but now it isn't?20:50
redrobotit could do a limit=1 just as well20:50
rm_workas opposed to the list() function which actually returns a bunch of parsed objects20:50
redrobotit doesn't NEED to be 020:50
rm_workredrobot: right, it could20:50
rm_workand limit=0 is fine20:50
rm_workit just gets cleaned to limit=1 in the repository code server-side20:50
rm_worki was just curious *why* that cleaning happens20:50
redrobotI see... that's a good question20:51
* redrobot shrugs20:51
rm_workdon't see a good reason why we wouldn't let 0 go through :P20:51
rm_workmaybe someone at some point said "if someone asks for 0 objects, it must be a mistake, let's change it to 1"20:51
woodster_re_work, agreed20:52
rm_workanywho, not a big deal, was just curious if there was a good reason20:52
rm_worklike maybe20:52
rm_work"we pass limit directly to sqlalchemy, if you pass 0 it explodes"20:52
woodster_rm_work no good reason that anyone still remembers ;)20:53
rm_workwell anywho, putting in a patch to fix the bug/typo jaosorior found20:53
rm_workwith a new test20:53
openstackgerritAdam Harwell proposed a change to openstack/python-barbicanclient: Fix consistency between Order/Secret/Container  https://review.openstack.org/12488920:54
rm_workredrobot: how did your demo go this morning?20:55
redrobotrm_work pretty good actually!  The a/v guy couldn't get set up in time, though so I won't be a youtube superstar after all.  I got a lot of positive feedback from the attendees.20:57
rm_workredrobot: ah sad, I was going to try to watch20:57
redrobotrm_work womp womp...  my talk tomorrow will be taped for sure.  Maybe PyCon US will accept my tutorial too, so that might be another shot at YouTube stardom20:58
rm_workwas chellygel doing a thing too?20:59
redrobotrm_work not for pytexas... she spoke at the SAPUG last night21:00
rm_workah21:00
rm_workright21:00
chellygelyeah, it was fun. SAPUG was a great group :)21:01
rm_workdamn, I might have actually been able to make SAPUG for once... I usually have a thing on Thursdays but it was cancelled yesterday <_<21:02
rm_workah well21:03
*** kebray has quit IRC21:03
rm_workfortunately I don't have to go to a usergroup meeting or conference to hear chellygel or redrobot say things :P21:03
chellygelhahaha21:04
chellygelno you jsut come bug the shit out of us until we tell you something21:04
chellygel;)21:04
*** juantwo_ has joined #openstack-barbican21:04
rm_workchellygel: it's painfully effective21:04
chellygelOkay, im out! session ended21:04
rm_workI think I owe you guys another cake21:04
chellygelbyeee!!21:04
*** juantwo_ has quit IRC21:04
* rm_work waves21:04
chellygeli'll always take a cake21:05
chellygelor more tacos from erik's21:05
rm_workyeah I should probably have like a monthly "Erik's on me" event to offset the nagging :P21:05
rm_workwoodster_ / redrobot / chellygel let me know a date :P21:05
rm_workredrobot: https://review.openstack.org/#/c/124889/1/barbicanclient/barbican_cli/containers.py did I explain that sufficiently, do you think?21:06
*** juantwo has quit IRC21:07
woodster_rm_work: funny! Will +2 for food21:38
*** paul_glass has quit IRC21:39
*** kebray has joined #openstack-barbican21:58
*** kebray has quit IRC21:58
*** kebray has joined #openstack-barbican21:59
*** ametts has quit IRC22:06
*** gyee has joined #openstack-barbican22:29
*** dimtruck is now known as zz_dimtruck22:29
*** ayoung is now known as ayoung-dad-mode22:32
*** kebray has quit IRC22:32
*** juantwo has joined #openstack-barbican22:53
*** juantwo has quit IRC22:53
*** juantwo has joined #openstack-barbican22:53
*** rtom_ has quit IRC23:13

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