Wednesday, 2014-09-10

*** oomichi has quit IRC00:00
lifelessclarkb: tox is churning away now00:00
clarkblifeless: http://pastie.org/9540391 you should see stuff like that00:00
clarkbthe diff appears to be in the dict within the list00:00
lifelessclarkb: thats comparing two lists00:00
*** yamahata has quit IRC00:01
lifelessanyhow, I'll have a poke00:01
clarkbthanks00:02
lifelesswe could use a structured matcher to unwrap stuff if it truely is dicts beeing affected by randomhash seeds00:02
lifelesswhats up with the tests directory there00:03
lifelessisn't it meant to be in the module ?00:03
lifelessclarkb: this isn't a python problem00:04
lifelessclarkb: that test is comparing a string00:04
lifeless        expect_body = '[{"path": "/barney", "value": "miller", ' \00:04
lifeless                      '"op": "replace"}]'00:04
clarkbarg wtf bbq00:04
clarkbok thanks00:04
clarkbI completely missed that00:04
lifelessclarkb: you are welcome :)00:04
clarkblifeless: one more thing. know a good way to debug segfaulting testr test runners (subunit.run in this case)00:06
lifelesssegfaulting!00:06
clarkblifeless: I am running with testtools now to try and narrow it down but I think the tests are at fault00:06
lifelessgdb00:06
clarkbI was hoping you wouldn't say that00:06
clarkbgdb with python is :(00:06
lifelessit should be :) these days00:06
lifelessgood macro support etc00:06
clarkbbut don't you need to install all the -dbg packages on debian based distros00:07
lifelessthere are two related things00:11
lifelessthere's the debug build python interpreter00:11
gmann_andreaf_: regarding single base class for all tests, i prefer to have separate base class for each kind of tests for example separate base for neutron tests, volume tests, server tests etc.00:11
lifelessand separately there are the detached symbol files for libraries etc00:11
lifelessyou need the latter00:11
gmann_andreaf_: it provides to have clean and separate code for each functionality. Tests which need more than one functionality they can have multiple base class.00:12
lifelessgmann_: you don't need multiple base classes, just use fixtures to combine functionality00:13
gmann_lifeless: yes that is another better way00:14
clarkblifeless: http://pastie.org/9540417 looks like it derped trying to exit00:23
clarkblifeless: so I probably do need the python3.4-dbg package instead?00:23
*** Longgeek has quit IRC00:26
lifelessclarkb: https://docs.python.org/devguide/gdb.html00:26
lifelessclarkb: do you have py-bt as an available command?00:27
clarkbnot in my currently running python. I just installed the dbg package and am building a new virtualenv and deps with it00:28
clarkbhrm still no py-bt00:28
lifelessclarkb: so you don't need to rebuild your virtualenv00:28
lifelessclarkb: the python interpreter with --pydebug is incompatible with regular extensions00:29
lifelessclarkb: use regular python3.4 - installing the package is fine00:29
*** dmorita has joined #openstack-qa00:29
lifelessclarkb: it has the debug symbols, but don't use the debug interpreter00:29
clarkblifeless: ok, just load the symbols onto regular python?00:30
lifelessgdb should do it automatically00:30
clarkbkk will give that a go00:30
clarkbmy paste was prior to installing the -dbg package00:30
clarkbhrm no debugging symbols found. probably because I am running out of a virtualenv00:31
clarkband need to load them manually00:31
*** zz_dimtruck is now known as dimtruck00:31
lifelessbinary path may be wrong yes00:32
lifelesssince virtualenv is evil like that00:32
clarkbya00:33
clarkblifeless: if I load the symbols from /usr/bin/python3.4-dbg it dies on a SIGPIPE broken pipe00:39
clarkbI assume that is the wrong way to get my symbols?00:39
lifelessuhm00:40
lifelessnot necessarily00:40
lifelessare there child processes?00:40
clarkbI did run gdb with --args .tox/py34/bin/python -m testtools.run discover -t ./ .00:41
clarkband __libc_send is complaining. Perhaps I need to load then run?00:41
lifelessno00:42
lifelessthat works for me00:42
lifeless gdb run --args .tox/py34/bin/python -m testtools.run discover -t ./ .00:42
lifelessr00:42
clarkblifeless: did you load `symbol-file /usr/bin/python3.4-dbg` first?00:43
lifelessbtw the macros are in /usr/lib/debug/usr/bin/python3.4m-gdb.py00:43
clarkbyour steps above is how I got the bt that I pasted00:43
lifelessclarkb: thats the debug interpreter, stop touching it00:43
clarkblifeless: where do I get my symbols then?00:43
lifelessclarkb: its fundamentally different00:43
lifeless/usr/lib/debug/usr/lib/python3.400:43
clarkblifeless: yes ok but I haven o symbols00:43
lifelessand00:43
lifeless/usr/lib/debug/usr/lib/x86_64-linux-gnu/libpython3.4m.so.1.000:44
lifelessclarkb: gdb run --symbols /usr/lib/debug/usr/lib/x86_64-linux-gnu/libpython3.4m.so.1.0  --args .tox/py34/bin/python -m testtools.run discover -t ./ .00:44
lifelessr00:44
lifelessruns the test suite ok for me00:45
clarkbit does for me if I don't load any symbols. Loading those above is same thing00:45
clarkbI started a fresh gdb too00:45
lifelesswith --symbols - I'm giving it the symbols file00:46
lifelessfor the same python, not the debug build00:46
clarkbya the paths you have above00:46
* clarkb tries that instead of loading interactively00:46
*** yjiang5 has quit IRC00:46
*** wendar has quit IRC00:47
clarkbnope same thing00:47
lifelessSIGPIPE may just be reflective of you encountering a sigpipe00:47
*** wendar has joined #openstack-qa00:47
lifelesswhich is why I asked about child processes00:47
*** dimtruck has quit IRC00:47
lifelesssee http://www.chiark.greenend.org.uk/ucgi/~cjwatson/blosxom/2009-07-02-python-sigpipe.html00:48
clarkbI am running the same command as you00:48
clarkbor are you doing it in a different repo00:48
lifelessright, but I'm likely running a different test suite00:48
lifelessas you haven't told me what one is breaking00:48
clarkboh I thought I did that sorry. oslo.messaging00:48
lifelesstry setting sigpipe to ignored anyhow00:49
*** dimtruck has joined #openstack-qa00:49
clarkbarg I was in a bad repo too. rootwrap was sigpiping of course00:50
clarkbbecause its rootwrap00:50
*** yamahata has joined #openstack-qa00:54
clarkband this time it exited normally00:58
*** torandu has quit IRC01:01
*** markmcclain has quit IRC01:04
lifelessyou may need to run it a number of times01:04
lifelessits a gc race01:04
lifelesswith a __del__ probably01:04
*** suneelb has quit IRC01:05
lifelessmake sure you're using the regular interpreter01:05
clarkbyup I am using regular interpreter now. and I figured it was so I started it again01:06
clarkbI don't think it is finding the -gdb.py file though so no py-bt yet01:06
clarkbprobably need to load that directly too for the same raisins01:06
clarkbbut one thing at a time01:06
*** dims_ has joined #openstack-qa01:14
openstackgerritEmilien Macchi proposed a change to openstack-dev/grenade: grenade.sh: destroy javelin resources by the end  https://review.openstack.org/12029501:15
*** gmann_ has quit IRC01:18
openstackgerritA change was merged to openstack-dev/devstack: Initialize metadata definitions catalog  https://review.openstack.org/11095501:18
clarkbok I can get it to sigsegv regularly without loading symbols01:23
*** gmann has quit IRC01:23
clarkbnow to try a lot more with symbols01:23
*** gmann has joined #openstack-qa01:25
*** amotoki has joined #openstack-qa01:33
*** oomichi has joined #openstack-qa01:35
*** amotoki has quit IRC01:37
*** mattoliverau has quit IRC01:49
*** mattoliverau has joined #openstack-qa01:50
*** aimon has quit IRC01:51
*** nosnos has joined #openstack-qa01:54
*** jyuso has joined #openstack-qa02:16
*** aimon has joined #openstack-qa02:19
*** harlowja is now known as harlowja_away02:25
*** pcrews has quit IRC02:36
*** arnaud__ has joined #openstack-qa02:40
*** Poornima has joined #openstack-qa02:47
*** adalbas has quit IRC02:48
*** jpich has quit IRC02:52
*** jpich has joined #openstack-qa02:59
*** dims_ has quit IRC03:01
*** dims_ has joined #openstack-qa03:01
*** yjiang5 has joined #openstack-qa03:05
*** dimtruck is now known as zz_dimtruck03:05
*** saurabh_ has joined #openstack-qa03:11
*** saurabh_ has quit IRC03:11
*** saurabh_ has joined #openstack-qa03:11
*** saurabh_ has joined #openstack-qa03:11
*** dims_ has quit IRC03:14
*** dims_ has joined #openstack-qa03:15
*** rfolco has quit IRC03:16
*** dims_ has quit IRC03:19
*** weshay has quit IRC03:25
*** amotoki has joined #openstack-qa03:34
*** SridharG has joined #openstack-qa03:36
*** amotoki has quit IRC03:38
Santoshafazekas: I have resolved the issue by upgrading dnsmasq version to 2.6303:46
*** SridharG has left #openstack-qa03:50
*** saurabh_ has quit IRC04:10
*** melwitt has joined #openstack-qa04:35
*** arnaud__ has quit IRC04:35
*** yamahata has quit IRC04:37
*** arnaud__ has joined #openstack-qa04:42
*** melwitt has quit IRC04:43
*** Poornima has quit IRC04:45
*** cmyster has quit IRC04:46
*** ajo_ has joined #openstack-qa04:48
openstackgerritMasayuki Igawa proposed a change to openstack/tempest: Migrate test_encrypted_cinder_volumes to tempest client  https://review.openstack.org/11190504:50
*** saurabh_ has joined #openstack-qa04:54
*** saurabh_ has quit IRC04:54
*** saurabh_ has joined #openstack-qa04:54
*** saurabh_ has joined #openstack-qa04:54
*** carl_baldwin has joined #openstack-qa04:55
openstackgerritMasayuki Igawa proposed a change to openstack/tempest: Migrate test_encrypted_cinder_volumes to tempest client  https://review.openstack.org/11190504:59
*** saurabh_ has quit IRC05:08
*** rdekel has joined #openstack-qa05:11
*** amotoki has joined #openstack-qa05:11
*** arnaud__ has quit IRC05:14
*** arnaud__ has joined #openstack-qa05:15
*** Poornima has joined #openstack-qa05:16
*** carl_baldwin has quit IRC05:21
*** afazekas_ has joined #openstack-qa05:27
*** chandankumar has joined #openstack-qa05:27
*** cmyster has joined #openstack-qa05:27
*** cmyster has quit IRC05:27
*** cmyster has joined #openstack-qa05:27
*** arnaud__ has quit IRC05:32
*** amotoki_ has joined #openstack-qa05:34
*** ajo_ has quit IRC05:38
*** yfried__ has joined #openstack-qa05:38
*** amotoki_ has quit IRC05:40
*** k4n0 has joined #openstack-qa05:45
*** Santosh has quit IRC05:51
*** SridharG has joined #openstack-qa05:54
*** saurabh_ has joined #openstack-qa06:00
*** saurabh_ has quit IRC06:00
*** saurabh_ has joined #openstack-qa06:00
*** saurabh_ has joined #openstack-qa06:00
*** Madan has joined #openstack-qa06:01
*** arnaud__ has joined #openstack-qa06:03
*** rdekel has quit IRC06:10
*** yjiang5 has quit IRC06:14
*** bkopilov has quit IRC06:14
*** bkopilov has joined #openstack-qa06:15
*** bkopilov has quit IRC06:15
*** bkopilov_wfh has joined #openstack-qa06:15
*** bkopilov_wfh has quit IRC06:16
*** sc68cal has quit IRC06:22
*** neeti has joined #openstack-qa06:23
openstackgerritMasayuki Igawa proposed a change to openstack/tempest-lib: Remove a duplicate ignore rule of pep8  https://review.openstack.org/12032106:23
*** rdekel has joined #openstack-qa06:24
*** sc68cal has joined #openstack-qa06:25
*** flaper87|afk is now known as flaper8706:34
*** rdekel has quit IRC06:36
*** bkopilov has joined #openstack-qa06:38
*** gszasz has joined #openstack-qa06:38
*** pkoniszewski has joined #openstack-qa06:40
*** nmagnezi has joined #openstack-qa06:43
yfried__andreaf_: ping06:48
*** gfidente has joined #openstack-qa07:06
*** k4n0 has quit IRC07:07
*** jpich has quit IRC07:07
*** safchain has joined #openstack-qa07:12
*** dmellado has joined #openstack-qa07:19
yfried__masayukig: posted a question for you https://review.openstack.org/#/c/117714/707:20
*** luqas has joined #openstack-qa07:20
masayukigyfried__: looking07:21
*** k4n0 has joined #openstack-qa07:21
*** jordanP has joined #openstack-qa07:21
yfried__bkopilov: ping07:22
bkopilovyfried__, reply07:22
yfried__bkopilov: https://review.openstack.org/#/c/119611/ this should have a rebase button (left side next to Abandon and Cherry Pick) press it to retrigger CI and loose the bad review from Citrix07:24
bkopilovyfried__, ok thanks a lot07:24
openstackgerritBenny Kopilov proposed a change to openstack/tempest: Glance Negative - chanage image owner  https://review.openstack.org/11961107:26
*** luqas has quit IRC07:26
*** luqas has joined #openstack-qa07:27
mkodererafazekas: do you know why we add resource cleanups, manually terminate the resources and then remove from cleanup in boto test?07:28
mkodererlike https://github.com/openstack/tempest/blob/master/tempest/thirdparty/boto/test_ec2_instance_run.py#L19307:28
*** arnaud__ has quit IRC07:28
mkodererafazekas_: ^07:28
openstackgerritOpenStack Proposal Bot proposed a change to openstack/tempest: Updated from global requirements  https://review.openstack.org/11011007:32
*** yfried has joined #openstack-qa07:35
*** yfried has quit IRC07:35
*** yfried__ has quit IRC07:35
*** amotoki_ has joined #openstack-qa07:35
*** yfried has joined #openstack-qa07:35
afazekas_mkoderer: this termination should be used only if the test code itself already deleted the resource07:37
*** jlanoux has joined #openstack-qa07:38
*** amotoki_ has quit IRC07:40
afazekas_mkoderer:  the resource registered for deletion for handling the error case, the cleanup methods expected to be strict and cry if there is nothing to delete07:40
masayukigyfried__: maybe, you're right.07:41
afazekas_mkoderer: BTW: an explicit wait for termination should be added before that line07:42
*** jlibosva has joined #openstack-qa07:43
masayukigyfried__: This should be 'exceptions.NotFound'. I'll fix it. Thanks.07:43
*** ajo_ has joined #openstack-qa07:44
*** Albert has joined #openstack-qa07:48
*** evgenyf has joined #openstack-qa07:48
mkodererafazekas_: ok the "wait" is missing everywhere and there also: https://review.openstack.org/#/c/115944/707:53
*** yfried has quit IRC07:54
*** qba73 has joined #openstack-qa07:54
openstackgerritMasayuki Igawa proposed a change to openstack/tempest: Migrate test_server_cfn_init to tempest clients  https://review.openstack.org/11771407:55
afazekas_https://review.openstack.org/#/c/119292/ I wonder is it related to a missing wait07:55
openstackgerritMasayuki Igawa proposed a change to openstack/tempest: Migrate test_server_cfn_init to tempest clients  https://review.openstack.org/11771407:56
*** yfried has joined #openstack-qa07:57
*** e0ne has joined #openstack-qa08:00
*** e0ne has quit IRC08:04
*** evgenyf has quit IRC08:18
openstackgerritRavikumar Venkatesan proposed a change to openstack/tempest: test_tokens_nocatalog to identity v3 test_tokens  https://review.openstack.org/9317208:19
*** cnesa10 has joined #openstack-qa08:21
*** evgenyf has joined #openstack-qa08:38
*** yfried has quit IRC08:47
*** e0ne has joined #openstack-qa08:49
*** luqas has quit IRC08:53
*** zz_johnthetubagu is now known as johnthetubaguy08:55
*** neeti has quit IRC08:56
*** neeti has joined #openstack-qa08:56
*** jyuso has quit IRC08:58
*** qba73 has quit IRC09:06
*** qba73 has joined #openstack-qa09:06
openstackgerritSwapnil Kulkarni proposed a change to openstack-dev/devstack: Update multiple backend names in tempest configuration  https://review.openstack.org/12035109:06
openstackgerritA change was merged to openstack-dev/devstack: Fix regression in Cinder volume type creation  https://review.openstack.org/11752209:17
openstackgerritChris Dent proposed a change to openstack-dev/devstack: Replace screen_it() with run_process() throughout  https://review.openstack.org/12007709:20
*** akuznetsova has quit IRC09:21
*** luqas has joined #openstack-qa09:21
*** evgenyf has quit IRC09:22
*** akuznetsova has joined #openstack-qa09:23
*** akuznetsova has quit IRC09:25
*** e0ne has quit IRC09:27
*** e0ne has joined #openstack-qa09:28
*** marun has joined #openstack-qa09:31
*** akuznetsova has joined #openstack-qa09:33
*** cdent has joined #openstack-qa09:34
*** amotoki_ has joined #openstack-qa09:36
*** amotoki_ has quit IRC09:41
*** qba73 has quit IRC09:41
*** nosnos has quit IRC09:41
*** nosnos has joined #openstack-qa09:42
*** qba73 has joined #openstack-qa09:46
*** aix has quit IRC09:47
*** nosnos has quit IRC09:47
*** sergeysh has joined #openstack-qa09:47
*** Qarekhani has joined #openstack-qa09:50
Qarekhanihi09:51
Qarekhanican anyone help me ...09:52
*** evgenyf has joined #openstack-qa09:53
*** Longgeek has joined #openstack-qa09:59
*** marun has quit IRC10:05
*** marun has joined #openstack-qa10:06
Qarekhani"libvirtError: operation failed: filter 'nova-no-nd-reflection' already exists with uuid 89637f16-774a-4b8c-857b-08819c6fcf41" nova-compute .  any idea ???10:10
*** yfried has joined #openstack-qa10:13
yfriedmasayukig: still here?10:15
*** marun has quit IRC10:16
*** cnesa10 has quit IRC10:18
masayukigyfried: yeah, but I'll leave soon, though..10:20
yfriedmasayukig: the stack_delete method is no longer needed. it's now doing the same thing as delete_wrapper.10:21
*** aix has joined #openstack-qa10:21
openstackgerritYair Fried proposed a change to openstack/tempest: Migrate advanced server network to tempest clients  https://review.openstack.org/11312410:22
*** mkollaro has joined #openstack-qa10:24
*** cnesa9 has joined #openstack-qa10:24
masayukigyfried: hmm, ok. I'll check it. Thanks:)10:26
*** evgenyf has quit IRC10:29
*** evgenyf has joined #openstack-qa10:30
*** mdenny has quit IRC10:36
openstackgerritYair Fried proposed a change to openstack/tempest: Adds status check for FloatingIP in scenarios  https://review.openstack.org/10270010:40
coolsvapyfried, seems the https://review.openstack.org/#/c/117621/ has failed merge, should we add a recheck?10:46
*** cnesa9 has quit IRC10:46
*** asselin has quit IRC10:46
*** cnesa9 has joined #openstack-qa10:51
*** cnesa9 has quit IRC10:52
*** cnesa9 has joined #openstack-qa10:53
*** dims_ has joined #openstack-qa10:57
*** dmorita has quit IRC11:00
oomichicoolsvap: "recheck" maybe work for it.11:01
*** Poornima has quit IRC11:02
coolsvapoomichi, thanks done11:02
oomichicoolsvap: nice :-)11:03
*** gmann has quit IRC11:06
*** gmann has joined #openstack-qa11:12
*** Longgeek_ has joined #openstack-qa11:14
*** Longgeek has quit IRC11:18
*** zz_dimtruck is now known as dimtruck11:19
*** neeti has quit IRC11:20
*** dims_ has quit IRC11:21
*** dims_ has joined #openstack-qa11:21
*** dims__ has joined #openstack-qa11:22
coolsvapoomichi, would you like to review a small devstack fix?11:23
oomichicoolsvap: I can do it, can you show the URL?11:24
coolsvapoomichi, thanks i just wanted to confirm first https://review.openstack.org/#/c/120351/11:25
*** dims_ has quit IRC11:25
*** Poornima has joined #openstack-qa11:26
openstackgerritChris Dent proposed a change to openstack-dev/devstack: Replace screen_it() with run_process() throughout  https://review.openstack.org/12007711:29
*** dimtruck is now known as zz_dimtruck11:37
*** amotoki_ has joined #openstack-qa11:37
*** mwagner_lap has quit IRC11:38
oomichicoolsvap: done, but I'm not devstack-core. so I cannot +2 for it.11:39
coolsvapoomichi, thanks!11:39
*** adalbas has joined #openstack-qa11:39
*** zz_dimtruck is now known as dimtruck11:40
*** amotoki_ has quit IRC11:41
openstackgerritChris Dent proposed a change to openstack/tempest: Make SwiftScenarioTest methods public  https://review.openstack.org/12038511:43
openstackgerritafazekas proposed a change to openstack/tempest: Have the EC2 instance test to wait for termination  https://review.openstack.org/12038611:44
afazekas_ianw: ^11:45
*** ajo_ has quit IRC11:46
afazekas_mkoderer: ^11:47
openstackgerritKen'ichi Ohmichi proposed a change to openstack-dev/devstack: Fix the warning message of CINDER_MULTI_LVM_BACKEND  https://review.openstack.org/12038911:49
*** luqas has quit IRC11:49
yfriedcmyster: tempest has image uuid in conf. I think it also has image name somewhere, but the best thing to do (if possible) is to retrieve the name on runtime using image uuid11:54
cmysteryfried: so I still need to know something about an image before hand ?11:54
yfriedcoolsvap: make sure it's not a rebase issue. it that case - recheck won't help11:55
yfriedcmyster: just take the uuid from tempest.conf what else do you need to know?11:56
cmysteractually, nothing... if its always there and IIRC it always is.11:56
cmysterthanks11:56
*** cmyster is now known as cmyster_away11:56
openstackgerritA change was merged to openstack-dev/devstack: Run processes without screen  https://review.openstack.org/11733912:00
*** rfolco has joined #openstack-qa12:03
*** mmedvede has joined #openstack-qa12:12
openstackgerritPhil Day proposed a change to openstack/tempest: Allow new quota types  https://review.openstack.org/12039512:13
*** dkranz has joined #openstack-qa12:21
*** weshay has joined #openstack-qa12:27
*** aysyd has joined #openstack-qa12:27
*** dimtruck is now known as zz_dimtruck12:29
*** dims__ has quit IRC12:34
*** dims_ has joined #openstack-qa12:35
*** mwagner_lap has joined #openstack-qa12:37
*** dims_ has quit IRC12:38
*** dims_ has joined #openstack-qa12:38
openstackgerritPhil Day proposed a change to openstack/tempest: Allow new quota types  https://review.openstack.org/12039512:39
yfrieddkranz: ping12:39
dkranzHi12:39
*** Qarekhani has quit IRC12:40
openstackgerritRohan Kanade proposed a change to openstack/tempest: Add subnet tests for extra attributes  https://review.openstack.org/10632612:40
*** zz_dimtruck is now known as dimtruck12:40
openstackgerritA change was merged to openstack-dev/grenade: Add Ironic sideways migration testing  https://review.openstack.org/11185912:41
*** mwagner_lap has quit IRC12:41
*** mwagner_lap has joined #openstack-qa12:41
*** oomichi has quit IRC12:54
*** yfried has quit IRC12:57
*** Madan has quit IRC12:58
*** afazekas_ has quit IRC13:01
*** aix has quit IRC13:02
cdentdtroyer, sdague I'm struggling to determine if the failures on https://review.openstack.org/#/c/120077/ have anything to do with its changes13:03
*** aix has joined #openstack-qa13:04
sdaguecdent: http://logs.openstack.org/77/120077/5/check/gate-tempest-dsvm-large-ops/9d17c15/logs/screen-n-cpu.txt.gz13:07
*** luqas has joined #openstack-qa13:08
cdentoh buggery13:08
cdentthanks13:08
cdentI know what's causing that13:08
*** mpavlase has joined #openstack-qa13:08
sdagueyeh, I think you lost some quotes13:08
cdentthere's been several changes around that area because the sg call wants quotes, but so does setsid13:10
* cdent pokes13:11
cdentrun_process doesn't like shell redirections13:11
openstackgerritEmily Hugenbruch proposed a change to openstack/tempest: Remove extra tenant_isolation parameter from config file  https://review.openstack.org/12024513:12
*** dustins has joined #openstack-qa13:13
*** mriedem has joined #openstack-qa13:16
*** afazekas_ has joined #openstack-qa13:16
*** amotoki has quit IRC13:21
*** dkranz has quit IRC13:24
*** sabeen1 has quit IRC13:26
openstackgerritA change was merged to openstack-dev/devstack: Set flavor id for Ironic's baremetal flavor  https://review.openstack.org/10781413:31
*** dkranz has joined #openstack-qa13:37
*** torandu has joined #openstack-qa13:38
*** amotoki has joined #openstack-qa13:38
*** markmcclain has joined #openstack-qa13:40
*** markmcclain has quit IRC13:40
*** markmcclain has joined #openstack-qa13:41
*** amotoki has quit IRC13:43
mtreinishjogo: yeah, that means during that period almost all of the cpu usage was waiting for io...13:46
EmilienMsdague: fyi: https://bugs.launchpad.net/tempest/+bug/1367762 (I'm on it)13:49
*** dimtruck is now known as zz_dimtruck13:49
sdagueEmilienM: cool, thanks!13:49
*** yamahata has joined #openstack-qa13:53
*** Longgeek_ has quit IRC13:56
openstackgerritEmilien Macchi proposed a change to openstack/tempest: javelin: fix object destruction  https://review.openstack.org/12042513:57
EmilienMsdague: ^13:57
EmilienMsdague: an error of mine when I pushed "destroy" code13:58
*** adalbas has quit IRC14:01
sdaguethanks14:02
*** dustins_ has joined #openstack-qa14:03
*** dustins has quit IRC14:03
cdentdtroyer: you around? I have a question about output redirection in _run_process of functions-common14:04
dtroyercdent: yup14:05
cdentthere's a line exec 1>/path/to/current-timestamp/log14:05
cdentin lib/nova if using the fake driver and setting up multiple fake nodes14:05
cdentit will try to write to the same log file14:06
cdentand do some clobbering14:06
cdentdo you think it is safe to do 1>> for that line?14:06
cdentor is some other option required14:06
dtroyerhmmm…that may have been happening for some time, maybe14:07
cdent>> won't work with &14:07
cdentfeh14:07
cdentso something else14:07
cdentI'm happy to leave the bug in place as is14:08
cdent(for another time)14:08
*** torandu has quit IRC14:08
cdentbut thought I'd give it a shot14:08
dtroyerthat's a side problem that I think we can actually work around by fixing your root issue14:08
*** rbak has joined #openstack-qa14:08
*** afazekas_ has quit IRC14:08
cdentdtroyer: ?14:09
*** torandu has joined #openstack-qa14:09
cdentis it okay do use a different service name? n-cpu-1 n-cpu-2 etc?14:09
dtroyerthe process redirection in the run_process() call in start_nova_compute() looks like it is a problem too14:09
cdenti've already fixed that14:10
dtroyerit would be if run_process() knew how to match them14:10
dtroyerok, cool14:10
cdentit's in the testing of the fix that I discovered this new problem14:10
*** jecarey has joined #openstack-qa14:10
*** Longgeek has joined #openstack-qa14:11
dtroyerso we either remove the unique service name assumption (the current problem) or skip the is_service_enabled() check14:11
*** rbak_ has joined #openstack-qa14:12
*** atiwari has joined #openstack-qa14:12
dtroyerI don't like appending to the log as it'll interleave them and be a pain to use14:12
cdentyes14:12
*** rbak has quit IRC14:13
cdentthere's this:         [[ ${service} == n-cell-* && ${ENABLED_SERVICES} =~ "n-cell" ]] && enabled=014:13
dtroyerwait, if CURRENT_LOG_TIME was actually updated they would be unique, then it reduces to just identifying which is which.  but hanving the timestamp on all the logs be the same is handy in a dir full of them14:13
cdentadd a n-cpu-* and it ought to be okay14:13
dtroyerI'm looking for a general solution first, but we may fall back to something like that14:14
*** pcrews has joined #openstack-qa14:15
cdentthe granularity on CURRENT_LOG_TIME is only seconds, which is probably not enough14:15
cdent(even if it updated)14:15
dtroyerok, so try this14:15
dtroyerin lib/nova is_nova_enabled() add a check for n-cpu-* before the return 1 line.  n-cell is a special case and eventually needs to be resolved14:16
dtroyerwait...14:17
cdentI think it has to be done in the is_service_enabled, no?14:17
dtroyerI'm trying to remove all of the special-cases in is_service_enabled()14:18
cdentwe're not checking for nova, we're checking for n-cpu14:18
cdentI know :)14:18
dtroyerand move the nova ones into lib/nova for example14:18
dtroyerso...14:18
openstackgerritRob Crittenden proposed a change to openstack-dev/devstack: Configure endpoints to use SSL natively or via proxy  https://review.openstack.org/9885414:19
dtroyeryeah, dammit, it's been to long since I thought about this, you may be right, we can't do wildcards by checking function names...14:19
cdentgyres within gyres14:20
cdentshould I put the hack in and leave a note?14:20
cdentbrb14:20
dtroyeryeah, do that.  this is the same problem as n-cell and is different than the project name tests there.14:24
* cdent is back14:25
cdentmy step-daughter has just left for uni, had to send her off properly14:25
cdentOkay, dtroyer, I'll make it so14:25
dtroyerI suspect long-term we'll need to invent what amounts to array syntax for the service names… n-cpu:1 (something shell-safe).  I'll add that to the service rename list14:28
dtroyerthanks cdent14:28
*** pkoniszewski has quit IRC14:28
*** zz_jgrimm is now known as jgrimm14:28
cdentI have the sense that if I stray to long in devstack I'll never come out14:28
dtroyerI've been here since its third week ;)  nearly 3 years now14:29
*** rwsu has joined #openstack-qa14:30
*** mpaolino has joined #openstack-qa14:30
*** atiwari has quit IRC14:30
*** gszasz has quit IRC14:31
*** Longgeek has quit IRC14:34
openstackgerritChris Dent proposed a change to openstack-dev/devstack: Replace screen_it() with run_process() throughout  https://review.openstack.org/12007714:38
*** dhellmann is now known as dhellmann_14:39
*** dhellmann_ is now known as dhellmann14:40
*** carl_baldwin has joined #openstack-qa14:41
*** carl_baldwin has left #openstack-qa14:42
*** Longgeek has joined #openstack-qa14:42
*** mpaolino has quit IRC14:43
*** jgrimm is now known as zz_jgrimm14:47
*** rwsu has quit IRC14:48
*** Longgeek has quit IRC14:49
*** hemna_ is now known as hemna14:49
openstackgerritSwapnil Kulkarni proposed a change to openstack-dev/devstack: Update multiple backend names in tempest configuration  https://review.openstack.org/12035114:53
*** marun has joined #openstack-qa14:54
*** zz_dimtruck is now known as dimtruck14:55
*** dkranz has quit IRC15:07
*** morganfainberg is now known as morgan15:12
*** morgan is now known as Morgan15:13
openstackgerritKen Giusti proposed a change to openstack-dev/devstack: Add an option to enable version 1.0 of the AMQP messaging protocol  https://review.openstack.org/10911815:14
*** Sukhdev has joined #openstack-qa15:14
*** SridharG has left #openstack-qa15:14
*** Morgan is now known as morgan15:15
*** aix has quit IRC15:17
*** dkranz has joined #openstack-qa15:21
*** mmedvede has quit IRC15:22
*** Sukhdev has quit IRC15:23
*** Sukhdev has joined #openstack-qa15:24
*** [1]evgenyf has joined #openstack-qa15:27
*** marun has quit IRC15:27
sdaguedkranz: so I'm seeing a number of launchpad bugs which seem to be RDO bugs copy and pasted up15:27
sdaguehttps://bugs.launchpad.net/nova/+bug/1280389 being an example15:27
dkranzsdague: just a sec15:27
dkranzsdague: ok15:28
sdagueand I'm mostly trying to figure out the flow here, because it would be one thing if the redhat folks were working these bugs upstream, but they mostly seem to be QA folks triaging RDO things, and then lots of duplicate / split conversations in 2 trackers, which doesn't help anyone.15:29
sdagueI don't have a solution, but it's a common pattern I've seen in trying to triage nova bugs15:29
*** evgenyf has quit IRC15:29
*** [1]evgenyf is now known as evgenyf15:29
dkranzsdague: I will find out what the intent is15:29
sdagueand was curious what your thoughts are15:29
*** cbader has joined #openstack-qa15:30
*** aix has joined #openstack-qa15:30
dkranzI'm in a meeting now but will get back on this in a few hours15:30
sdaguesure, no prob15:30
sdaguethanks for looking at it15:30
*** chandankumar has quit IRC15:33
*** mauricioliima has joined #openstack-qa15:33
dkranzjhenner: ^^^15:33
jhennerdkranz: which line I should start reading from?15:34
*** k4n0 has quit IRC15:34
dkranzjhenner: 11:2715:34
*** Sukhdev has quit IRC15:34
mauricioliimaHello, Somebody know why this error "NameError: name 'stresstest' is not defined" happen?15:35
*** Poornima has quit IRC15:35
jhennerdkranz: I am not sure how can i help there15:36
mauricioliimaI'm trying run stress test on object_storage15:36
mauricioliimaI'm using tempest server15:36
jhennerdkranz: sdague: I am not sure about all the reasons, but we should just open a BZ dup of LP bug if we need the fix in RHOS15:37
*** Sukhdev has joined #openstack-qa15:37
dkranzjhenner: that makes sense to me but was not sure why that was not happening here15:37
sdaguejhenner: so what I'm concerned about is that we end up with staleness all over the place15:38
sdaguebecause there are 9 month old lp artifacts that aren't getting updated15:38
sdagueand BZ which have more technical discussion on the issue15:38
sdagueso I think that if the artifacts are getting duped, than someone needs to be responsible for syncing back all the comments15:39
openstackgerritChris St. Pierre proposed a change to openstack/tempest: Change invalid flavor name  https://review.openstack.org/12045115:40
jhennersdague, dkranz: I was probably lazy to add link to https://bugzilla.redhat.com/show_bug.cgi?id=1076100 to the LP bug15:40
sdaguejhenner: well, I'm less conerned about adding the link15:40
*** amotoki has joined #openstack-qa15:41
sdagueI'm more concerned that there is better info in the BZ than in the lp bug15:41
sdagueso it's not fixable upstream15:41
sdaguebecause lots of useful context is not in our tracker15:41
*** mlavalle has joined #openstack-qa15:41
jhennersdague: well, Stephen asked me on BZ, so I replied on BZ15:42
jhennersdague: so it was not my fault (:15:42
*** mlavalle has quit IRC15:42
dkranzjhenner: It's not about fault15:42
*** mlavalle has joined #openstack-qa15:42
openstackgerritMatt Riedemann proposed a change to openstack-infra/elastic-recheck: Add query for gate-oslo.db-python33 setup failure  https://review.openstack.org/12045215:42
sdagueright, I'm not trying to blame anyone here15:42
dkranzjhenner: We should just make sure that we use LP to make comments on upstream bugs that are expected to have upstream fixes15:43
sdagueI'm trying to figure out what the right model is for this, because if the answer is redhat is going to basically just use BZ, we should just delete the LP bugs15:43
jhennersdague: dkranz: makes sense15:43
dkranzsdague: no, that is not the model15:43
sdaguedkranz: ok15:43
dkranzsdague: the model is what you expect, but with an execution glitch :)15:43
sdaguedkranz: ok, cool15:43
sdaguewell glad I noticed the glitch :)15:44
dkranzsdague: thanks for pointing this out15:44
sdaguethanks for diving in15:44
jhennersdague: the model is that for every bug which can have a LP counterpart, the LP should be there15:44
sdaguejhenner: ok, cool. Can you mark those BZ bugs to make people have the conversation in the LP bug?15:44
openstackgerritChris St. Pierre proposed a change to openstack/tempest: Change invalid flavor name  https://review.openstack.org/12045115:44
jhennersdague: no problem.15:44
sdaguejhenner: thanks!15:44
jhennerdkranz: sdague: we should inform other people about that we should discuss on LP only. I think most of them will agree.15:45
sdaguejhenner: awesome, great. I'll leave that to you guys to message at redhat. I think it will make a more collaborative model.15:46
*** evgenyf has quit IRC15:48
mauricioliimaHello, I'm trying run tempest stress test on object_storage, but this error always happen "NameError: name 'stresstest' is not defined"15:49
*** ZZelle has quit IRC15:52
*** ZZelle has joined #openstack-qa15:53
*** qba73 has quit IRC15:55
*** dkranz has quit IRC15:56
*** zz_jgrimm is now known as jgrimm15:56
*** asselin has joined #openstack-qa16:01
*** dustins_ is now known as dustins16:01
*** arnaud has joined #openstack-qa16:02
openstackgerritA change was merged to openstack-infra/elastic-recheck: Add query for gate-oslo.db-python33 setup failure  https://review.openstack.org/12045216:02
mlavallemtreinish: tomorrow meeting is at 1700 UTC, right?16:03
mtreinishmlavalle: yep16:03
*** arnaud has quit IRC16:03
mlavallemtreinish: ok, I fixed the agenda title in the wiki :-)16:03
mtreinishoops, sloppy copy & paste :)16:04
*** jlanoux has quit IRC16:06
*** jordanP has quit IRC16:08
*** dkranz has joined #openstack-qa16:08
*** mwagner_lap has quit IRC16:09
*** marun has joined #openstack-qa16:10
*** mestery has quit IRC16:10
*** mestery has joined #openstack-qa16:11
openstackgerritAlbert vico proposed a change to openstack/tempest: Improvements into ssh and remote_client classes  https://review.openstack.org/11976216:11
*** rwsu has joined #openstack-qa16:12
*** markmcclain has quit IRC16:12
*** dkranz has quit IRC16:13
*** yjiang5 has joined #openstack-qa16:17
*** chandankumar has joined #openstack-qa16:21
*** dkranz has joined #openstack-qa16:25
*** jlibosva has quit IRC16:26
*** jlibosva has joined #openstack-qa16:26
*** cdent_ has joined #openstack-qa16:27
*** jlibosva has quit IRC16:28
*** cdent has quit IRC16:29
*** cdent_ is now known as cdent16:29
*** melwitt has joined #openstack-qa16:30
*** Albert has quit IRC16:31
*** dkranz has quit IRC16:34
*** chandankumar has quit IRC16:38
*** adalbas has joined #openstack-qa16:43
*** dkranz has joined #openstack-qa16:47
*** mkollaro has quit IRC16:49
openstackgerritA change was merged to openstack-infra/elastic-recheck: Remove fingerprint for bug 1291605  https://review.openstack.org/12022016:50
*** markmcclain has joined #openstack-qa16:51
openstackgerritChris Dent proposed a change to openstack-dev/devstack: Replace screen_it() with run_process() throughout  https://review.openstack.org/12007716:57
*** aix has quit IRC16:58
*** harlowja_away is now known as harlowja16:58
*** suneelb has joined #openstack-qa17:00
*** mmedvede has joined #openstack-qa17:01
*** arnaud has joined #openstack-qa17:07
*** arnaud__ has joined #openstack-qa17:07
*** cnesa9 has quit IRC17:22
openstackgerritA change was merged to openstack-dev/devstack: Source lib/dstat in unstack.sh  https://review.openstack.org/11971517:23
*** chandankumar has joined #openstack-qa17:29
*** e0ne has quit IRC17:33
*** mwagner_lap has joined #openstack-qa17:33
*** Sukhdev has quit IRC17:37
*** Sukhdev has joined #openstack-qa17:38
*** rhsu has joined #openstack-qa17:38
*** safchain has quit IRC17:40
*** masayukig has quit IRC17:45
*** amotoki has quit IRC17:48
*** masayukig has joined #openstack-qa17:51
*** aimon has quit IRC18:02
*** chandankumar has quit IRC18:09
mriedemmtreinish: have you seen this before? https://bugs.launchpad.net/cinder/+bug/136785718:09
*** atiwari has joined #openstack-qa18:11
mtreinishmriedem: yeah I've seen that come and go in the past18:13
mtreinishbut I haven't seen it in a while18:13
mtreinishits part of the reason we migrated the scenarios to addCleanup18:13
mriedemmtreinish: ok i'm going to push a change to make the rest_client waiters timeout a tad more useful18:13
*** yamahata has quit IRC18:13
mtreinishbecause there used to a cleanup bug where it wouldn't detach a volume before delete18:13
mriedemyeah i remember that18:14
mtreinishmriedem: sure patches to make that clearer are always welcome18:14
mtreinishmriedem: hmm, I'm not sure why the 404 didn't cause the wait loop to exit there though18:16
mriedemmtreinish: me neither, so maybe i'm looking at the wrong thing18:16
mriedemthat's why i wanted to put the thing_id in the timeout exception18:17
mriedemotherwise i'm assuming it was the snapshot client not handling the 404, but the code looks correct18:17
*** johnthetubaguy is now known as zz_johnthetubagu18:21
*** morgan is now known as morganfainberg18:23
*** aimon has joined #openstack-qa18:23
*** morganfainberg is now known as morgan18:24
*** arnaud has quit IRC18:25
*** arnaud__ has quit IRC18:25
*** e0ne has joined #openstack-qa18:26
mtreinishmriedem: I think it's there: http://logs.openstack.org/54/119254/2/gate/gate-tempest-dsvm-full/3384549/logs/tempest.txt.gz?#_2014-09-10_15_48_46_68118:26
mtreinishthe GET loop stops and it goes onto server cleanup after that18:26
mtreinishI'm think either we have a leaky add cleanup somewhere and we try the  wait loop again18:28
*** e0ne has quit IRC18:28
mtreinishwhich would explain the 404 at the bottom of the logs for that test18:28
*** safchain has joined #openstack-qa18:28
mtreinishmriedem: oh, nm it's an addCleanup_with_wait call, because the 404 is from tearDownClass not _run_cleanup18:29
*** safchain has quit IRC18:30
mtreinishwhich means that something is doing an addCleanup with a wait loop on that volume18:30
mtreinishlet me look at the test18:30
mtreinishmriedem: yep, that's exactly what is happening: http://git.openstack.org/cgit/openstack/tempest/tree/tempest/scenario/manager.py#n26718:33
*** mlavalle has quit IRC18:33
*** mlavalle has joined #openstack-qa18:34
mtreinishthe volume delete just took longer than a single wait timeout18:34
mtreinishso the wait_for_resource deletion addCleanup() call failed18:34
mriedemmtreinish: ah so double wait for cleanup18:34
mtreinishbut the addCleanUp_with_wait() issues an async delete call, and then adds a wait at the very end18:34
mtreinishby that point the volume has been deleted18:35
mtreinishmriedem: yep18:35
*** chandankumar has joined #openstack-qa18:35
mriedemmtreinish: ok, seems like a simple fix18:35
openstackgerritMatt Riedemann proposed a change to openstack/tempest: Better timeout exception in wait_for_resource_deletion  https://review.openstack.org/12051918:38
mriedemmtreinish: there is the diag patch ^18:38
mriedemmtreinish: were you going to push a patch for the bug fix?18:39
*** chandankumar has quit IRC18:39
mtreinishmriedem: nah, I'll let you have that honor :)18:39
*** e0ne has joined #openstack-qa18:40
openstackgerritJoe Gordon proposed a change to openstack-dev/grenade: Add comment explaining where javelin logs are found  https://review.openstack.org/11958718:40
mriedemmtreinish: is this what you were thinking? https://gist.github.com/mriedem/935c36c7c54cae433f6818:42
cdentdtroyer: this is still happening: http://logs.openstack.org/77/120077/7/check/check-devstack-dsvm-cells/f5054ad/logs/screen-n-cpu.txt.gz18:42
*** e0ne has quit IRC18:43
mtreinishmriedem: I don't think that'll work because if wait_on_delete is false then addCleanup isn't called18:43
mriedemmtreinish: so just ignore wait_on_delete?18:43
mriedemi mean, remove it18:43
mtreinishthe addCleanup_with wait is just a pseudo optimization to issue an async delete command up front and delay the wait loops until the end18:44
mtreinishto avoid the delays on teardown by doing a bunch of sync deletes18:44
mriedemoh18:45
mriedemok, well from what i see, nothing ever calls the scenario manager's create_volume with wait_on_delete=False18:45
mriedemso seems that could be removed and we just always have addCleanup_with_wait - since that's already in there18:46
mtreinishwell actually I think just doing 2 addcleanups first the wait_on_delete one, followed up with a direct delete call18:46
mtreinishwait_on_delete=True makes it a sync delete, so we probably should just do that everytime18:47
mtreinishand ignore the call to addCleanup_with_wait completely18:47
*** Qarekhani has joined #openstack-qa18:47
mriedemok18:48
*** Sukhdev has quit IRC18:49
cdentjogo: yeah, something definitely not right on the run_process stuff with cells, but I'm not sure what18:49
jogocdent: yeah it looks like its run_process related18:50
jogocdent: why did you add line 1710 here https://review.openstack.org/#/c/120077/7/functions-common18:51
cdentjogo, which line?18:52
cdent(1710 doesn't show)18:52
jogo1721*18:52
jogocdent: and why the switch of start_nova_rest and start_nova_compute in start_nova  https://review.openstack.org/#/c/120077/7/lib/nova18:53
cdent1721 is because of line 684 here: https://review.openstack.org/#/c/120077/7/lib/nova (after discussion with dean: log files are clobbered if more than one fake compute nodes)18:54
jogocdent: ahh18:54
jogothat make ssense18:54
jogocdent: that sounds like a seperate patch to me18:55
jogocdent: hopefully making that patch smaller will make it eaier to find the issue18:55
mriedemmtreinish: sorry, i'm still not completely understanding this - when the 2nd waiter runs doesn't it get the 404 back and shouldn't it just exit?18:55
cdentthe change of ordering was an effort to address n-cpu complaning that n-coord was not there and I tried it because when I went back to look at early changes on those lines, the ordering had been different before those functions were extracted18:56
openstackgerritArmando Migliaccio proposed a change to openstack/tempest: Fix MismatchError for LB scenario test  https://review.openstack.org/12053318:56
mriedemmtreinish: oh or is it the case that the wait and delete are running at the same time,18:56
mriedemmtreinish: so this makes the wait synchronized with the delete18:57
cdentthe reason the n-cpu-x change is in this patchset is because with run_process being used the config file handling must be changed and when that config handling is changed the log clobbering is more exposed and problematic18:57
cdentso dtroyer and I decided now was the right time18:57
*** vigneshvar has joined #openstack-qa18:57
jogocdent: ahh I see18:57
jogocdent: anywa lunch time for me, happy debugging18:58
vigneshvarHi guys please review my patch https://review.openstack.org/#/c/117985/ and give your comments18:58
cdentthanks jogo18:58
mtreinishmriedem: so if wait_on_delete==True then 2 addcleanup calls are made, the first is the wait_for_resource_deletion() the second is the a volume delete18:58
openstackgerritDoug Hellmann proposed a change to openstack/qa-specs: Add RSS feed  https://review.openstack.org/12053418:59
openstackgerritDoug Hellmann proposed a change to openstack/qa-specs: Remove templates from toctrees  https://review.openstack.org/12053518:59
mtreinishthe addCleanup( volume delete) gets made by addcleanup_with_wait18:59
openstackgerritDoug Hellmann proposed a change to openstack/qa-specs: Use the current date for the copyright statement  https://review.openstack.org/12053618:59
mriedemyup18:59
mriedemwith you so far :)18:59
mtreinishaddcleanup_with_wait also appends a wait_for_resource_deletion call into a list in tearDownClass18:59
mtreinishmriedem: http://git.openstack.org/cgit/openstack/tempest/tree/tempest/scenario/manager.py#n102819:00
mtreinishso when wait_on_delete is true we end up waiting for deletion twice, once right after the delete call is made (addCleanup is a LIFO)19:00
mtreinishand the second during tearDownClass which happens after the addCleanup stack is done19:00
mriedemok19:01
*** e0ne has joined #openstack-qa19:01
*** chandankumar has joined #openstack-qa19:01
mriedemand the timeout happens where?19:01
mtreinishthe problem here is that the wait done inside the if wait_on_delet with addCleanup timed out, so it failed with a timeout exception19:02
*** dustins has quit IRC19:02
mtreinishbut by the time tearDownClass got around to doing the second wait the volume was deleted19:02
mriedemwhich should make that waiter a no-op right? because it should catch the 404 and stop waiting.19:02
*** dustins has joined #openstack-qa19:03
mtreinishyep, which is what happened, but we had an unhandled timeout exception from the first wait_on_resource_deletion which is that stacktrace you have in the bug19:03
*** e0ne has quit IRC19:04
mriedemok....19:04
mriedemso i'm really just removing an unnecessary 2nd wait call on a resource that is already deleted,19:05
mriedembut the timeout is still an issue regardless,19:05
mriedemso this is just...cleanup/19:05
mriedem?19:05
mriedemat this point you should be kicking yourself for saying i should make the change :P19:06
vigneshvarGuys , devstack related changes must be discussed in which channel ? Any info19:06
mtreinishmriedem: yeah, the volume failed to disappear during a timeout interval19:06
mriedemvigneshvar: this one19:06
*** nmagnezi has quit IRC19:06
mtreinishmriedem: nah, by explaining it to you once, you'll be able to fix all the bugs next time :)19:07
*** marun has quit IRC19:07
vigneshvarmriedem: ok thanks , am in right place. please review my change, when free https://review.openstack.org/#/c/117985/ . Thanks19:07
openstackgerritKen Giusti proposed a change to openstack-dev/devstack: Add an option to enable version 1.0 of the AMQP messaging protocol  https://review.openstack.org/10911819:09
*** markmcclain has quit IRC19:09
vigneshvarAlso I am facing this issue of "Mysql has gone away" in a  server launched using devstack19:10
vigneshvarThis happens in almost all screens randomly19:10
vigneshvarand it works sometimes and fails few times19:10
*** masayukig has quit IRC19:10
vigneshvarAny idea why this happens19:10
openstackgerritMatt Riedemann proposed a change to openstack/tempest: Remove redundant waiter in create_volume cleanup  https://review.openstack.org/12054219:12
mriedemmtreinish: hopefully that makes sense ^19:12
openstackgerritChris Dent proposed a change to openstack-dev/devstack: Replace screen_it() with run_process() throughout  https://review.openstack.org/12007719:15
*** masayukig has joined #openstack-qa19:16
*** mgagne has quit IRC19:18
*** dtroyer has quit IRC19:19
*** mgagne has joined #openstack-qa19:19
*** mgagne is now known as Guest7525019:19
mtreinishmriedem: I had a couple of suggestions, but that's the basic idea19:20
*** dtroyer has joined #openstack-qa19:21
*** nmagnezi has joined #openstack-qa19:21
*** markmcclain has joined #openstack-qa19:30
openstackgerritMatt Riedemann proposed a change to openstack/tempest: Remove redundant waiter in create_volume cleanup  https://review.openstack.org/12054219:30
openstackgerritpatrick-crews proposed a change to openstack-infra/elastic-recheck: Adding query namespace to elastic-recheck  https://review.openstack.org/10195819:32
*** mriedem has quit IRC19:34
*** dimtruck is now known as zz_dimtruck19:40
*** nmagnezi has quit IRC19:42
openstackgerritA change was merged to openstack/qa-specs: Remove docutils pin  https://review.openstack.org/11716419:44
vigneshvarmysql has gone away , any idea this occurs randomly19:47
*** sballe has joined #openstack-qa19:52
*** gordc has joined #openstack-qa19:54
*** nmagnezi has joined #openstack-qa19:57
*** weshay has quit IRC20:00
*** Sukhdev has joined #openstack-qa20:01
*** markmcclain has quit IRC20:03
openstackgerritDoug Hellmann proposed a change to openstack/qa-specs: Use the current date for the copyright statement  https://review.openstack.org/12053620:05
openstackgerritDoug Hellmann proposed a change to openstack/qa-specs: Add RSS feed  https://review.openstack.org/12053420:05
openstackgerritDoug Hellmann proposed a change to openstack/qa-specs: Remove templates from toctrees  https://review.openstack.org/12053520:05
*** ZZelle_ has joined #openstack-qa20:09
ZZelle_mtreinish, hi20:10
*** markmcclain has joined #openstack-qa20:18
mtreinishZZelle_: hi20:21
ZZelle_mtreinish, about https://review.openstack.org/103498 on provider extension tests20:22
ZZelle_mtreinish, i updated the code ... now must of the code is runned in the gate with default configuration20:22
mtreinishZZelle_: ok, I'll take a look and drop my -220:24
ZZelle_mtreinish, but i could not use testscenario as tests because of its daughter change20:24
ZZelle_s/as/in/20:24
mtreinishyeah, I saw your comment on that. I'll take a look at that part too20:25
*** marun has joined #openstack-qa20:28
jogoany idea why neutron-full failures are spiking? http://jogo.github.io/gate/20:31
*** yfried has joined #openstack-qa20:35
*** hockeynut_ has quit IRC20:40
*** dustins has quit IRC20:40
*** chandankumar has quit IRC20:41
*** freyes has quit IRC20:41
*** freyes has joined #openstack-qa20:41
*** krtaylor has quit IRC20:42
*** hockeynut has joined #openstack-qa20:42
*** weshay has joined #openstack-qa20:43
jogomtreinish: where is the req-id for this failure http://logs.openstack.org/58/117258/2/gate/gate-tempest-dsvm-neutron-full/48c8627/console.html20:50
mtreinishjogo: it's in the tempest log file, the console output the log fixture which doesn't understand the req-id field20:52
mtreinishjogo: we need to make a oslo.log fixture to capture it with the right formatting20:53
mtreinishjogo: http://logs.openstack.org/58/117258/2/gate/gate-tempest-dsvm-neutron-full/48c8627/logs/tempest.txt.gz?#_2014-09-10_20_18_56_05020:54
mtreinishthat should line should be the req-id you're looking for20:55
*** nmagnezi has quit IRC20:56
*** marun has quit IRC20:57
jogomtreinish: ahh20:57
jogomtreinish: found the req-id anway20:57
*** rbak_ has quit IRC21:01
*** rfolco has quit IRC21:04
*** rbak has joined #openstack-qa21:07
*** aysyd has quit IRC21:08
*** marun has joined #openstack-qa21:08
*** sabeen has joined #openstack-qa21:10
*** dkranz has quit IRC21:17
*** krtaylor has joined #openstack-qa21:19
*** mestery has quit IRC21:25
*** mestery has joined #openstack-qa21:26
*** Sukhdev has quit IRC21:44
*** Sukhdev has joined #openstack-qa21:44
*** sballe_ has joined #openstack-qa21:45
*** sballe has quit IRC21:49
*** masayukig has quit IRC21:55
jogohttp://logs.openstack.org/35/111635/3/gate/gate-tempest-dsvm-neutron-full/998850f/logs/horizon_error.txt.gz21:57
jogohorizon bug21:57
*** masayukig has joined #openstack-qa22:01
*** jecarey has quit IRC22:01
*** ZZelle_ has quit IRC22:04
*** krtaylor has quit IRC22:04
*** jgrimm is now known as zz_jgrimm22:09
*** dims__ has joined #openstack-qa22:13
*** dims_ has quit IRC22:17
*** dims__ has quit IRC22:18
openstackgerritJoe Gordon proposed a change to openstack-infra/elastic-recheck: Add query for bug 1345955  https://review.openstack.org/12059522:19
*** dims_ has joined #openstack-qa22:19
*** gordc has quit IRC22:20
*** arnaud has joined #openstack-qa22:22
*** arnaud__ has joined #openstack-qa22:22
*** flaper87 is now known as flaper87|afk22:22
*** morgan is now known as morganfainberg22:27
*** jpich has joined #openstack-qa22:29
openstackgerritA change was merged to openstack-infra/elastic-recheck: Add query for bug 1345955  https://review.openstack.org/12059522:32
*** dims_ has quit IRC22:34
*** dims_ has joined #openstack-qa22:35
*** arnaud__ has quit IRC22:36
*** zz_dimtruck is now known as dimtruck22:36
*** marun is now known as marun_afk22:37
*** rhsu has quit IRC22:38
*** dims_ has quit IRC22:39
*** marun_afk has quit IRC22:53
*** sergeysh has quit IRC22:55
*** rockyg has joined #openstack-qa22:56
*** mpavlase has quit IRC22:56
*** rbak has quit IRC23:01
*** vigneshvar has quit IRC23:09
*** melwitt has quit IRC23:09
*** melwitt has joined #openstack-qa23:16
*** melwitt has quit IRC23:16
*** melwitt has joined #openstack-qa23:17
*** melwitt has quit IRC23:17
*** melwitt has joined #openstack-qa23:17
*** melwitt has quit IRC23:18
*** melwitt has joined #openstack-qa23:19
*** yfried has quit IRC23:22
*** cbader has quit IRC23:22
*** melwitt has quit IRC23:26
openstackgerritSwapnil Kulkarni proposed a change to openstack-dev/devstack: Update multiple backend names in tempest configuration  https://review.openstack.org/12035123:41
*** Sukhdev has quit IRC23:44
*** rockyg has quit IRC23:48
*** harlowja has quit IRC23:48
*** harlowja_ has joined #openstack-qa23:48
*** atiwari has quit IRC23:49
*** hemna is now known as hemna_23:53
*** rhsu has joined #openstack-qa23:54

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