*** nkinder has quit IRC | 00:00 | |
*** tkelsey has joined #openstack-barbican | 01:02 | |
*** tkelsey has quit IRC | 01:06 | |
*** alee has quit IRC | 01:25 | |
*** xurong has joined #openstack-barbican | 01:30 | |
xurong | Hi folkers, i want to setup barbican dev env, i can not find any guide doc, plse help me | 01:31 |
---|---|---|
*** xurong has quit IRC | 01:46 | |
*** zz_dimtruck is now known as dimtruck | 01:53 | |
*** xurong has joined #openstack-barbican | 02:01 | |
*** dimtruck is now known as zz_dimtruck | 02:11 | |
*** xurong has quit IRC | 02:20 | |
*** xurong has joined #openstack-barbican | 02:25 | |
*** xurong has quit IRC | 02:45 | |
*** stevemar has quit IRC | 02:54 | |
*** zz_dimtruck is now known as dimtruck | 02:54 | |
*** xurong has joined #openstack-barbican | 03:10 | |
*** jorge_munoz has quit IRC | 03:15 | |
*** jorge_munoz has joined #openstack-barbican | 03:19 | |
*** xurong has quit IRC | 03:26 | |
*** dave-mccowan has quit IRC | 03:32 | |
*** dave-mccowan has joined #openstack-barbican | 03:32 | |
*** dave-mccowan has quit IRC | 03:36 | |
*** xurong has joined #openstack-barbican | 03:45 | |
*** xurong has quit IRC | 03:55 | |
*** tkelsey has joined #openstack-barbican | 04:04 | |
*** tkelsey has quit IRC | 04:08 | |
*** silos has joined #openstack-barbican | 04:33 | |
*** dimtruck is now known as zz_dimtruck | 04:46 | |
*** zz_dimtruck is now known as dimtruck | 04:54 | |
*** silos has quit IRC | 05:19 | |
*** jaosorior has joined #openstack-barbican | 05:28 | |
*** xurong has joined #openstack-barbican | 05:31 | |
*** jorge_munoz has quit IRC | 05:34 | |
*** xurong has quit IRC | 06:24 | |
*** andreas_s has joined #openstack-barbican | 06:36 | |
*** dimtruck is now known as zz_dimtruck | 06:37 | |
*** xurong has joined #openstack-barbican | 06:42 | |
*** pcaruana has joined #openstack-barbican | 06:52 | |
*** Kevin_Zheng has quit IRC | 07:13 | |
*** woodster_ has quit IRC | 07:18 | |
*** xurong has quit IRC | 07:23 | |
*** chlong|rhce_trng has quit IRC | 07:27 | |
*** xurong has joined #openstack-barbican | 07:42 | |
*** alee has joined #openstack-barbican | 07:46 | |
*** xurong has quit IRC | 08:20 | |
*** Kevin_Zheng has joined #openstack-barbican | 08:33 | |
*** xurong has joined #openstack-barbican | 08:41 | |
*** permalac__ has quit IRC | 08:47 | |
*** permalac has joined #openstack-barbican | 08:50 | |
*** jaosorior has quit IRC | 09:09 | |
*** jaosorior has joined #openstack-barbican | 09:10 | |
haypo | hello. 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 |
haypo | does 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 |
haypo | i'm able to reproduce the error, but i also get the error in the master branch... | 09:12 |
*** openstackgerrit has quit IRC | 09:18 | |
*** openstackgerrit has joined #openstack-barbican | 09:18 | |
*** xurong has quit IRC | 09:32 | |
jaosorior | haypo: No idea, I actually don't get that error :/ | 09:41 |
jaosorior | running tox -r now | 09:42 |
haypo | jaosorior: do you have a barbican config in /etc ? | 09:42 |
haypo | jaosorior: did you configure a DB somehow? | 09:42 |
jaosorior | I do have it in /etc | 09:43 |
jaosorior | let me remove it and try again | 09:43 |
jaosorior | haypo: Removed /etc/barbican and it still worked | 09:46 |
jaosorior | wait | 09:46 |
jaosorior | no | 09:46 |
jaosorior | py34 didn't work | 09:46 |
haypo | jaosorior: the test fails too on py27 | 09:46 |
jaosorior | haypo: py27 worked for me | 09:47 |
haypo | jaosorior: 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 configured | 09:48 |
haypo | i'm now trying the regular "tox -e py27" | 09:49 |
haypo | py27: commands succeeded | 09:50 |
haypo | new try on a fresh repository. tox -e py34: py34: commands succeeded | 09:52 |
haypo | jaosorior: hum. the problem is that "tox -e py27" and "testr run barbican.tests.cmd.test_cmd" in the .tox/py27 venv behaves differently | 09:52 |
haypo | it looks like the test depends on the order in which tests are run | 09:52 |
jaosorior | haypo: it seems so | 09:52 |
haypo | maybe a previous test sets sql_connection config var | 09:52 |
jaosorior | I went ahead and deleted .testrepository/ and .tox/ | 09:52 |
jaosorior | and tox again | 09:53 |
jaosorior | and all the tests are green on my machine | 09:53 |
haypo | jaosorior: you may need multiple runs. it looks like a random failure, it may depend on the randomized hash function of python3 | 09:53 |
haypo | jaosorior: 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 venv | 09:54 |
haypo | jaosorior: it probably depends if setup_in_memory_db() is called before or after barbican.tests.cmd.test_cmd runs | 09:55 |
jaosorior | yep, I get the error when doing . .tox/py27/bin/activate; testr run barbican.tests.cmd.test_cmd | 09:57 |
haypo | WhenInvokingWorkerCommand inherits from tests.utils.BaseTestCase which is documented as "DEPRECATED - Will remove in future refactoring.", nice :) | 09:57 |
haypo | jaosorior: ah, it works with that: http://paste.openstack.org/show/520908/ | 09:58 |
haypo | setup_in_memory_db() is not a fixture: it doesn't restore the previous value when the test completes | 09:59 |
haypo | so i was right, it depends if setup_in_memory_db() has been called before barbican.tests.cmd.test_cmd runs | 09:59 |
jaosorior | haypo: Can you push a patch for that? | 10:01 |
haypo | jaosorior: 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 |
jaosorior | haypo: Whatever you prefer | 10:02 |
*** xurong has joined #openstack-barbican | 10:02 | |
haypo | jaosorior: hum. the risk is that my change makes the gate unstable :-/ | 10:02 |
jaosorior | haypo: 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 it | 10:05 |
haypo | jaosorior: i prefer to write a separated change | 10:05 |
jaosorior | haypo: Alright then | 10:05 |
openstackgerrit | Victor Stinner proposed openstack/barbican: Port last test (test_secrets) to Python 3 https://review.openstack.org/329427 | 10:10 |
openstackgerrit | Victor Stinner proposed openstack/barbican: Port test_quotas to Python 3 https://review.openstack.org/329426 | 10:10 |
openstackgerrit | Victor Stinner proposed openstack/barbican: Port 3 more unit tests to Python 3 https://review.openstack.org/329354 | 10:10 |
openstackgerrit | Victor Stinner proposed openstack/barbican: Setup memory DB in test_cmd https://review.openstack.org/332053 | 10:10 |
haypo | jaosorior: ^^ "Setup memory DB in test_cmd" is now on the top of my patch serie | 10:10 |
jaosorior | ok | 10:10 |
jaosorior | lets see if that does the trick | 10:10 |
*** xurong has quit IRC | 10:26 | |
*** Kevin_Zheng has quit IRC | 10:43 | |
*** chlong|rhce_trng has joined #openstack-barbican | 10:50 | |
alee | hyakuhei, ping | 10:54 |
*** xurong has joined #openstack-barbican | 11:04 | |
*** xurong has quit IRC | 11:24 | |
*** xurong has joined #openstack-barbican | 11:34 | |
*** dave-mccowan has joined #openstack-barbican | 12:11 | |
*** xurong has quit IRC | 12:13 | |
*** xurong has joined #openstack-barbican | 12:23 | |
*** xurong has quit IRC | 12:33 | |
*** tkelsey has joined #openstack-barbican | 12:37 | |
*** xurong has joined #openstack-barbican | 12:40 | |
openstackgerrit | Merged openstack/barbican: Setup memory DB in test_cmd https://review.openstack.org/332053 | 12:45 |
openstackgerrit | Merged openstack/barbican: Port 3 more unit tests to Python 3 https://review.openstack.org/329354 | 12:45 |
*** xurong has quit IRC | 12:57 | |
openstackgerrit | Merged openstack/barbican: Port test_quotas to Python 3 https://review.openstack.org/329426 | 13:10 |
*** zz_dimtruck is now known as dimtruck | 13:13 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 13:14 | |
*** kfarr has joined #openstack-barbican | 13:18 | |
*** tkelsey has quit IRC | 13:38 | |
*** alee has quit IRC | 13:44 | |
*** alee has joined #openstack-barbican | 13:44 | |
*** openstackgerrit has quit IRC | 13:48 | |
*** openstackgerrit has joined #openstack-barbican | 13:48 | |
*** kencjohnston_ is now known as kencjohnston | 13:57 | |
*** kencjohnston has quit IRC | 13:57 | |
*** kencjohnston has joined #openstack-barbican | 13:58 | |
*** jaosorior has quit IRC | 14:01 | |
*** kencjohnston has quit IRC | 14:03 | |
*** kencjohnston has joined #openstack-barbican | 14:04 | |
*** kencjohnston has quit IRC | 14:07 | |
*** kencjohnston has joined #openstack-barbican | 14:08 | |
*** kencjohnston has quit IRC | 14:11 | |
*** stevemar has joined #openstack-barbican | 14:12 | |
*** kencjohnston has joined #openstack-barbican | 14:12 | |
*** kencjohnston has quit IRC | 14:13 | |
*** kencjohnston has joined #openstack-barbican | 14:14 | |
*** kencjohnston has quit IRC | 14:15 | |
*** dimtruck is now known as zz_dimtruck | 14:16 | |
*** kencjohnston has joined #openstack-barbican | 14:16 | |
hyakuhei | hey alee just saw your ping | 14:20 |
alee | hyakuhei, hey -- was just thinking about certmonger and certs and upcoming summit talks | 14:27 |
alee | hyakuhei, we do still need to write that chapter on cert management in the security guide | 14:27 |
hyakuhei | oh yeah, I still like the idea of doing a PKI in OpenStack talk of some sort | 14:27 |
hyakuhei | alee: yes we do. Pants. | 14:27 |
hyakuhei | (Forgot) | 14:27 |
alee | hyakuhei, and yeah -- I was thinking of a talk on PKI in openstakc with me, you and jaosorior | 14:28 |
alee | Juan has been doing lots of work getting certmonger into triple -o | 14:28 |
alee | puppet modules and setting up tls and what not | 14:29 |
alee | hyakuhei, I can propose a talk on PKI if you like, or you can. | 14:30 |
alee | redrobot, did we ever get those docs set up for a deployment guide for barbican? | 14:31 |
hyakuhei | Maybe we can throw up a quick google doc for the conference submissions? Don’t really mind who submits. | 14:32 |
alee | hyakuhei, sounds like a good plan | 14:33 |
*** spotz_zzz is now known as spotz | 14:33 | |
alee | hyakuhei, 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 |
alee | hyakuhei, we're all actually roughly in the same time zone these days. | 14:35 |
*** randallburt has joined #openstack-barbican | 14:37 | |
*** randallburt1 has joined #openstack-barbican | 14:39 | |
*** silos has joined #openstack-barbican | 14:40 | |
*** randallburt has quit IRC | 14:41 | |
*** jorge_munoz has joined #openstack-barbican | 14:42 | |
*** zz_dimtruck is now known as dimtruck | 14:47 | |
*** edtubill has joined #openstack-barbican | 14:49 | |
*** nkinder has joined #openstack-barbican | 14:50 | |
*** asingh has joined #openstack-barbican | 14:57 | |
*** jorge_munoz_ has joined #openstack-barbican | 15:01 | |
*** jorge_munoz has quit IRC | 15:02 | |
*** jorge_munoz_ is now known as jorge_munoz | 15:02 | |
*** dimtruck is now known as zz_dimtruck | 15:05 | |
*** andreas_s has quit IRC | 15:23 | |
*** zz_dimtruck is now known as dimtruck | 15:33 | |
*** kebray has joined #openstack-barbican | 15:33 | |
*** pcaruana has quit IRC | 15:35 | |
*** jaosorior has joined #openstack-barbican | 15:39 | |
*** jmckind has joined #openstack-barbican | 15:42 | |
*** gyee has joined #openstack-barbican | 15:53 | |
-openstackstatus- NOTICE: Gerrit is being restarted now to apply an emergency security-related configuration change | 16:04 | |
*** silos has quit IRC | 16:10 | |
*** silos has joined #openstack-barbican | 16:11 | |
*** silos has quit IRC | 16:13 | |
*** diazjf has joined #openstack-barbican | 16:22 | |
*** stevemar has quit IRC | 16:29 | |
*** randallburt1 has quit IRC | 16:37 | |
*** randallburt has joined #openstack-barbican | 16:39 | |
*** jaosorior has quit IRC | 16:40 | |
*** diazjf has quit IRC | 16:45 | |
*** diazjf has joined #openstack-barbican | 16:50 | |
*** catintheroof has joined #openstack-barbican | 16:53 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/barbican: Updated from global requirements https://review.openstack.org/327360 | 17:07 |
*** jmckind has quit IRC | 17:13 | |
*** rbradfor has quit IRC | 17:25 | |
*** stevemar has joined #openstack-barbican | 17:36 | |
*** pcaruana has joined #openstack-barbican | 17:40 | |
*** randallburt has quit IRC | 17:42 | |
*** randallburt has joined #openstack-barbican | 17:52 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/barbican: Updated from global requirements https://review.openstack.org/327360 | 17:57 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/castellan: Updated from global requirements https://review.openstack.org/327361 | 17:57 |
*** asingh has quit IRC | 18:02 | |
*** asingh has joined #openstack-barbican | 18:03 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-barbicanclient: Updated from global requirements https://review.openstack.org/332359 | 18:04 |
*** pcaruana has quit IRC | 18:22 | |
*** kebray has quit IRC | 18:30 | |
*** kebray has joined #openstack-barbican | 18:36 | |
*** kebray has quit IRC | 18:41 | |
*** jmckind has joined #openstack-barbican | 18:42 | |
*** kebray has joined #openstack-barbican | 18:44 | |
*** catintheroof has quit IRC | 18:51 | |
*** catintheroof has joined #openstack-barbican | 18:51 | |
*** jaosorior has joined #openstack-barbican | 18:52 | |
*** jaosorior has quit IRC | 19:05 | |
*** kebray has quit IRC | 19:10 | |
*** gyee has quit IRC | 19:19 | |
*** edtubill has quit IRC | 19:26 | |
*** permalac_ has joined #openstack-barbican | 19:27 | |
*** silos has joined #openstack-barbican | 19:27 | |
*** silos has quit IRC | 19:27 | |
*** silos has joined #openstack-barbican | 19:27 | |
*** silos has quit IRC | 19:27 | |
*** silos has joined #openstack-barbican | 19:28 | |
*** permalac has quit IRC | 19:31 | |
*** dave-mccowan has quit IRC | 19:36 | |
*** dave-mccowan has joined #openstack-barbican | 19:40 | |
*** dave-mccowan has quit IRC | 19:45 | |
*** dave-mcc_ has joined #openstack-barbican | 19:45 | |
*** silos has quit IRC | 19:48 | |
*** silos has joined #openstack-barbican | 19:52 | |
*** silos has quit IRC | 19:53 | |
*** jmckind has quit IRC | 19:57 | |
*** rhagarty has quit IRC | 20:00 | |
*** rhagarty has joined #openstack-barbican | 20:01 | |
*** rhagarty_ has joined #openstack-barbican | 20:02 | |
*** silos has joined #openstack-barbican | 20:03 | |
*** jmckind has joined #openstack-barbican | 20:03 | |
openstackgerrit | Merged openstack/barbican: Port last test (test_secrets) to Python 3 https://review.openstack.org/329427 | 20:04 |
*** rhagarty has quit IRC | 20:06 | |
*** silos has quit IRC | 20: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-barbican | 20:22 | |
*** edtubill has quit IRC | 20:29 | |
diazjf | haypo awesome :) | 20:32 |
*** edtubill has joined #openstack-barbican | 20:35 | |
*** edtubill has quit IRC | 20:38 | |
*** spotz is now known as spotz_zzz | 20:38 | |
*** edtubill has joined #openstack-barbican | 20:43 | |
*** edtubill has quit IRC | 20:47 | |
*** kebray has joined #openstack-barbican | 20:50 | |
*** gyee has joined #openstack-barbican | 21:00 | |
diazjf | jmckind, reviewing your patch. I probably submit my drafts late tonight. | 21:01 |
*** kebray has quit IRC | 21:01 | |
*** kebray has joined #openstack-barbican | 21:02 | |
*** kebray has quit IRC | 21:10 | |
jmckind | thanks diazjf | 21:11 |
*** kebray has joined #openstack-barbican | 21:16 | |
*** rhagarty has joined #openstack-barbican | 21:18 | |
*** rhagarty_ has quit IRC | 21:19 | |
*** spotz_zzz is now known as spotz | 21:21 | |
openstackgerrit | Merged openstack/barbican: Updated from global requirements https://review.openstack.org/327360 | 21:22 |
*** rhagarty has quit IRC | 21:23 | |
*** rhagarty has joined #openstack-barbican | 21:23 | |
*** rhagarty_ has joined #openstack-barbican | 21:26 | |
*** rhagarty has quit IRC | 21:29 | |
*** kfarr has quit IRC | 21:38 | |
*** dimtruck is now known as zz_dimtruck | 21:38 | |
*** kebray has quit IRC | 21:42 | |
*** kebray has joined #openstack-barbican | 21:45 | |
*** randallburt has quit IRC | 21:45 | |
*** asingh has quit IRC | 21:46 | |
*** stevemar has quit IRC | 21:47 | |
*** chlong|rhce_trng has quit IRC | 21:48 | |
*** zz_dimtruck is now known as dimtruck | 21:49 | |
*** dimtruck is now known as zz_dimtruck | 21:50 | |
*** catintheroof has quit IRC | 21:51 | |
*** jmckind has quit IRC | 21:52 | |
*** asingh has joined #openstack-barbican | 22:08 | |
*** edtubill has joined #openstack-barbican | 22:13 | |
*** edtubill has quit IRC | 22:17 | |
*** diazjf has quit IRC | 22:22 | |
*** rcarrillocruz has quit IRC | 22:39 | |
*** rcarrillocruz has joined #openstack-barbican | 22:40 | |
*** edtubill has joined #openstack-barbican | 22:47 | |
*** chlong has joined #openstack-barbican | 23:02 | |
*** kebray has quit IRC | 23:03 | |
*** stevemar has joined #openstack-barbican | 23:07 | |
*** spotz is now known as spotz_zzz | 23:10 | |
*** asingh has quit IRC | 23:11 | |
*** stevemar has quit IRC | 23:12 | |
*** kebray has joined #openstack-barbican | 23:16 | |
*** stevemar has joined #openstack-barbican | 23:18 | |
*** edtubill has quit IRC | 23:22 | |
*** edtubill has joined #openstack-barbican | 23:23 | |
*** asingh has joined #openstack-barbican | 23:30 | |
*** zz_dimtruck is now known as dimtruck | 23:31 | |
*** asingh has quit IRC | 23:42 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!