Monday, 2016-06-27

*** cheneydc has joined #openstack-trove01:04
*** amit213 has joined #openstack-trove02:39
*** arist has quit IRC03:24
*** arist has joined #openstack-trove03:24
*** robcresswell has quit IRC03:24
*** robcresswell has joined #openstack-trove03:27
*** irdkehn_ has quit IRC03:47
*** irdkehn has joined #openstack-trove03:48
*** links has joined #openstack-trove04:15
*** amit213 has quit IRC04:46
*** mariusv has quit IRC05:36
*** diga has joined #openstack-trove05:47
*** mariusv has joined #openstack-trove05:50
*** mariusv has quit IRC05:51
*** sgotliv__ has joined #openstack-trove06:17
*** rcernin has joined #openstack-trove06:27
*** M00nr41n has joined #openstack-trove06:33
*** pcaruana has joined #openstack-trove06:41
*** tesseract- has joined #openstack-trove06:59
*** Ravikiran_K has joined #openstack-trove07:04
*** dmk0202 has joined #openstack-trove07:31
*** haypo has joined #openstack-trove08:14
*** itisha has joined #openstack-trove08:28
*** tosky has joined #openstack-trove09:47
openstackgerritVictor Stinner proposed openstack/trove: Switch from MySQL-python to PyMySQL  https://review.openstack.org/18440009:50
*** cheneydc has quit IRC10:06
*** links has quit IRC10:43
*** abruanese has quit IRC10:50
*** abruanese has joined #openstack-trove10:53
*** links has joined #openstack-trove10:55
*** xb_ has joined #openstack-trove11:22
*** mariusv has joined #openstack-trove11:24
*** mariusv has quit IRC11:24
*** mariusv has joined #openstack-trove11:24
*** mariusv has quit IRC11:24
*** abruanese has quit IRC11:31
*** abruanese has joined #openstack-trove11:32
*** pmackinn has joined #openstack-trove11:44
*** diga has quit IRC12:11
openstackgerritEmilien Macchi proposed openstack/trove: devstack: use git_timed if TROVE_DASHBOARD_DIR does not exist  https://review.openstack.org/33446012:57
EmilienMamrith: can you look ^ please? gate-tempest-dsvm-layer4 is failing all the time in tempest gate: http://logs.openstack.org/09/334209/4/check/gate-tempest-dsvm-layer4/8df82b6/logs/devstacklog.txt.gz#_2016-06-27_01_19_07_47612:59
peterstacEmilienM, to fix that issue in Trove I added trove-dashboard to the PROJECTS variable in the relevant gate jobs13:28
EmilienMpeterstac: where?13:29
peterstachttps://review.openstack.org/#/c/331738/13:30
EmilienMpeterstac: the issue is still here13:32
peterstacI haven't seen it since the fix went in ...13:32
peterstac(at least not in Trove ;) )13:33
peterstacI suspect that it'll have to be added to the {pipeline}-tempest-dsvm-layer4{job-suffix} job in jenkins/jobs/devstack-gate.yaml13:35
peterstacI didn't know that Trove jobs were run outside of Trove :(13:36
peterstacBut I can see from the code there that it's enabling the trove plugin13:37
peterstacDo you want me to push up a fix?13:37
*** bwe_ has joined #openstack-trove13:45
EmilienMpeterstac: https://review.openstack.org/#/c/334485 and https://review.openstack.org/#/c/302473/13:52
*** tosky has quit IRC13:56
*** M00nr41n has quit IRC13:56
*** mfisch has joined #openstack-trove14:06
*** mfisch has quit IRC14:06
*** mfisch has joined #openstack-trove14:06
*** cdelatte has joined #openstack-trove14:13
*** trevormc has joined #openstack-trove14:20
peterstacYep, that looks like it'll fix it (plus this should have already unblocked you - https://review.openstack.org/#/c/334483 )14:30
*** cdelatte has quit IRC14:34
*** Ravikiran_K has quit IRC14:35
*** amit213 has joined #openstack-trove14:43
*** xb_ has quit IRC14:47
trevormcHey I have written a unit test that tests the creation failure of a new agent heartbeat record. I can't get the coverage results to improve. I don't know if I'm running coverage wrong or what, so I'm going to put it up for review so we can see what I'm talking about.14:55
openstackgerritTrevor McCasland proposed openstack/trove: Test creation failure of a new agent heartbeat  https://review.openstack.org/33452515:03
haypousing run_tests.py, is it possible to run a single unit test? i would like to rerun the failing "ERROR: proboscis.case.MethodTest (test_mysql_migration)" test on my PyMySQL change15:03
*** krotscheck is now known as krotscheck_dcm15:05
trevormchaypo: yes it is!15:09
trevormcone sec15:09
trevormchaypo: https://wiki.openstack.org/wiki/Testr#How_can_I_run_just_one_test.3F_Just_some_tests.3F15:09
haypotrevormc: are you sure that *run_tests.py* uses testr ?15:09
haypotrevormc: run_tests.py is used for proboscis tests15:09
trevormchaypo: No not sure but you can see if the test is being called by using "testr list-tests"15:09
*** xb_ has joined #openstack-trove15:10
trevormcI think tox is favored instead of run_tests15:10
haypotrevormc: i'm not trying to change how Trove runs test, but only try to understand a failure15:13
haypotrevormc: again, proboscis tests don't use testr, check yourself: https://github.com/openstack/trove/blob/master/tox.ini#L1315:13
haypobut thanks for your help :)15:14
haypofor the PyMySQL error: trove/db/sqlalchemy/migrate_repo/versions/026_datastore_versions_unique_fix.py calls uc.drop() which raises a pymysql.err.InternalError error, but the file only catchs sqlalchemy.exc.OperationalError15:18
dougshelley66haypo yes i was recently investigating something like that - seems like pymysql doesn't map all the mysql error codes appropriated15:23
dougshelley66s/appropriated/appropriately/15:23
*** johnma has quit IRC15:25
haypodougshelley66: i'm reading MySQLdb/cursors.py: i see a _mysql_exceptions third party module15:26
dougshelley66right but ti seems to be mapping too many errors to "InternalError"15:27
dougshelley66i would think you don't really want to be using "InternalError" too often15:27
haypoi checked with MySQL-Python: uc.drop() of trove/db/sqlalchemy/migrate_repo/versions/026_datastore_versions_unique_fix.py fails with _mysql_exceptions.OperationalError which is wrapped into a SQLAlchemy OperationalError15:29
haypodougshelley66: do you know which part of SQLAlchemy or MySQLdb maps MySQLdb exceptions to SQLAlchemy exceptions?15:29
*** dmk0202 has quit IRC15:30
*** cdelatte has joined #openstack-trove15:34
*** pcaruana has quit IRC15:38
*** plamb_ has quit IRC15:40
*** tesseract- has quit IRC15:40
*** aliadil has joined #openstack-trove15:41
*** M00nr41n has joined #openstack-trove15:41
*** cdelatte has quit IRC15:45
*** cdelatte has joined #openstack-trove15:51
*** cdelatte has quit IRC15:52
*** links has quit IRC15:52
*** tosky has joined #openstack-trove15:52
*** bwe__ has joined #openstack-trove16:05
*** tqtran has joined #openstack-trove16:05
*** bwe_ has quit IRC16:08
*** imandhan has joined #openstack-trove16:27
*** Ravikiran_K has joined #openstack-trove16:44
*** amit213 has quit IRC16:46
openstackgerritVictor Stinner proposed openstack/trove: Switch from MySQL-python to PyMySQL  https://review.openstack.org/18440016:46
haypodougshelley66, trevormc : ok, all tests should pass with this fixed PyMySQL patch ;)16:47
*** bwe__ has quit IRC17:15
*** cdelatte has joined #openstack-trove17:19
*** itisha has quit IRC17:20
*** johnma has joined #openstack-trove17:48
trevormcTypo here: https://github.com/openstack/trove/blob/master/trove/common/pagination.py#L32 -- iterms -> items17:48
openstackgerritTrevor McCasland proposed openstack/trove: Trivial Fix: Fix typo  https://review.openstack.org/33459518:00
*** vkmc__ has joined #openstack-trove18:05
*** rcernin has quit IRC18:34
openstackgerritPeter Stachowski proposed openstack/trove: Add trove tempest plugin  https://review.openstack.org/30247218:53
*** Raman has joined #openstack-trove18:58
*** Raman has left #openstack-trove18:59
*** Raman_ has joined #openstack-trove19:00
*** bwe_ has joined #openstack-trove19:01
*** rcernin has joined #openstack-trove19:03
*** xb_ has quit IRC19:03
*** bwe__ has joined #openstack-trove19:04
*** amit213 has joined #openstack-trove19:04
*** bwe_ has quit IRC19:07
openstackgerritPeter Stachowski proposed openstack/trove-specs: Add DB2 full online backups for DB2  https://review.openstack.org/33056419:22
*** abruanese has quit IRC19:37
openstackgerritMerged openstack/python-troveclient: Add support for modules in cluster-grow  https://review.openstack.org/31322919:56
*** bwe__ has quit IRC20:30
*** vkmc__ has quit IRC20:32
*** catintheroof has joined #openstack-trove20:55
*** trevormc has quit IRC20:57
*** sgotliv__ has quit IRC21:01
*** cdelatte has quit IRC21:03
*** cdelatte has joined #openstack-trove21:03
openstackgerritmariam john proposed openstack/trove-specs: Add DB2 full online backups for DB2  https://review.openstack.org/33056421:14
*** catintheroof has quit IRC21:55
*** johnma has quit IRC22:11
*** imandhan has quit IRC22:17
*** imandhan has joined #openstack-trove22:18
*** clduser has quit IRC22:21
*** clduser has joined #openstack-trove22:21
*** imandhan has quit IRC22:22
*** imandhan has joined #openstack-trove22:35
*** tosky has quit IRC23:51

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