Tuesday, 2016-06-21

*** nkinder has quit IRC00:00
*** tkelsey has joined #openstack-barbican01:02
*** tkelsey has quit IRC01:06
*** alee has quit IRC01:25
*** xurong has joined #openstack-barbican01:30
xurongHi folkers, i want to setup barbican dev env, i can not find any guide doc, plse help me01:31
*** xurong has quit IRC01:46
*** zz_dimtruck is now known as dimtruck01:53
*** xurong has joined #openstack-barbican02:01
*** dimtruck is now known as zz_dimtruck02:11
*** xurong has quit IRC02:20
*** xurong has joined #openstack-barbican02:25
*** xurong has quit IRC02:45
*** stevemar has quit IRC02:54
*** zz_dimtruck is now known as dimtruck02:54
*** xurong has joined #openstack-barbican03:10
*** jorge_munoz has quit IRC03:15
*** jorge_munoz has joined #openstack-barbican03:19
*** xurong has quit IRC03:26
*** dave-mccowan has quit IRC03:32
*** dave-mccowan has joined #openstack-barbican03:32
*** dave-mccowan has quit IRC03:36
*** xurong has joined #openstack-barbican03:45
*** xurong has quit IRC03:55
*** tkelsey has joined #openstack-barbican04:04
*** tkelsey has quit IRC04:08
*** silos has joined #openstack-barbican04:33
*** dimtruck is now known as zz_dimtruck04:46
*** zz_dimtruck is now known as dimtruck04:54
*** silos has quit IRC05:19
*** jaosorior has joined #openstack-barbican05:28
*** xurong has joined #openstack-barbican05:31
*** jorge_munoz has quit IRC05:34
*** xurong has quit IRC06:24
*** andreas_s has joined #openstack-barbican06:36
*** dimtruck is now known as zz_dimtruck06:37
*** xurong has joined #openstack-barbican06:42
*** pcaruana has joined #openstack-barbican06:52
*** Kevin_Zheng has quit IRC07:13
*** woodster_ has quit IRC07:18
*** xurong has quit IRC07:23
*** chlong|rhce_trng has quit IRC07:27
*** xurong has joined #openstack-barbican07:42
*** alee has joined #openstack-barbican07:46
*** xurong has quit IRC08:20
*** Kevin_Zheng has joined #openstack-barbican08:33
*** xurong has joined #openstack-barbican08:41
*** permalac__ has quit IRC08:47
*** permalac has joined #openstack-barbican08:50
*** jaosorior has quit IRC09:09
*** jaosorior has joined #openstack-barbican09:10
haypohello. gate-barbican-python34 failed on the jenkins gate, but succeeded on the jenkins check on my change https://review.openstack.org/#/c/329354/09:12
haypodoes anyone have an idea explaining the failure? barbican.tests.cmd.test_cmd.WhenInvokingWorkerCommand.test_should_launch_service fails with "barbican.common.exception.BarbicanException: No SQL connection configured'"09:12
haypoi'm able to reproduce the error, but i also get the error in the master branch...09:12
*** openstackgerrit has quit IRC09:18
*** openstackgerrit has joined #openstack-barbican09:18
*** xurong has quit IRC09:32
jaosoriorhaypo: No idea, I actually don't get that error :/09:41
jaosoriorrunning tox -r now09:42
haypojaosorior: do you have a barbican config in /etc ?09:42
haypojaosorior: did you configure a DB somehow?09:42
jaosoriorI do have it in /etc09:43
jaosoriorlet me remove it and try again09:43
jaosoriorhaypo: Removed /etc/barbican and it still worked09:46
jaosoriorwait09:46
jaosoriorno09:46
jaosoriorpy34 didn't work09:46
haypojaosorior: the test fails too on py2709:46
jaosoriorhaypo: py27 worked for me09:47
haypojaosorior: let me retry. i removed everything to get a fresh repository. tox -e py27 ... ^C . .tox/py27/bin/activate; testr run barbican.tests.cmd.test_cmd ... barbican.common.exception.BarbicanException: No SQL connection configured09:48
haypoi'm now trying the regular "tox -e py27"09:49
haypo  py27: commands succeeded09:50
hayponew try on a fresh repository. tox -e py34:   py34: commands succeeded09:52
haypojaosorior: hum. the problem is that "tox -e py27" and "testr run barbican.tests.cmd.test_cmd" in the .tox/py27 venv behaves differently09:52
haypoit looks like the test depends on the order in which tests are run09:52
jaosoriorhaypo: it seems so09:52
haypomaybe a previous test sets sql_connection config var09:52
jaosoriorI went ahead and deleted .testrepository/ and .tox/09:52
jaosoriorand tox again09:53
jaosoriorand all the tests are green on my machine09:53
haypojaosorior: you may need multiple runs. it looks like a random failure, it may depend on the randomized hash function of python309:53
haypojaosorior: try  "tox -e py27 ... ^C . .tox/py27/bin/activate; testr run barbican.tests.cmd.test_cmd". the first "tox -e py27" is just to create the venv09:54
haypojaosorior: it probably depends if setup_in_memory_db() is called before or after barbican.tests.cmd.test_cmd runs09:55
jaosorioryep, I get the error when doing . .tox/py27/bin/activate; testr run barbican.tests.cmd.test_cmd09:57
haypoWhenInvokingWorkerCommand inherits from tests.utils.BaseTestCase which is documented as "DEPRECATED  - Will remove in future refactoring.", nice :)09:57
haypojaosorior: ah, it works with that: http://paste.openstack.org/show/520908/09:58
hayposetup_in_memory_db() is not a fixture: it doesn't restore the previous value when the test completes09:59
hayposo i was right, it depends if setup_in_memory_db() has been called before barbican.tests.cmd.test_cmd runs09:59
jaosoriorhaypo: Can you push a patch for that?10:01
haypojaosorior: is it worth to fix this bug on top of my patch serie? or should i just force the jenkins with recheck until my change is merged? :-)10:01
jaosoriorhaypo: Whatever you prefer10:02
*** xurong has joined #openstack-barbican10:02
haypojaosorior: hum. the risk is that my change makes the gate unstable :-/10:02
jaosoriorhaypo: what if we do this? We ammend your commit with the possible fix. check that it works a couple of times by rechecking, then I merge it10:05
haypojaosorior: i prefer to write a separated change10:05
jaosoriorhaypo: Alright then10:05
openstackgerritVictor Stinner proposed openstack/barbican: Port last test (test_secrets) to Python 3  https://review.openstack.org/32942710:10
openstackgerritVictor Stinner proposed openstack/barbican: Port test_quotas to Python 3  https://review.openstack.org/32942610:10
openstackgerritVictor Stinner proposed openstack/barbican: Port 3 more unit tests to Python 3  https://review.openstack.org/32935410:10
openstackgerritVictor Stinner proposed openstack/barbican: Setup memory DB in test_cmd  https://review.openstack.org/33205310:10
haypojaosorior: ^^ "Setup memory DB in test_cmd" is now on the top of my patch serie10:10
jaosoriorok10:10
jaosoriorlets see if that does the trick10:10
*** xurong has quit IRC10:26
*** Kevin_Zheng has quit IRC10:43
*** chlong|rhce_trng has joined #openstack-barbican10:50
aleehyakuhei, ping10:54
*** xurong has joined #openstack-barbican11:04
*** xurong has quit IRC11:24
*** xurong has joined #openstack-barbican11:34
*** dave-mccowan has joined #openstack-barbican12:11
*** xurong has quit IRC12:13
*** xurong has joined #openstack-barbican12:23
*** xurong has quit IRC12:33
*** tkelsey has joined #openstack-barbican12:37
*** xurong has joined #openstack-barbican12:40
openstackgerritMerged openstack/barbican: Setup memory DB in test_cmd  https://review.openstack.org/33205312:45
openstackgerritMerged openstack/barbican: Port 3 more unit tests to Python 3  https://review.openstack.org/32935412:45
*** xurong has quit IRC12:57
openstackgerritMerged openstack/barbican: Port test_quotas to Python 3  https://review.openstack.org/32942613:10
*** zz_dimtruck is now known as dimtruck13:13
*** sigmavirus24_awa is now known as sigmavirus2413:14
*** kfarr has joined #openstack-barbican13:18
*** tkelsey has quit IRC13:38
*** alee has quit IRC13:44
*** alee has joined #openstack-barbican13:44
*** openstackgerrit has quit IRC13:48
*** openstackgerrit has joined #openstack-barbican13:48
*** kencjohnston_ is now known as kencjohnston13:57
*** kencjohnston has quit IRC13:57
*** kencjohnston has joined #openstack-barbican13:58
*** jaosorior has quit IRC14:01
*** kencjohnston has quit IRC14:03
*** kencjohnston has joined #openstack-barbican14:04
*** kencjohnston has quit IRC14:07
*** kencjohnston has joined #openstack-barbican14:08
*** kencjohnston has quit IRC14:11
*** stevemar has joined #openstack-barbican14:12
*** kencjohnston has joined #openstack-barbican14:12
*** kencjohnston has quit IRC14:13
*** kencjohnston has joined #openstack-barbican14:14
*** kencjohnston has quit IRC14:15
*** dimtruck is now known as zz_dimtruck14:16
*** kencjohnston has joined #openstack-barbican14:16
hyakuheihey alee just saw your ping14:20
aleehyakuhei, hey -- was just thinking about certmonger and certs and upcoming summit talks14:27
aleehyakuhei, we do still need to write that chapter on cert management in the security guide14:27
hyakuheioh yeah, I still like the idea of doing a PKI in OpenStack talk of some sort14:27
hyakuheialee: yes we do. Pants.14:27
hyakuhei(Forgot)14:27
aleehyakuhei, and yeah -- I was thinking of a talk on PKI in openstakc with me, you and jaosorior14:28
aleeJuan has been doing lots of work getting certmonger into triple -o14:28
aleepuppet modules and setting up tls and what not14:29
aleehyakuhei, I can propose a talk on PKI  if you like, or you can.14:30
aleeredrobot, did we ever get those docs set up for a deployment guide for barbican?14:31
hyakuheiMaybe we can throw up a quick google doc for the conference submissions? Don’t really mind who submits.14:32
aleehyakuhei, sounds like a good plan14:33
*** spotz_zzz is now known as spotz14:33
aleehyakuhei, if you want to fire something up - I'll comment on it and point oz to it when he logs on again tomorrow.14:34
aleehyakuhei, we're all actually roughly in the same time zone these days.14:35
*** randallburt has joined #openstack-barbican14:37
*** randallburt1 has joined #openstack-barbican14:39
*** silos has joined #openstack-barbican14:40
*** randallburt has quit IRC14:41
*** jorge_munoz has joined #openstack-barbican14:42
*** zz_dimtruck is now known as dimtruck14:47
*** edtubill has joined #openstack-barbican14:49
*** nkinder has joined #openstack-barbican14:50
*** asingh has joined #openstack-barbican14:57
*** jorge_munoz_ has joined #openstack-barbican15:01
*** jorge_munoz has quit IRC15:02
*** jorge_munoz_ is now known as jorge_munoz15:02
*** dimtruck is now known as zz_dimtruck15:05
*** andreas_s has quit IRC15:23
*** zz_dimtruck is now known as dimtruck15:33
*** kebray has joined #openstack-barbican15:33
*** pcaruana has quit IRC15:35
*** jaosorior has joined #openstack-barbican15:39
*** jmckind has joined #openstack-barbican15:42
*** gyee has joined #openstack-barbican15:53
-openstackstatus- NOTICE: Gerrit is being restarted now to apply an emergency security-related configuration change16:04
*** silos has quit IRC16:10
*** silos has joined #openstack-barbican16:11
*** silos has quit IRC16:13
*** diazjf has joined #openstack-barbican16:22
*** stevemar has quit IRC16:29
*** randallburt1 has quit IRC16:37
*** randallburt has joined #openstack-barbican16:39
*** jaosorior has quit IRC16:40
*** diazjf has quit IRC16:45
*** diazjf has joined #openstack-barbican16:50
*** catintheroof has joined #openstack-barbican16:53
openstackgerritOpenStack Proposal Bot proposed openstack/barbican: Updated from global requirements  https://review.openstack.org/32736017:07
*** jmckind has quit IRC17:13
*** rbradfor has quit IRC17:25
*** stevemar has joined #openstack-barbican17:36
*** pcaruana has joined #openstack-barbican17:40
*** randallburt has quit IRC17:42
*** randallburt has joined #openstack-barbican17:52
openstackgerritOpenStack Proposal Bot proposed openstack/barbican: Updated from global requirements  https://review.openstack.org/32736017:57
openstackgerritOpenStack Proposal Bot proposed openstack/castellan: Updated from global requirements  https://review.openstack.org/32736117:57
*** asingh has quit IRC18:02
*** asingh has joined #openstack-barbican18:03
openstackgerritOpenStack Proposal Bot proposed openstack/python-barbicanclient: Updated from global requirements  https://review.openstack.org/33235918:04
*** pcaruana has quit IRC18:22
*** kebray has quit IRC18:30
*** kebray has joined #openstack-barbican18:36
*** kebray has quit IRC18:41
*** jmckind has joined #openstack-barbican18:42
*** kebray has joined #openstack-barbican18:44
*** catintheroof has quit IRC18:51
*** catintheroof has joined #openstack-barbican18:51
*** jaosorior has joined #openstack-barbican18:52
*** jaosorior has quit IRC19:05
*** kebray has quit IRC19:10
*** gyee has quit IRC19:19
*** edtubill has quit IRC19:26
*** permalac_ has joined #openstack-barbican19:27
*** silos has joined #openstack-barbican19:27
*** silos has quit IRC19:27
*** silos has joined #openstack-barbican19:27
*** silos has quit IRC19:27
*** silos has joined #openstack-barbican19:28
*** permalac has quit IRC19:31
*** dave-mccowan has quit IRC19:36
*** dave-mccowan has joined #openstack-barbican19:40
*** dave-mccowan has quit IRC19:45
*** dave-mcc_ has joined #openstack-barbican19:45
*** silos has quit IRC19:48
*** silos has joined #openstack-barbican19:52
*** silos has quit IRC19:53
*** jmckind has quit IRC19:57
*** rhagarty has quit IRC20:00
*** rhagarty has joined #openstack-barbican20:01
*** rhagarty_ has joined #openstack-barbican20:02
*** silos has joined #openstack-barbican20:03
*** jmckind has joined #openstack-barbican20:03
openstackgerritMerged openstack/barbican: Port last test (test_secrets) to Python 3  https://review.openstack.org/32942720:04
*** rhagarty has quit IRC20:06
*** silos has quit IRC20:11
haypo"Merged openstack/barbican: Port last test (test_secrets) to Python 3" congrats, barbican now works on python 3. well, at least all unit tests pass ;)20:20
*** edtubill has joined #openstack-barbican20:22
*** edtubill has quit IRC20:29
diazjfhaypo awesome :)20:32
*** edtubill has joined #openstack-barbican20:35
*** edtubill has quit IRC20:38
*** spotz is now known as spotz_zzz20:38
*** edtubill has joined #openstack-barbican20:43
*** edtubill has quit IRC20:47
*** kebray has joined #openstack-barbican20:50
*** gyee has joined #openstack-barbican21:00
diazjfjmckind, reviewing your patch. I probably submit my drafts late tonight.21:01
*** kebray has quit IRC21:01
*** kebray has joined #openstack-barbican21:02
*** kebray has quit IRC21:10
jmckindthanks diazjf21:11
*** kebray has joined #openstack-barbican21:16
*** rhagarty has joined #openstack-barbican21:18
*** rhagarty_ has quit IRC21:19
*** spotz_zzz is now known as spotz21:21
openstackgerritMerged openstack/barbican: Updated from global requirements  https://review.openstack.org/32736021:22
*** rhagarty has quit IRC21:23
*** rhagarty has joined #openstack-barbican21:23
*** rhagarty_ has joined #openstack-barbican21:26
*** rhagarty has quit IRC21:29
*** kfarr has quit IRC21:38
*** dimtruck is now known as zz_dimtruck21:38
*** kebray has quit IRC21:42
*** kebray has joined #openstack-barbican21:45
*** randallburt has quit IRC21:45
*** asingh has quit IRC21:46
*** stevemar has quit IRC21:47
*** chlong|rhce_trng has quit IRC21:48
*** zz_dimtruck is now known as dimtruck21:49
*** dimtruck is now known as zz_dimtruck21:50
*** catintheroof has quit IRC21:51
*** jmckind has quit IRC21:52
*** asingh has joined #openstack-barbican22:08
*** edtubill has joined #openstack-barbican22:13
*** edtubill has quit IRC22:17
*** diazjf has quit IRC22:22
*** rcarrillocruz has quit IRC22:39
*** rcarrillocruz has joined #openstack-barbican22:40
*** edtubill has joined #openstack-barbican22:47
*** chlong has joined #openstack-barbican23:02
*** kebray has quit IRC23:03
*** stevemar has joined #openstack-barbican23:07
*** spotz is now known as spotz_zzz23:10
*** asingh has quit IRC23:11
*** stevemar has quit IRC23:12
*** kebray has joined #openstack-barbican23:16
*** stevemar has joined #openstack-barbican23:18
*** edtubill has quit IRC23:22
*** edtubill has joined #openstack-barbican23:23
*** asingh has joined #openstack-barbican23:30
*** zz_dimtruck is now known as dimtruck23:31
*** asingh has quit IRC23:42

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