Sunday, 2014-03-30

*** saschpe has quit IRC00:00
*** wenlock has quit IRC00:03
*** lcheng has joined #openstack-infra00:04
*** psedlak has quit IRC00:04
*** lcheng has quit IRC00:06
*** saschpe has joined #openstack-infra00:10
fungiheh... zuul post jobs are firing on branch deletion and getting a commit sha of 0000000000000000000000000000000000000000 for the changeish00:18
clarkbyup, gerrit emits that event for us helpfully00:22
openstackgerritA change was merged to openstack-infra/config: Remove grizzly jobs and job filters  https://review.openstack.org/8323200:29
fungii'll keep an eye on things for a bit, then approve the devstack-gate sibling of that00:29
*** msuriar has joined #openstack-infra00:32
*** reed has quit IRC00:33
*** nati_ueno has quit IRC00:35
*** zul has quit IRC00:45
*** zul has joined #openstack-infra00:51
*** gokrokve has joined #openstack-infra00:51
*** psedlak has joined #openstack-infra01:03
*** ildikov_ has quit IRC01:28
*** gokrokve has quit IRC01:31
*** hogepodge has quit IRC01:32
*** gokrokve has joined #openstack-infra01:32
*** gokrokve has quit IRC01:36
*** mihgen has joined #openstack-infra01:40
*** zehicle_at_dell has joined #openstack-infra01:43
*** saschpe has quit IRC01:46
*** CaptTofu has joined #openstack-infra01:46
*** wchrisj has joined #openstack-infra01:50
*** saschpe has joined #openstack-infra01:52
*** dcramer_ has joined #openstack-infra01:57
*** wenlock has joined #openstack-infra02:01
*** imcsk8 has quit IRC02:10
*** CaptTofu has quit IRC02:14
*** mgagne has joined #openstack-infra02:17
*** wchrisj has quit IRC02:21
*** julim has joined #openstack-infra02:23
*** julim has quit IRC02:28
*** CaptTofu has joined #openstack-infra02:32
*** fifieldt has joined #openstack-infra02:45
*** dstanek has joined #openstack-infra02:56
*** sahumada has quit IRC03:03
*** Ryan_Lane has joined #openstack-infra03:08
openstackgerritA change was merged to openstack-infra/devstack-gate: Remove stable/grizzly provisions and workarounds  https://review.openstack.org/8324503:08
*** CaptTofu has quit IRC03:16
*** CaptTofu has joined #openstack-infra03:17
*** sweston has quit IRC03:21
*** CaptTofu has quit IRC03:21
*** dcramer_ has quit IRC03:22
*** Ryan_Lane has quit IRC03:22
*** medieval1_ has quit IRC04:12
*** medieval1 has joined #openstack-infra04:21
*** vkozhukalov has joined #openstack-infra04:36
*** chandan_kumar has joined #openstack-infra04:38
*** mgagne1 has joined #openstack-infra04:43
*** lcheng has joined #openstack-infra04:45
*** mgagne has quit IRC04:47
*** dstanek has quit IRC04:56
*** psedlak has quit IRC05:03
*** Ryan_Lane has joined #openstack-infra05:03
*** pmoosh has quit IRC05:05
*** wenlock has quit IRC05:08
*** psedlak has joined #openstack-infra05:09
*** psedlak has quit IRC05:13
*** gtt116__ has joined #openstack-infra05:17
*** psedlak has joined #openstack-infra05:20
*** gtt116_ has quit IRC05:20
*** julim has joined #openstack-infra05:24
*** julim has quit IRC05:28
*** gokrokve has joined #openstack-infra05:37
*** tchaypo has quit IRC05:46
*** adalbas has quit IRC05:46
*** tchaypo has joined #openstack-infra05:47
*** lcheng has quit IRC05:51
*** adalbas has joined #openstack-infra05:59
*** vkozhukalov has left #openstack-infra06:27
*** jepoy has joined #openstack-infra06:33
*** fifieldt has quit IRC06:33
*** gokrokve has quit IRC06:34
*** gokrokve has joined #openstack-infra06:35
*** yamahata has quit IRC06:37
*** yamahata has joined #openstack-infra06:39
zigolifeless: I used to run ceilometer unit tests using:06:45
zigobash -x ./setup-test-env.sh python setup.py testr --slowest --testr-args='tests\.(?!.*test_bin.*)'06:45
zigoBut now, I'd like to add the --subunit argument.06:45
zigoHow can I do that?06:45
zigoIf I do: bash -x ./setup-test-env.sh python setup.py testr --slowest --testr-args='--subunit  tests\.(?!.*test_bin.*)'06:45
zigoThen it doesn't work ... :(06:45
zigo(I got spited out that there's invalid arguments)06:45
*** gokrokve has quit IRC06:51
*** gokrokve_ has joined #openstack-infra06:52
*** zigo has quit IRC06:56
*** gokrokve_ has quit IRC06:56
*** zigo has joined #openstack-infra06:58
*** mgagne1 has quit IRC07:11
*** dstanek has joined #openstack-infra07:22
*** sweston has joined #openstack-infra07:24
*** julim has joined #openstack-infra07:25
*** roeyc has joined #openstack-infra07:28
*** sweston has quit IRC07:28
*** julim has quit IRC07:33
*** _nadya_ has joined #openstack-infra07:35
*** dstanek has quit IRC07:36
*** denis_makogon has joined #openstack-infra07:48
*** _nadya_ has quit IRC07:53
*** Ryan_Lane has quit IRC08:00
*** basha has joined #openstack-infra08:02
*** yolanda has joined #openstack-infra08:06
*** basha has quit IRC08:10
lifelesszigo: use testr directly?08:10
lifelesszigo: I'm curious why you want the --subunit parameter though08:10
zigolifeless: What command line should I use?08:10
lifelesstestr run ?08:11
zigolifeless: To have the fancy tests.test_<name> ... ok08:11
lifelesszigo: that isn't builtin to testr atm; so that is a reason to use --subunit08:11
lifelessthough I'm curious why you want that output08:11
*** yolanda has quit IRC08:12
*** yolanda has joined #openstack-infra08:13
zigolifeless: I normally do: bash -x ./setup-test-env.sh python setup.py testr --slowest --testr-args='--subunit  tests\.(?!.*test_bin.*)' | tee $$TEMP_REZ | subunit2pyunit08:13
zigoWell, I do for everything else but ceilometer...08:14
zigoThere, I need to disable what's in test_bin.py08:14
zigo(cause it wouldn't work when building the debian package)08:14
lifelessyou can always do08:14
lifeless(after the run)08:15
lifelesstestr last --subunit | subunit2pyunit08:15
zigoWell, the point is to do it *durring* the run.08:15
lifelesswhats the tee in there for ?08:15
lifelesszigo: what does the output do for you ?08:15
*** yolanda has quit IRC08:15
zigoSo that I can put the result into | subunit-filter -s --no-passthrough | subunit-stats08:15
zigoWell, the output shows in my jenkins when the unit tests are running.08:15
zigoSo I see it's still alive.08:16
lifelessok; so thats a common use case - thanks08:16
lifelessanyhow, you don't need the tee08:16
lifelessjust do testr last --subunit08:16
zigoAh?08:16
zigoOk.08:16
*** yolanda has joined #openstack-infra08:16
lifelesstestr is a repository ;)08:16
zigoSure.08:17
lifelessbe pretty sad if you couldn't query it08:17
zigoI'll try later on.08:17
zigoThough my issue isn't that ! :)08:17
zigoMy issue is passing --subunit *AND* tests\.(?!.*test_bin.*) to testr.08:17
lifelessso I don't know about setup-test-env.sh08:17
lifelessbut as I said, you're using the setup.py glue08:17
zigoThat's Ceilometer cruft to run mongodb, you can ignore it.08:17
lifelesswhich I don't support - its too inflexible an interface08:18
zigoHum...08:18
zigoSo what's the command line? :)08:18
lifelesstestr08:18
lifelessthats the command line08:18
zigobash -x ./setup-test-env.sh <WHAT> ?08:18
zigobash -x ./setup-test-env.sh testr <WHAT> ?08:18
lifelesstestr run --subunit 'tests\.(?!.*test_bin.*)'08:18
zigoDo I have to run "testr init" first?08:19
lifelessyup08:20
zigoSeems working now.08:21
zigoI have no idea why it didn't when I tried before... :(08:21
zigoOh yeah, I know: because I used --slowest08:21
zigolifeless: How can I display the slowest later on then?08:22
zigotestr last --slowest ?08:22
zigolifeless: ^08:23
zigo(note: I don't really care, it's just nice to have it...)08:23
*** sweston has joined #openstack-infra08:24
*** irenab has joined #openstack-infra08:26
*** _nadya_ has joined #openstack-infra08:26
*** chandan_kumar has quit IRC08:28
*** sweston has quit IRC08:29
*** yolanda has quit IRC08:30
*** yolanda has joined #openstack-infra08:32
*** flaper87|afk is now known as flaper8708:36
lifelesszigo: 'testr slowest'08:40
zigoThanks! :)08:40
*** yolanda has quit IRC08:40
*** chandan_kumar has joined #openstack-infra08:41
*** yolanda has joined #openstack-infra08:46
*** talluri has joined #openstack-infra08:47
*** afazekas has joined #openstack-infra08:50
*** talluri has quit IRC08:53
*** chandan_kumar has quit IRC08:54
openstackgerritA change was merged to openstack-infra/config: Run e-r batch jobs twice an hour ten minutes apart  https://review.openstack.org/8388108:57
*** chandan_kumar has joined #openstack-infra09:08
*** _nadya_ has quit IRC09:09
*** yamahata has quit IRC09:11
*** jepoy has quit IRC09:15
*** jepoy has joined #openstack-infra09:16
*** sweston has joined #openstack-infra09:25
*** sweston has quit IRC09:30
*** jepoy has quit IRC09:31
*** chandan_kumar has quit IRC09:35
*** mugsie has quit IRC10:16
*** jepoy has joined #openstack-infra10:24
*** sweston has joined #openstack-infra10:25
*** salv-orlando has quit IRC10:28
*** sweston has quit IRC10:30
*** CaptTofu has joined #openstack-infra11:06
*** CaptTofu has quit IRC11:14
*** CaptTofu_ has joined #openstack-infra11:15
*** mihgen has quit IRC11:22
*** CaptTofu_ has quit IRC11:26
*** ianw has quit IRC11:44
*** jepoy has quit IRC11:46
*** _nadya_ has joined #openstack-infra11:48
*** _nadya_ has quit IRC11:53
*** CaptTofu has joined #openstack-infra11:53
*** che-arne has joined #openstack-infra11:56
*** chandan_kumar has joined #openstack-infra12:00
*** CaptTofu has quit IRC12:04
*** denis_makogon has quit IRC12:12
*** shardy has quit IRC12:13
*** yolanda has quit IRC12:28
*** chandan_kumar has quit IRC12:39
*** dstanek has joined #openstack-infra12:41
*** _nadya_ has joined #openstack-infra12:54
*** irenab has quit IRC12:58
*** dstanek has quit IRC13:16
*** Shrews has joined #openstack-infra13:19
*** dstanek has joined #openstack-infra13:20
*** yolanda has joined #openstack-infra13:26
*** alff_ has joined #openstack-infra13:33
*** alff has joined #openstack-infra13:33
*** saju_m has joined #openstack-infra13:34
*** dcramer_ has joined #openstack-infra13:49
*** dstanek has quit IRC14:07
*** yolanda has quit IRC14:11
*** dcramer_ has quit IRC14:22
*** _nadya_ has quit IRC14:24
openstackgerritAndreas Jaeger proposed a change to openstack-infra/config: Reduce number of files send for propose_translation  https://review.openstack.org/8257314:25
*** dizquierdo has joined #openstack-infra14:33
*** dcramer_ has joined #openstack-infra14:35
*** saju_m has quit IRC14:42
*** rlandy has joined #openstack-infra14:45
*** jepoy_ has joined #openstack-infra14:49
*** thuc has joined #openstack-infra14:50
*** rlandy has quit IRC14:51
*** hogepodge has joined #openstack-infra15:01
*** _nadya_ has joined #openstack-infra15:23
*** _nadya_ has quit IRC15:25
*** sweston has joined #openstack-infra15:28
*** sweston has quit IRC15:33
openstackgerritBoris Pavlovic proposed a change to openstack-infra/config: Add non voting gate-rally-python33 check  https://review.openstack.org/8401315:41
*** thuc has quit IRC15:42
*** thuc has joined #openstack-infra15:43
*** thuc has quit IRC15:47
*** _nadya_ has joined #openstack-infra15:57
*** yolanda has joined #openstack-infra15:58
*** ildikov_ has joined #openstack-infra16:01
*** roeyc has quit IRC16:03
*** dcramer_ has quit IRC16:08
*** jroll has quit IRC16:10
*** dizquierdo is now known as dizquierdo_afk16:12
*** basha has joined #openstack-infra16:13
*** _nadya_ has quit IRC16:14
*** jroll has joined #openstack-infra16:14
*** yamahata has joined #openstack-infra16:15
*** dizquierdo_afk has quit IRC16:17
*** basha has quit IRC16:23
*** dstanek has joined #openstack-infra16:28
*** alexpilotti has joined #openstack-infra16:33
*** dstanek has quit IRC16:33
*** _nadya_ has joined #openstack-infra16:45
*** alff_ has quit IRC16:45
*** alff has quit IRC16:45
*** yolanda has quit IRC16:48
*** thuc has joined #openstack-infra16:53
*** nati_ueno has joined #openstack-infra16:55
*** thuc has quit IRC16:58
*** sdake_ has quit IRC17:13
*** alexpilotti has quit IRC17:13
*** thuc has joined #openstack-infra17:14
*** thuc has quit IRC17:16
*** thuc has joined #openstack-infra17:16
*** nati_ueno has quit IRC17:25
*** sweston has joined #openstack-infra17:29
*** e0ne has joined #openstack-infra17:32
*** sweston has quit IRC17:33
*** thuc has quit IRC17:35
*** thuc has joined #openstack-infra17:35
*** rlandy has joined #openstack-infra17:39
*** thuc has quit IRC17:50
*** _nadya_ has quit IRC17:50
*** thuc has joined #openstack-infra17:51
*** e0ne has quit IRC17:51
*** thuc has quit IRC17:55
*** jepoy_ has quit IRC18:01
*** _nadya_ has joined #openstack-infra18:04
*** e0ne has joined #openstack-infra18:06
*** beekneemech has quit IRC18:18
*** pcrews_ has joined #openstack-infra18:36
*** denis_makogon has joined #openstack-infra18:37
*** _nadya_ has quit IRC18:56
*** e0ne has quit IRC18:58
*** marun has quit IRC18:58
*** e0ne has joined #openstack-infra18:59
*** thuc has joined #openstack-infra19:01
*** krotscheck_ has joined #openstack-infra19:02
*** krotscheck_ has quit IRC19:03
*** thuc has quit IRC19:06
*** thuc has joined #openstack-infra19:07
*** flashgordon is now known as jogo19:15
*** thuc has quit IRC19:18
*** thuc has joined #openstack-infra19:18
*** _nadya_ has joined #openstack-infra19:19
*** thuc has quit IRC19:23
*** _nadya_ has quit IRC19:34
*** alexpilotti has joined #openstack-infra19:40
*** thuc has joined #openstack-infra19:48
*** thuc_ has joined #openstack-infra19:49
*** thuc has quit IRC19:52
*** sdake_ has joined #openstack-infra19:57
*** dcramer_ has joined #openstack-infra19:57
*** e0ne has quit IRC19:59
*** mriedem has joined #openstack-infra19:59
openstackgerritA change was merged to openstack-infra/config: Make the oslo.test cross-testing jobs voting  https://review.openstack.org/8258020:00
*** thuc_ has quit IRC20:01
*** e0ne has joined #openstack-infra20:01
*** thuc has joined #openstack-infra20:02
*** yolanda has joined #openstack-infra20:04
*** thuc has quit IRC20:11
*** e0ne has quit IRC20:11
*** thuc has joined #openstack-infra20:12
*** e0ne has joined #openstack-infra20:12
openstackgerritSergey Lukjanov proposed a change to openstack-infra/config: Extract experimental-tripleo jobs to template  https://review.openstack.org/8402620:13
openstackgerritSergey Lukjanov proposed a change to openstack-infra/config: Add the check-tripleo-overcloud-f20 jenkins job  https://review.openstack.org/8179320:13
openstackgerritSergey Lukjanov proposed a change to openstack-infra/config: Add tripleo overcloud job to check queue  https://review.openstack.org/8179420:13
*** nati_ueno has joined #openstack-infra20:13
*** alff has joined #openstack-infra20:13
*** alff_ has joined #openstack-infra20:13
*** thuc has quit IRC20:16
openstackgerritA change was merged to openstack-infra/storyboard-webclient: Upgraded jasmine  https://review.openstack.org/8393620:21
*** yolanda has quit IRC20:21
*** dizquierdo_afk has joined #openstack-infra20:23
*** mihgen has joined #openstack-infra20:29
*** wenlock has joined #openstack-infra20:30
openstackgerritA change was merged to openstack-infra/config: Adds sanitised stackforge source repo requirement to docs  https://review.openstack.org/8379620:34
*** wenlock has quit IRC20:35
openstackgerritA change was merged to openstack-infra/elastic-recheck: add bug for rax network blipping on get-pip  https://review.openstack.org/8386820:36
openstackgerritA change was merged to openstack-infra/storyboard-webclient: Added unit tests for string_util.  https://review.openstack.org/8393820:36
*** mrda_weekend is now known as mrda20:38
*** denis_makogon has quit IRC20:42
*** thuc has joined #openstack-infra20:42
*** SumitNaiksatam has quit IRC20:49
*** mihgen has quit IRC20:50
*** thuc has quit IRC20:51
*** Ryan_Lane has joined #openstack-infra20:53
*** nati_ueno has quit IRC20:59
*** cody-somerville has quit IRC21:03
*** afazekas has quit IRC21:04
*** e0ne has quit IRC21:08
*** SumitNaiksatam has joined #openstack-infra21:11
openstackgerritAlessandro Pilotti proposed a change to openstack/requirements: Upgrades Pbr to 0.8 due to blocking Windows issue  https://review.openstack.org/8403021:13
*** thuc has joined #openstack-infra21:15
*** thuc has quit IRC21:20
*** thuc has joined #openstack-infra21:20
mattoliverauMomring all21:27
*** e0ne has joined #openstack-infra21:39
*** e0ne_ has joined #openstack-infra21:40
*** e0ne has quit IRC21:40
*** e0ne_ has quit IRC21:44
*** thuc has quit IRC21:49
*** thuc has joined #openstack-infra21:49
*** thuc has quit IRC21:54
*** jhesketh has joined #openstack-infra21:56
*** jhesketh_ has joined #openstack-infra21:57
jheskethMorning21:57
*** cody-somerville has joined #openstack-infra21:57
*** cody-somerville has quit IRC21:57
*** cody-somerville has joined #openstack-infra21:57
*** lifeless has quit IRC21:59
*** lifeless has joined #openstack-infra21:59
mattoliverauMorning jhesketh22:00
*** e0ne has joined #openstack-infra22:01
*** e0ne has quit IRC22:03
*** dizquierdo_afk has quit IRC22:07
*** SumitNaiksatam has quit IRC22:07
*** pcrews_ has quit IRC22:12
*** Alexandra has joined #openstack-infra22:17
fungionce again, i don't want to think about that fact that it's already monday somewhere22:24
*** nicedice has quit IRC22:24
*** SumitNaiksatam has joined #openstack-infra22:25
*** SumitNaiksatam has quit IRC22:25
*** SumitNaiksatam has joined #openstack-infra22:26
openstackgerritA change was merged to openstack-infra/config: Remove obsolete static job workers  https://review.openstack.org/7385222:27
openstackgerritJoshua Hesketh proposed a change to openstack-infra/zuul: Add support to list running jobs to zuul client  https://review.openstack.org/6882822:31
*** alff has quit IRC22:31
*** alff_ has quit IRC22:32
mattoliveraufungi: either to I.. but unfortually I'm living it :P22:33
*** ociuhandu has quit IRC22:33
fungimattoliverau: you have my sincerest condolences22:35
*** _nadya_ has joined #openstack-infra22:35
tchaypofungi: coffee helps22:35
tchaypofungi: fwiw, we spend most of our saturday chortling at the thought that the USAnians are still at work22:36
fungitchaypo: ha, joke's on you. we don't actually work in this country. we've just got everyone else fooled22:36
*** flaper87 is now known as flaper87|afk22:37
*** nicedice has joined #openstack-infra22:38
mattoliveraulol22:38
tchaypowait22:39
tchayposo all my work trips over there, where I've spent weeks at a time sitting in an office surrounded by my "workmates"22:39
tchaypothat was just all y'all playing one long extended prank?22:39
*** _nadya_ has quit IRC22:39
*** nicedice has quit IRC22:41
*** SumitNaiksatam has quit IRC22:42
fungithose were actors on a lark22:43
fungialso those office buildings? all just theatrical facade22:43
*** changbl has quit IRC22:45
*** changbl has joined #openstack-infra22:45
tchaypowell that explains why the whole of Silicon Value is filled with buildings that look like they were all designed by the same 2nd-year architecture student doing a project called "Design a generic low-slung office block" circa 198522:48
fungithat and they need to be able to float after that end of the continent falls into the pacific ocean22:50
StevenKIsn't that just a myth started by Las Vegas who wants to be able to say "I told you building in the middle of the desert would work! Look, now we're a beachfront city."22:51
lifelessfungi: tripleo's HP region is down22:51
fungilifeless: thanks for the heads up22:52
*** ianw has joined #openstack-infra22:52
lifelessfungi: either a hard disk failure, or something deeper, to avoid an unknown downtime I'm going to redeploy the whole cloud22:52
lifelessfungi: and probably see about doing another iteration of automation22:52
fungilifeless: does tripleo have a non-hp region up and working yet?22:52
lifelessfungi: RH region is up and getting put through test paces22:52
fungiawesome!22:53
lifelessfungi: I believe there is a review up to add it to jenkins in fact22:53
*** ociuhandu has joined #openstack-infra22:53
fungiStevenK: myth? i'm investing all my retirement funds in some very lucrative future-beachfront property in nevada22:54
StevenKHaha22:54
*** saschpe has quit IRC23:00
*** e0ne has joined #openstack-infra23:01
*** jepoy has joined #openstack-infra23:01
*** e0ne has quit IRC23:05
*** alexandra_ has joined #openstack-infra23:07
*** Alexandra has quit IRC23:07
*** alexandra_ is now known as Alexandra23:09
*** saschpe has joined #openstack-infra23:16
openstackgerritA change was merged to openstack-infra/config: Fetch tag refs from zuul in gerrit-git-prep  https://review.openstack.org/8258323:23
fungiafter i've confirmed nodepool image updates completed with that, i've got a tag job i'll retrigger to test it23:30
fungior rather, to confirm that it's working in production (i tested it as much as was feasible before it went up for review)23:31
lifelessdstufft: should bandersnatch grab wheels automatically ?23:49
dstufftif they're availabl yes23:49
lifelesshmm, thanks23:50
lifelessI've a local bandersnatch mirror but was seeing downloads from pypi of wheels23:50
lifelesswhich confused me23:50
lifelessdstufft: doesn't need a new release of bandersnatch or anything ?23:50
dstufftnot that i'm aware of23:50
dstuffthow are you adding your bandersnatch mirror23:51
lifelessindex-url = .../simple\nextra-index = pypi itself23:51

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