Friday, 2013-11-15

*** thomasem has quit IRC00:02
*** krtaylor has quit IRC00:02
*** nati_ueno has quit IRC00:04
*** nati_ueno has joined #openstack-infra00:04
*** melwitt has quit IRC00:05
*** melwitt1 has joined #openstack-infra00:05
*** paul-- has quit IRC00:08
*** nati_ueno has quit IRC00:09
*** ryanpetrello has joined #openstack-infra00:10
*** sandywalsh has quit IRC00:11
*** julim has quit IRC00:11
*** jhesketh has quit IRC00:15
openstackgerritChristopher Yeoh proposed a change to openstack-infra/reviewstats: Adds new/merge rate to reviewers information  https://review.openstack.org/5638000:15
*** adalbas has joined #openstack-infra00:16
*** jamesmcarthur has joined #openstack-infra00:17
*** wenlock has quit IRC00:17
openstackgerritClark Boylan proposed a change to openstack-infra/zuul: Make merger.Repo more context manager like.  https://review.openstack.org/5594300:19
*** DennyZhang has joined #openstack-infra00:19
*** herndon has quit IRC00:21
clarkblifeless: https://review.openstack.org/#/c/55943/ new patchset there. I tried using a fixture and I think it made the code much more complicated and not easier to read (details in a comment on the change)00:23
*** reed_ has joined #openstack-infra00:23
*** reed has quit IRC00:23
*** DennyZhang has quit IRC00:23
*** sandywalsh has joined #openstack-infra00:24
*** paul-- has joined #openstack-infra00:24
*** MarkAtwood has quit IRC00:24
*** reed_ has quit IRC00:25
*** jlk has joined #openstack-infra00:25
*** oubiwann has joined #openstack-infra00:26
lifelessclarkb: I'm not really here today (pub holiday)00:26
*** sarob_ has joined #openstack-infra00:26
clarkblifeless: thats fine, it can wait (code won't merge until jeblair gets back next week anyways)00:27
lifelessclarkb: did you push your experiment somewhere?00:27
clarkblifeless: no, I can do that if it helps00:27
lifelessI can't comment on what you experienced without it00:28
lifelessonly on what I expected the code to look like00:28
clarkbok, I will put it on github00:28
*** jhesketh has joined #openstack-infra00:28
lifelessclarkb: what confuses me is you have no cleanup code00:29
lifelessclarkb: I can't see how your patch does what you seem to want it to00:29
*** sarob has quit IRC00:30
clarkblifeless: it doesn't need cleanup it just needs the repo refernces to go out of scope so they are GC'd00:30
*** thomasem has joined #openstack-infra00:30
*** jhesketh_ has quit IRC00:31
lifelessclarkb: I don't think that is guaranteed at all by your current code.00:31
*** sarob_ has quit IRC00:32
clarkblifeless: with a context manager when the with block is exited doesn't the repo reference go away00:32
lifelessclarkb: no00:32
clarkballow the object previously referenced to be GC'd?00:32
*** jhesketh_ has joined #openstack-infra00:32
lifelessthe object is exited00:32
lifelesswhich is different00:32
*** jamesmcarthur has quit IRC00:33
clarkbgah how do you unscope a thing in ways that don't suck00:34
clarkbdo I need an explicit del after the yield?00:34
lifelesslets start over00:34
lifelesswhat problem are you solving00:34
*** hogepodge_ has joined #openstack-infra00:34
clarkblifeless: prior to this patch every merger.Repo object has a long lived git.Repo object in it. That git.Repo object may have many filedescriptors open00:35
*** hogepodge has quit IRC00:35
*** hogepodge_ is now known as hogepodge00:35
clarkbeventually enough projects repos are open that you run out of file descriptors00:35
clarkbgoal is to only have file descriptors open so that we don't need thousands of file descriptors00:35
lifelesshow many merge.Repo objects does zuul hold at once ?00:35
clarkblifeless: as many project as are definied in the zuul layout00:35
lifelessone per project like openstack/requirements ?00:35
clarkbyes00:35
lifelessso thousands of projects == thousands of fds' ?00:36
clarkbits more like a few hundred projects = thousands of fds00:36
lifelessdoes it leak, or is this a pretty static upper bound ?00:36
clarkbthey 'leak' in that git may repack under the git.Repo object but it doesn't notice until they next operation00:37
lifelessso the number open grows without bound ?00:37
clarkbtheoretically yes I think it can grow without bound00:37
clarkbin practice our 2k fd limit isn't hit very often but when it is hit it is annoying00:37
lifelessok, so no scare quotes needed: it is a leak.00:37
lifelessIf it wasn't a leak, if there was an upper bound, I was going to suggest ulimit.00:38
lifelessUnix supports lots of fd's for a reason :)00:38
clarkbbut if we only have the fds in use during the operation we need this is a non problem00:38
clarkbwhich is why the goal is the GC the repo object and release the fds00:38
lifelesssure00:38
lifelessis it a fast leak ?00:39
clarkbno it takes weeks00:39
lifelessok, so you don't need any guarantees about things like global gc runs00:39
lifelessyou just need to avoid stale references00:39
lifelessyou don't need a context manager00:39
clarkbya00:39
lifelessjust do00:40
lifelessdef fetch(self, ref)00:40
lifeless    repo = self.createRepoObject()00:40
lifeless    ...00:40
lifelessdon't assign repo to self.anything at all00:40
lifelessand don't pass repo to anything that stashes it00:40
clarkband rely on function variables to go out of scope00:40
lifelessright00:40
lifelessyour test that does a gc check is broken btw00:41
lifelessbecause it depends on implementation internals of CPython vs Python - you should do a gc.collect() first and then look for uncollected objects.00:41
clarkblifeless: ya it clearly is if the context manager yielded object doesn't go out of scope00:41
lifelessthe context manager doesn't affect scoping at all00:41
clarkboh derp00:42
lifelessthis is a fundamental misapprehension you have :)00:42
clarkbmy brain works now00:42
clarkbit is still local to the function.00:42
lifelessright00:42
clarkbwill add the gc.collect00:42
lifelessyou did two things00:42
lifelessyou added a context manager00:42
lifelessand you made the repo function local00:42
lifelessthe second thing is the thing you needed to do00:42
clarkbya00:42
lifelessthe other is just noise :)00:42
*** hogepodge has quit IRC00:43
*** dcramer_ has joined #openstack-infra00:43
jog0this is really sad: https://review.openstack.org/#/c/55885/00:44
lifelesspy26 ?00:44
jog0failed 4 attempts to merge a rst file change into neutron00:44
lifelessstabbbb00:44
jog0lifeless: :)00:44
clarkbwhen rhel7 comes out we can stabb py2600:45
lifelessI thought package sets did that now ?00:46
clarkbthey are official but unsupported so insufficient00:47
clarkbor something, we were specifically asked to not treat those as being sufficient to kill py2600:47
lifelessWUT00:47
*** matsuhashi has quit IRC00:47
clarkbso you can have py27 on rhel6 BUT as the upstream we can't depend on it00:48
*** matsuhashi has joined #openstack-infra00:48
lifelessjhesketh_: ^ btw - be more paranoid in reviews :>00:51
clarkboh, this same thing is why list comprehensions leak temp vars00:52
jhesketh_lifeless: which one sorry?00:52
lifelessclarkb: yes00:52
lifelessjhesketh_: https://review.openstack.org/#/c/55943/00:53
*** matsuhashi has quit IRC00:53
clarkblifeless: list comprehensions don't do that in py3k is it "fixed" in general or just for list comprehensions?00:53
jhesketh_lifeless: thanks, noted00:54
openstackgerritClark Boylan proposed a change to openstack-infra/zuul: GC git.Repo objects in merger.Repo operations.  https://review.openstack.org/5594300:55
clarkbthat should be much better00:55
*** matsuhashi has joined #openstack-infra00:58
clarkblooks like py3k changes that just for list comprehensions and not loops00:58
*** ^d has quit IRC00:59
clarkbnot sure how I feel about that being different00:59
*** nosnos has joined #openstack-infra01:00
*** jamesmcarthur has joined #openstack-infra01:00
Ryan_Lanerather than upgrading I cherry-picked in the security patches for mediawiki01:01
Ryan_Lanewe're on wmf branches and they don't backport patches into those. not an issue, though, they are close enough to master that cherry-picks always work from master01:01
pleia2thanks Ryan_Lane01:02
Ryan_Laneyw01:02
*** bknudson has joined #openstack-infra01:02
bknudsonis there a way to get Jenkins to re-submit global requirements change?01:02
bknudsonhttps://review.openstack.org/#/c/55241/ -- Jenkins -1d himself and then abandoned it.01:02
clarkbbknudson: can you be more specific01:02
clarkbbknudson: thanks, short answer is yes, however in this case we want it to stay abandoned01:03
clarkbbecause the script doing the proposals is broken which is why it got a -101:03
clarkbthe script should be fixed and submit new changes01:03
fungione of the infra cores can un-abandon that for jenkins, but agreed with clarkb we'd rather not until it's fixed to be branch-aware01:03
bknudsonclarkb: so we're still relying on manual?01:03
bknudsonmanually updating requirements for keystoneclient01:03
clarkband even then we would just want to have it submit a new change rather than a new patchset on an existing change01:03
clarkbbknudson: yes currently you will need to do it manually01:04
bknudsonok, there was some confusion with another change since we assumed it was automatic01:04
*** sarob has joined #openstack-infra01:05
*** melwitt1 has quit IRC01:05
*** melwitt has joined #openstack-infra01:07
clarkbfungi: I think the shell script that jenkins runs is correct01:09
clarkbbut update.py may be wrong01:09
clarkbOOOHHHHH nevermind01:10
clarkbZUUL_BRANCH isn't a thing in the post queue01:10
openstackgerritJeremy Stanley proposed a change to openstack-infra/config: Stop running propose-requirements-updates job  https://review.openstack.org/5648901:12
fungiclarkb: ^ (or in other words, yes)01:12
*** beagles has quit IRC01:12
*** nati_ueno has joined #openstack-infra01:12
*** dkliban has quit IRC01:14
fungia very, very ugly workaround might be to run multiple versions out of the periodic pipeline and override the branch for each, but better would be to divine a function to find the branch(es) which contain the commit in question01:14
fungithings this margin (my evening) is presently too narrow to contain01:15
clarkbI am working up a hack01:15
clarkbbasically going from ZUUL_NEWREV find the branch the commit was on01:15
fungiyep, that's what was more or less in my mind01:16
*** ArxCruz has joined #openstack-infra01:18
*** jamesmcarthur has quit IRC01:18
*** DennyZhang has joined #openstack-infra01:19
*** jamesmcarthur has joined #openstack-infra01:20
fungiprobably using git branch -a --contains <gitsha>01:21
fungigit branch -a --contains $ZUUL_NEWREV01:21
fungisomething01:22
fungiyou'll likely need to do a bit of filtering on the output since it'll list remote branches which may or may not be what you're looking for01:23
*** UtahDave has quit IRC01:23
* fungi goes back to being invisible01:23
*** DennyZhang has quit IRC01:24
clarkbwait we can be invisible?01:25
fungii pretend01:25
*** vipul is now known as vipul-away01:28
*** jamesmcarthur has quit IRC01:30
*** sarob has quit IRC01:30
*** sarob has joined #openstack-infra01:31
*** ljjjustin has joined #openstack-infra01:31
*** herndon_ has joined #openstack-infra01:33
*** vipul-away is now known as vipul01:35
*** pabelanger has joined #openstack-infra01:35
*** sarob has quit IRC01:35
*** herndon_ has quit IRC01:40
openstackgerritClark Boylan proposed a change to openstack-infra/config: Select proper branch when proposing requirements.  https://review.openstack.org/5649101:40
*** herndon has joined #openstack-infra01:40
clarkb56491 is wrong, but is a sart01:40
*** CaptTofu has quit IRC01:42
*** CaptTofu has joined #openstack-infra01:42
*** CaptTofu has quit IRC01:42
*** CaptTofu has joined #openstack-infra01:43
*** nati_ueno has quit IRC01:47
clarkbbknudson: ^ that change is sort of what needs to be done to make the automatic jobs work01:47
clarkbbut it isn't quite correct yet01:47
*** nati_ueno has joined #openstack-infra01:47
*** ryanpetrello_ has joined #openstack-infra01:48
*** ryanpetrello has quit IRC01:48
* clarkb goes invisible too01:48
*** ryanpetrello_ is now known as ryanpetrello01:48
*** adalbas has quit IRC01:49
bknudsonmaybe I should have run update.py to update the requirements manually.01:51
*** matsuhashi has quit IRC02:03
*** matsuhashi has joined #openstack-infra02:03
*** jhesketh_ has quit IRC02:06
*** pcrews has quit IRC02:12
*** dkliban has joined #openstack-infra02:13
*** mriedem has joined #openstack-infra02:15
*** rnirmal has quit IRC02:16
*** dkliban has quit IRC02:18
*** mriedem has quit IRC02:18
*** mriedem has joined #openstack-infra02:20
*** DennyZhang has joined #openstack-infra02:20
*** guohliu has quit IRC02:22
*** yaguang has joined #openstack-infra02:23
portantejog0: you still looking at the grenade failures?02:24
portantedid anybody from the swift team comment?02:25
portantenotmyname?02:25
*** DennyZhang has quit IRC02:25
pleia2clarkb: erg, seen http://chrome.blogspot.com/2013/11/important-update-on-hp-chromebook-11.html ?02:26
sdagueportante: I think we sorted that it was just a loopback size problem, which jog0 addressed02:27
portantesdague: okay, thanks02:27
clarkbpleia2: ya02:28
jog0portante: wrong failure02:28
jog0err sdague02:28
clarkbpleia2: I get to use my phone charger to charge that device now :)02:28
jog0sdague: loopback was tempest-full failure02:28
sdaguejog0: oh, sorry02:28
pleia2clarkb: hehe, nice02:28
jog0grenade is the timeout02:28
jog0which is not merged yet02:28
portantejog0: so you understand the problem and have a fix then?02:29
jog0portante: yes02:29
jog0sdague: https://review.openstack.org/#/c/56465/02:29
jog0is the last step02:29
portantejog0: let me know if you need anything else, then02:29
jog0portante: thanks02:30
*** dkliban has joined #openstack-infra02:30
sdaguejog0: are the config changes in?02:30
jog0nope :(02:30
jog0https://review.openstack.org/#/q/status:open++branch:master+topic:grenade,n,z02:30
jog0no one reviewed em even02:30
clarkbjog0: we are swamped with other things :/02:30
jog0clarkb: ^_^  aren't we all02:31
clarkbI will look at the grenade changes now02:31
jog0but without a clarkb who will review all the patches02:31
jog0clarkb: thanks :)02:31
*** thomasem has quit IRC02:31
clarkbjog0: and this gets us faster grenade to avoid timeouts?02:33
sdagueclarkb: after another tempest change, it does02:33
sdaguewe need to split the smoke definition to have a serial and parallel one, because neutron can't pass the parallel one02:34
jog0clarkb: thats the hope02:34
sdaguewe did that02:34
sdaguethen we need this to make neutron use the new serial job02:34
sdaguethen we can make the old smoke job paralle02:34
clarkbok02:34
sdaguein a tempest patch, which I'm happy to just push to the gate02:34
jog0so the greande topic make neutron use serial02:34
sdagueonce the config supports it02:34
*** senk has joined #openstack-infra02:34
*** nati_uen_ has joined #openstack-infra02:35
clarkbjog0: sdague: https://review.openstack.org/#/c/56466/1 passed neutron tests02:35
clarkboh wait02:35
clarkbbecause tempest tox.ini hasn't changed02:36
*** sarob has joined #openstack-infra02:36
sdagueclarkb: right02:36
clarkbjog0: don't you need to make that change for all of the neutron jobs?02:37
clarkbthen we can put the config changes in, then merge the d-g change which should be self gating then the tempest change02:38
*** nati_ueno has quit IRC02:38
clarkbbut I am pretty sure you need that for all of the neutron jobs02:38
* jog0 looks again02:39
clarkbmaybe all but FULL since we want that job to go parallel02:39
*** jhesketh_ has joined #openstack-infra02:39
clarkb(and it doesn't vote)02:39
jog0clarkb: ahh yes https://review.openstack.org/#/c/56467/1/modules/openstack_project/files/jenkins_job_builder/config/devstack-gate.yaml is wroing02:40
clarkbjog0: sdague:02:41
clarkbwhat if we have a tempest tox.ini for neutron does that make sense?02:42
clarkbhmm I guess it doesn't if we are doing neutron full jobs too02:42
*** sarob has quit IRC02:43
*** sarob has joined #openstack-infra02:43
openstackgerritJoe Gordon proposed a change to openstack-infra/config: Explicitly set smoke tests in neutron test to be serial  https://review.openstack.org/5646702:46
jog0clarkb: I think I got them all this time02:46
*** esker has joined #openstack-infra02:47
jog0clarkb: heading out, so if I missed one feel free to ammend my patch and take all the credit02:48
clarkbok02:48
*** esker has quit IRC02:48
*** sarob has quit IRC02:48
*** esker has joined #openstack-infra02:49
*** jamesmcarthur has joined #openstack-infra02:49
clarkbjog0: if you are still around does the large ops job need serial smoke test?02:50
clarkbI can patch it if so02:50
*** dkranz has joined #openstack-infra02:51
clarkbmeh that job isn't voting we can fix later if necessary02:51
openstackgerritA change was merged to openstack-infra/config: Explicitly set smoke tests in neutron test to be serial  https://review.openstack.org/5646702:54
clarkbI will recheck the d-g change once that gets applied02:54
*** senk has quit IRC03:08
*** jishaomei has joined #openstack-infra03:08
*** dkehn has quit IRC03:11
*** dkehn has joined #openstack-infra03:13
*** sarob has joined #openstack-infra03:13
openstackgerritNoorul Islam K M proposed a change to openstack-infra/config: Add python-solumclient to stackforge  https://review.openstack.org/5650503:15
*** Ryan_Lane has quit IRC03:16
*** DennyZhang has joined #openstack-infra03:21
*** dims has quit IRC03:22
*** dcramer_ has quit IRC03:24
*** DennyZhang has quit IRC03:25
*** CaptTofu has quit IRC03:29
*** markwash has quit IRC03:29
*** CaptTofu has joined #openstack-infra03:30
*** matsuhashi has quit IRC03:31
*** matsuhashi has joined #openstack-infra03:31
*** CaptTofu has quit IRC03:31
*** CaptTofu has joined #openstack-infra03:32
*** cody-somerville has quit IRC03:33
openstackgerritNoorul Islam K M proposed a change to openstack-infra/config: Add python-solumclient to stackforge  https://review.openstack.org/5650503:33
clarkbmordred: since you are apparently around, I plan on approving https://review.openstack.org/#/c/56466/ if the rechecks come back clean03:36
clarkbmordred: want to review that change?03:36
clarkbonce that goes in then the tempest folks can approve their tox.ini change at will03:36
* mordred looks03:36
openstackgerritNoorul Islam K M proposed a change to openstack-infra/config: Add python-solumclient to stackforge  https://review.openstack.org/5650503:36
mordredyeah. lgtm03:37
clarkbty03:37
*** dcramer_ has joined #openstack-infra03:37
mordredclarkb: however, you know - we should really just hav ea DEVSTACK_GATE_TEMPEST_TOX that's set to the tempest tox env to run03:37
lifelessmordred - so cangnig from 0.0.1 to 2014.1.0 is something that can't be done later?[6~03:38
clarkbmordred: hmm I like that03:38
clarkbjog0: when you return to the land of the living see mordred comment03:38
clarkbjog0: I don't think we need to do that now but could refactor what you currently have to do that instead03:38
mordredlifeless: it can - the main point is whether or not they want to do pre or post releases03:39
mordredlifeless: but also, if the intent is to align with OpenStack - what's the point in being different for a while?03:40
lifelessmordred: no point, I'm edumacating myself03:40
lifelessmordred: how does doing it before/after releases change things?03:41
*** matsuhashi has quit IRC03:41
mordredlifeless: did you read my long email on the subject on the ML?03:41
lifelesspossibly not. Topic ?03:42
*** matsuhashi has joined #openstack-infra03:42
mordred[Solum] Version scheme03:42
*** rhsu1 has quit IRC03:43
lifelessoh, overnight. pub holiday today, I haven't read mail/ done reviews etc ;)03:43
*** gyee has quit IRC03:43
*** ilyashakhat_ has joined #openstack-infra03:44
clarkbhe helpfully reviewed one of my changes and gave it the smackdown03:44
lifelessmordred: read now; I don't see anything on pre/post there ?03:44
*** vipuls has joined #openstack-infra03:45
mordredlifeless: I described the differences between the two schemes and how they work?03:46
lifelessmordred: oh, also I had < 4 hours sleep last night - EBABY.03:46
lifelessmordred: so it's entirely possible I'm utterly failing to join obvious dots.03:46
*** matsuhashi has quit IRC03:47
clarkbmordred: you did, but they weren't called out using the same terms03:47
clarkblifeless: starts at if the version is not tagged there are two approaches03:47
clarkbpre versioning is what the date based versions do and post versioning is what the semver stuff uses right?03:47
mordredyah03:48
*** bnemec_ has joined #openstack-infra03:48
mordredso, the difference is that pre-versioning approaches generate version numbers that lead up to the version specified in setup.cfg03:48
mordredpost-versioning generates versions that follow from the last release tag03:49
lifelessfor the automated builds only right?03:49
*** jamesmcarthur_ has joined #openstack-infra03:49
lifelessvs tagged builds ?03:49
*** vipul has quit IRC03:51
*** jamesmcarthur has quit IRC03:52
*** che-arne has quit IRC03:52
*** slong has quit IRC03:52
*** dachary has quit IRC03:52
*** ilyashakhat has quit IRC03:52
*** bnemec has quit IRC03:52
*** ekarlso has quit IRC03:52
*** Alssi has quit IRC03:52
*** jamesmcarthur_ is now known as jamesmcarthur03:52
*** dachary has joined #openstack-infra03:53
mordredyeah03:54
mordredtagged builds are the same in both schemes03:54
*** ekarlso has joined #openstack-infra03:54
lifelessthankss03:55
mordredclarkb: did we land the patch that added the rackspace performance images?03:56
clarkbmordred: uh I reviewed things but don't think I approved03:56
clarkbmordred: https://review.openstack.org/#/c/55844/ that one right?03:57
clarkbit needs a change in config to add filters03:57
mordredright - I see that one - where did the one go that actually uses it?03:57
mordredor did I perhaps not write that one yet03:58
clarkbno idea /me looks03:58
*** fandikurnia01 has joined #openstack-infra03:58
mordredI think I didn't write it yet03:58
clarkb:) ok03:58
clarkbI don't see it03:58
clarkbyou wrote one for new hp az03:58
*** rhsu has joined #openstack-infra04:01
mordrednod. I'll write the other one too04:02
clarkbmordred: jog0: I just approved the d-g change04:04
*** guohliu has joined #openstack-infra04:04
clarkbonce that has merged I will recheck the tempest change04:04
*** nati_uen_ has quit IRC04:04
*** nati_ueno has joined #openstack-infra04:05
*** che-arne has joined #openstack-infra04:07
*** senk has joined #openstack-infra04:09
*** nati_ueno has quit IRC04:09
*** jamesmcarthur has quit IRC04:09
*** jamesmcarthur has joined #openstack-infra04:10
*** senk has quit IRC04:14
*** senk has joined #openstack-infra04:15
*** wenlock has joined #openstack-infra04:15
*** markwash has joined #openstack-infra04:19
*** senk has quit IRC04:20
*** sdake_ has quit IRC04:20
*** ArxCruz has quit IRC04:20
*** sdake_ has joined #openstack-infra04:20
*** melwitt has quit IRC04:21
*** ArxCruz has joined #openstack-infra04:22
*** DennyZhang has joined #openstack-infra04:22
*** DennyZhang has quit IRC04:27
*** vipuls is now known as vipuls-away04:32
*** nati_ueno has joined #openstack-infra04:33
*** pcrews has joined #openstack-infra04:35
*** Ryan_Lane has joined #openstack-infra04:38
*** chandankumar has joined #openstack-infra04:39
*** paul-- has quit IRC04:42
*** nati_ueno has quit IRC04:43
*** zhiyan has joined #openstack-infra04:44
*** herndon has quit IRC04:44
*** zhiyan has quit IRC04:45
*** zhiyan1 has joined #openstack-infra04:45
*** zhiyan1 has quit IRC04:45
*** zhiyan has joined #openstack-infra04:46
*** krtaylor has joined #openstack-infra04:48
*** nati_ueno has joined #openstack-infra04:49
*** paul-- has joined #openstack-infra04:51
openstackgerritA change was merged to openstack-infra/devstack-gate: Wire up support for DEVSTACK_GATE_SMOKE_SERIAL  https://review.openstack.org/5646604:51
*** mriedem has quit IRC04:53
*** alexpilotti has joined #openstack-infra04:55
*** matsuhashi has joined #openstack-infra04:56
*** chandankumar has quit IRC04:57
*** nati_ueno has quit IRC05:02
*** sarob has quit IRC05:04
*** sarob has joined #openstack-infra05:05
*** nati_ueno has joined #openstack-infra05:09
*** chandankumar has joined #openstack-infra05:09
*** sarob has quit IRC05:10
*** senk has joined #openstack-infra05:17
*** jamesmcarthur has quit IRC05:17
mikaljog0: you still around? It must be late for you.05:22
*** jhesketh_ has quit IRC05:22
*** jhesketh_ has joined #openstack-infra05:23
*** DennyZhang has joined #openstack-infra05:23
*** DennyZhang has quit IRC05:27
mordredmikal: or early05:30
mikalTrue dat05:30
*** talluri has joined #openstack-infra05:32
*** ericw has quit IRC05:39
*** senk has quit IRC05:39
*** pcrews has quit IRC05:42
*** dripton has quit IRC05:44
*** dcramer_ has quit IRC05:44
*** marun has joined #openstack-infra05:50
*** dcramer_ has joined #openstack-infra06:01
*** zhiyan has quit IRC06:02
*** nicedice_ has quit IRC06:02
*** nati_ueno has quit IRC06:03
*** rhsu has quit IRC06:08
*** CaptTofu has quit IRC06:10
*** CaptTofu has joined #openstack-infra06:10
*** vipuls-away is now known as vipuls06:13
*** paul-- has quit IRC06:16
mikaljog0: in case you read scroll back, I think I found a libvirt bug which is causing tempest failures. I've filed a bug and emailed you about it.06:17
clarkbmikal: is it manifesting in the gate?06:18
mikalI found it because my patch had failed tempest06:21
mikalSo I guess that's a yes?06:21
mordredmikal: excellent06:24
mordredmikal: does that mean that we want to attempt to figure out how to require a newer libvirt?06:24
clarkbat the very least we should get it in elasticrecheck if possible to see how bad it is06:25
*** nicedice_ has joined #openstack-infra06:25
clarkbmordred: the tempest tox.ini change passes after merging that d-g change06:27
mordredwoot06:27
mordredclarkb: also, does it feel like neutron is extra-flaky again?06:28
clarkbmordred: yes, jog0 wrote an email to openstack-dev about it06:28
clarkbmordred: Top 4 Elastic recheck known issues06:29
mordredugh06:30
*** dkliban has quit IRC06:30
clarkbthere is even a link to shiny graphs06:32
clarkbor a shiny graph06:32
*** nati_ueno has joined #openstack-infra06:35
mordredshiny06:36
mordredclarkb: I'm re-checking the pbr change now that the pypi mirror change has gone in06:36
mordredclarkb: also, I want to point out that for the first time EVER...06:39
mordredhttp://russellbryant.net/openstack-stats/infra-reviewers-30.txt06:39
mordredI'm winning on the review list AND I have a lower approval percentage than you :)06:39
mordredI don't expect that to last06:39
mordredbut I gotta take my victories when I can...06:40
clarkbha06:40
clarkbI don't like looking at the numbers :)06:40
mordredI've actually only been checking them because my numbers were the worst of infra-core so I've been trying to do better06:41
mordredand it's a good way to check to see how I'm doing06:41
clarkbya they are good checks. especially since when you are slogging through it it is hard to appreciate it06:42
openstackgerritA change was merged to openstack-infra/config: Add python-solumclient to stackforge  https://review.openstack.org/5650506:42
*** openstackgerrit has quit IRC06:46
*** openstackgerrit has joined #openstack-infra06:48
*** denis_makogon has joined #openstack-infra06:48
mikalclarkb: sorry, someone was talking to me in real life06:51
mikalI dumped a stack trace in the bug, but the connection refused message is pretty obvious06:51
mikalWanna teach me how to search log stash for occurrances?06:51
clarkbmikal sure06:51
clarkbon aphone though06:51
clarkbbasically you to logstash.o.o and make sure the box says 15 minutes and hit search06:52
mikalOk, one sec06:52
clarkbthat should give you something back. if you click on a row it will expand and show you all of the fields. you can search them independently06:53
clarkbso a common search would be something like: filename:"logs/screen-n-cpu.txt" AND message:"something in log indicates bug"06:54
clarkbyou can use AND OR and ()s to group things06:54
mikalPlease hold06:56
mikalNo hits in the last 15 minutes06:56
mikalOne hit in the last day06:56
clarkbso not very often then06:56
mikalYeah, one hit in the last week06:57
mikalSo I might just be unlucky06:57
mikalAt least that one hit matches my failed test06:57
mikalhttp://logstash.openstack.org/#eyJzZWFyY2giOiJmaWxlbmFtZTpcImxvZ3Mvc2NyZWVuLW4tY3B1LnR4dFwiIEFORCBtZXNzYWdlOlwibGlidmlydEVycm9yOiBGYWlsZWQgdG8gY29ubmVjdCBzb2NrZXQgdG8gJy92YXIvcnVuL2xpYnZpcnQvbGlidmlydC1zb2NrJ1wiIiwiZmllbGRzIjpbXSwib2Zmc2V0IjowLCJ0aW1lZnJhbWUiOiI2MDQ4MDAiLCJncmFwaG1vZGUiOiJjb3VudCIsInRpbWUiOnsidXNlcl9pbnRlcnZhbCI6MH0sInN0YW1wIjoxMzg0NDk4NjA2MDI4fQ==06:58
mikal(I hope that link works as I expect)06:58
clarkbit will06:58
clarkbits a base64 encoded json representation of your query06:58
mikalCool06:59
mikalSo yeah, I think I am just unlucky here06:59
*** rwsu is now known as rwsu-pto07:04
*** esker has quit IRC07:06
*** dripton has joined #openstack-infra07:09
*** yolanda has joined #openstack-infra07:11
*** wenlock has quit IRC07:18
*** SergeyLukjanov has joined #openstack-infra07:21
*** DennyZhang has joined #openstack-infra07:24
*** DennyZhang has quit IRC07:29
*** jroovers has quit IRC07:30
openstackgerritPeter Liljenberg proposed a change to openstack-infra/jenkins-job-builder: Updated gitblit projectname  https://review.openstack.org/5647507:32
*** esker has joined #openstack-infra07:32
openstackgerritPeter Liljenberg proposed a change to openstack-infra/jenkins-job-builder: Updated gitblit projectname  https://review.openstack.org/5647507:38
*** senk has joined #openstack-infra07:39
*** ericw has joined #openstack-infra07:42
*** dstanek has quit IRC07:42
*** senk has quit IRC07:44
*** sandywalsh has quit IRC07:47
*** cyeoh has quit IRC07:50
*** cyeoh has joined #openstack-infra07:51
openstackgerritSergey Lukjanov proposed a change to openstack-infra/jeepyb: Fix savanna repos mappings  https://review.openstack.org/5636207:51
openstackgerritMarcus Nilsson proposed a change to openstack-infra/jenkins-job-builder: Added support for Stash Notifier  https://review.openstack.org/5633707:52
*** nati_ueno has quit IRC07:52
*** mrmartin has joined #openstack-infra07:54
*** nsaje has joined #openstack-infra07:55
chmouelhey all: any chances to get this processed? https://bugs.launchpad.net/openstack-ci/+bug/125104107:59
*** matsuhashi has quit IRC08:01
*** matsuhashi has joined #openstack-infra08:02
*** fandikurnia01 has quit IRC08:02
*** fandikurnia01 has joined #openstack-infra08:03
openstackgerritOleg Gelbukh proposed a change to openstack-infra/config: Make gate jobs for Rubick non-voting  https://review.openstack.org/5653608:05
*** D30 has joined #openstack-infra08:07
*** flaper87|afk is now known as flaper8708:08
openstackgerritMichael Prokop proposed a change to openstack-infra/jenkins-job-builder: Deprecate projectName setting of CopyArtifact  https://review.openstack.org/5641208:09
*** esker has quit IRC08:09
*** michchap has quit IRC08:12
openstackgerritPeter Liljenberg proposed a change to openstack-infra/jenkins-job-builder: Added support for Jenkins plugin Blame upstream committers  https://review.openstack.org/5408508:12
*** michchap has joined #openstack-infra08:12
*** shardy_afk is now known as shardy08:14
openstackgerritMichael Prokop proposed a change to openstack-infra/jenkins-job-builder: Deprecate projectName setting of CopyArtifact  https://review.openstack.org/5641208:18
*** sandywalsh has joined #openstack-infra08:19
*** Ryan_Lane has quit IRC08:23
*** changbl has quit IRC08:24
*** DennyZhang has joined #openstack-infra08:25
*** salv-orlando has joined #openstack-infra08:26
*** DennyZhang has quit IRC08:29
*** osanchez has joined #openstack-infra08:30
openstackgerritMasayuki Igawa proposed a change to openstack-infra/elastic-recheck: Add query for bug 1251448  https://review.openstack.org/5653908:33
openstackgerritMasayuki Igawa proposed a change to openstack-infra/elastic-recheck: Add query for bug 1244762  https://review.openstack.org/5653908:36
openstackgerritOleg Gelbukh proposed a change to openstack-infra/config: Add channel #rubick to gerritbot configuration  https://review.openstack.org/5654208:43
*** Alssi has joined #openstack-infra08:44
*** Ryan_Lane has joined #openstack-infra08:54
*** denis_makogon has quit IRC08:56
*** changbl has joined #openstack-infra08:57
*** pblaho has joined #openstack-infra08:58
*** DinaBelova has joined #openstack-infra08:58
*** pblaho has quit IRC08:59
*** pblaho has joined #openstack-infra08:59
*** jpich has joined #openstack-infra08:59
*** jcoufal has joined #openstack-infra09:03
*** changbl has quit IRC09:05
*** pblaho1 has joined #openstack-infra09:05
*** yassine has joined #openstack-infra09:05
*** Ryan_Lane has quit IRC09:06
*** pblaho has quit IRC09:07
*** pblaho1 is now known as pblaho09:08
*** pblaho has quit IRC09:14
*** jishaomei has quit IRC09:15
*** changbl has joined #openstack-infra09:15
*** mrmartin has quit IRC09:16
*** derekh has joined #openstack-infra09:18
*** nsaje has quit IRC09:21
*** matsuhashi has quit IRC09:25
*** matsuhashi has joined #openstack-infra09:25
*** nosnos has quit IRC09:26
*** nosnos has joined #openstack-infra09:27
*** nati_ueno has joined #openstack-infra09:27
*** changbl has quit IRC09:28
*** matsuhashi has quit IRC09:30
*** nosnos has quit IRC09:31
*** pblaho has joined #openstack-infra09:37
*** ruhe has joined #openstack-infra09:37
*** D30_ has joined #openstack-infra09:38
*** ruhe has quit IRC09:40
*** mrmartin has joined #openstack-infra09:41
*** senk has joined #openstack-infra09:41
*** nati_ueno has quit IRC09:42
*** hashar has joined #openstack-infra09:42
*** pblaho has quit IRC09:43
*** D30 has quit IRC09:43
*** D30_ is now known as D3009:43
*** ljjjustin has quit IRC09:44
*** nsaje_ has joined #openstack-infra09:45
*** nsaje_ has quit IRC09:45
*** senk has quit IRC09:46
*** mrmartin has quit IRC09:47
*** boris-42 has joined #openstack-infra09:51
*** johnthetubaguy has joined #openstack-infra09:53
*** D30 has quit IRC09:54
*** johnthetubaguy1 has joined #openstack-infra09:55
*** che-arne has quit IRC09:57
*** johnthetubaguy has quit IRC09:57
*** Ryan_Lane has joined #openstack-infra10:02
*** ruhe has joined #openstack-infra10:07
*** Ryan_Lane has quit IRC10:07
*** che-arne has joined #openstack-infra10:12
*** pblaho has joined #openstack-infra10:19
*** nsaje has joined #openstack-infra10:19
*** afazekas has quit IRC10:24
openstackgerritA change was merged to openstack-infra/storyboard: Pagination added to task lists  https://review.openstack.org/5581310:28
ekarlsohow do I get around warning: LocalManifestMaker: standard file '-c' not found10:28
*** pblaho has quit IRC10:29
*** nsaje has quit IRC10:35
*** nsaje_ has joined #openstack-infra10:36
*** mkerrin has quit IRC10:37
*** che-arne has quit IRC10:37
*** ruhe has quit IRC10:37
openstackgerritSergey Lukjanov proposed a change to openstack-infra/config: Improve climate jobs configs  https://review.openstack.org/5657810:37
openstackgerritSergey Lukjanov proposed a change to openstack/requirements: Fix flask upper bound  https://review.openstack.org/5658210:42
ekarlsoShouldn't it only be to set openstackci in pypi to allow jenkins to upload ?10:42
ekarlsohttps://jenkins.openstack.org/job/python-libraclient-pypi-upload/1/console fails but I've set openstackci in pypi..10:42
*** mrmartin has joined #openstack-infra10:43
*** ruhe has joined #openstack-infra10:44
*** mrmartin has quit IRC10:48
openstackgerritSergey Lukjanov proposed a change to openstack-infra/config: Improve climate jobs configs  https://review.openstack.org/5657810:48
*** che-arne has joined #openstack-infra10:49
openstackgerritSergey Lukjanov proposed a change to openstack-infra/config: Improve climate jobs configs  https://review.openstack.org/5657810:49
anteayaekarlso: I don't see that warning in the file you linked10:52
*** jhesketh has quit IRC10:52
anteayawhere does it occur?10:53
*** crank has quit IRC10:53
*** jhesketh has joined #openstack-infra10:54
*** crank has joined #openstack-infra10:54
anteayamordred clarkb jog0 doing what I can to support jog0's work bringing this to the attention of Neutron10:55
*** pblaho has joined #openstack-infra10:55
*** ruhe has quit IRC10:55
*** ruhe has joined #openstack-infra10:57
*** mriedem has joined #openstack-infra10:59
*** marun has quit IRC10:59
*** ruhe has quit IRC11:00
ekarlsoanteaya: trying to install modules @ fedora 1911:02
*** ruhe has joined #openstack-infra11:03
openstackgerritOleg Gelbukh proposed a change to openstack-infra/config: Make gate jobs for Rubick non-voting  https://review.openstack.org/5653611:03
*** Ryan_Lane has joined #openstack-infra11:03
*** marun has joined #openstack-infra11:06
*** Ryan_Lane has quit IRC11:08
*** hashar has quit IRC11:09
*** fandikurnia01 has quit IRC11:12
*** DinaBelova has quit IRC11:12
ekarlsoanteaya: ?11:12
*** pcm_ has joined #openstack-infra11:13
anteayaekarlso: okay so do you have a stack trace?11:13
*** pcm_ has quit IRC11:14
*** pcm_ has joined #openstack-infra11:14
*** afazekas has joined #openstack-infra11:16
ekarlsoanteaya: ofc11:24
openstackgerritOleg Gelbukh proposed a change to openstack-infra/config: Make python33 gate job for Rubick non-voting  https://review.openstack.org/5653611:27
*** boris-42 has quit IRC11:28
openstackgerritQianLin proposed a change to openstack-infra/nodepool: Add explanation on how to use floating-ip  https://review.openstack.org/5433111:30
anteayaekarlso: what does ofc mean?11:30
*** pblaho has quit IRC11:30
*** SergeyLukjanov is now known as _SergeyLukjanov11:31
*** ruhe has quit IRC11:32
*** _SergeyLukjanov has quit IRC11:32
*** nsaje_ has quit IRC11:33
ekarlsoof course anteaya ;)11:33
*** mriedem has quit IRC11:34
anteayaekarlso: are you willing to share that stacktrace with a paste?11:35
ekarlso2 seconds anteaya, looking if I can reproduce :)11:35
ekarlsoanteaya: just ignore, now I got it to work :/11:36
ekarlsobut do you have a clue on my pypi problem ?11:37
*** ruhe has joined #openstack-infra11:37
anteayaekarlso: glad it is working, no since I can't envision the problem myself yet, hence my request for a stacktrace11:38
*** che-arne has quit IRC11:38
ekarlsoanteaya: I mean this: https://jenkins.openstack.org/job/python-libraclient-pypi-upload/1/console11:39
ekarlsoit should be allowed to upload to pypi :/11:39
*** che-arne has joined #openstack-infra11:41
*** pblaho has joined #openstack-infra11:41
anteayado you have an account on pypi?11:41
anteayaare your credentials for the account correct?11:41
*** mriedem has joined #openstack-infra11:43
ekarlsoindeed11:43
ekarlsomy credentials ?11:43
*** boris-42 has joined #openstack-infra11:43
*** senk has joined #openstack-infra11:44
anteayadoes your pypi account require credentials to upload to it?11:46
anteayaI don't know from experience, I have never uploaded to pypi11:46
ekarlsoanteaya: I've added openstackci as a maintainer of the pkg which should be sufficient according to othjer folks here11:47
ekarlsocould you do a retrigger of the job to see if it was problems with pypi that caused it ?11:47
anteayacan i have the url for the patch?11:48
*** senk has quit IRC11:49
*** ruhe has quit IRC11:49
*** DinaBelova has joined #openstack-infra11:50
anteayahi DinaBelova11:51
ekarlsoanteaya: it's a tag so no link :(11:51
DinaBelovaanteaya, hello11:51
anteayaekarlso: then I don't think there is anything I can do to help11:51
*** SergeyLukjanov has joined #openstack-infra11:51
ekarlsoah ok11:52
anteayaekarlso: I will suggest checking back in about 3 hours and perhaps fungi might have a response11:52
*** SergeyLukjanov is now known as _SergeyLukjanov11:53
*** _SergeyLukjanov has quit IRC11:53
ekarlsook :)11:55
anteaya:D11:55
*** markmc has joined #openstack-infra11:56
*** pblaho has quit IRC11:59
*** pblaho has joined #openstack-infra11:59
*** pblaho has quit IRC11:59
*** pblaho has joined #openstack-infra11:59
*** hashar has joined #openstack-infra12:00
*** che-arne has quit IRC12:00
*** ericw has quit IRC12:02
*** dpyzhov has quit IRC12:02
*** dpyzhov has joined #openstack-infra12:03
*** Ryan_Lane has joined #openstack-infra12:04
*** jorisroovers has joined #openstack-infra12:06
*** Ryan_Lane has quit IRC12:08
*** SergeyLukjanov has joined #openstack-infra12:14
*** CaptTofu has quit IRC12:15
*** SergeyLukjanov has quit IRC12:15
*** ericw has joined #openstack-infra12:16
*** yaguang has quit IRC12:16
*** guohliu has quit IRC12:16
*** ruhe has joined #openstack-infra12:16
*** SergeyLukjanov has joined #openstack-infra12:16
*** ruhe has quit IRC12:21
*** michchap has quit IRC12:23
*** michchap has joined #openstack-infra12:24
openstackgerritDarragh Bailey proposed a change to openstack-infra/jenkins-job-builder: Use yaml local tags to support including files  https://review.openstack.org/4878312:24
openstackgerritDarragh Bailey proposed a change to openstack-infra/jenkins-job-builder: Provide default ConfigParser object  https://review.openstack.org/4879012:24
*** che-arne has joined #openstack-infra12:25
*** CaptTofu has joined #openstack-infra12:27
*** michchap has quit IRC12:29
*** michchap has joined #openstack-infra12:29
*** ruhe has joined #openstack-infra12:36
mordreddarragh sends us patches but doesn't hang out with us on IRC anymore12:39
openstackgerritNikita Konovalov proposed a change to openstack-infra/storyboard: Added task ordering  https://review.openstack.org/5602612:40
sdaguemordred: any idea if matplotlib is on static.o.o, or if there would be an objection to adding it?12:42
*** SergeyLukjanov is now known as _SergeyLukjanov12:42
*** _SergeyLukjanov has quit IRC12:43
openstackgerritMonty Taylor proposed a change to openstack-infra/reviewstats: Add jenkins-job-builder as a broken out project  https://review.openstack.org/5660312:46
mordredsdague: I do not know, I'll check - and I don't think there would be an objection12:46
mordredsdague: does it want to be on static and not on the build slaves themselves?12:46
*** senk has joined #openstack-infra12:47
sdaguemordred: this would be for the gate dashboard12:47
sdaguewhich would run under hourly cron12:47
*** sdake has quit IRC12:48
sdaguebecause I feel like some of the visualizations I want to do are going to be easier to accomplish with matplotlib than d312:48
*** sdake has joined #openstack-infra12:48
*** sdake has quit IRC12:48
*** sdake has joined #openstack-infra12:48
*** boris-42 has quit IRC12:48
*** alexpilotti has quit IRC12:49
mordredk. works for me12:49
*** nicedice_ has quit IRC12:49
*** senk has quit IRC12:51
*** sandywalsh has quit IRC12:53
*** ruhe has quit IRC12:54
*** DinaBelova has quit IRC12:55
*** SergeyLukjanov has joined #openstack-infra12:55
*** ruhe has joined #openstack-infra13:00
*** mkerrin has joined #openstack-infra13:01
*** sandywalsh has joined #openstack-infra13:05
*** dstanek has joined #openstack-infra13:12
*** dims has joined #openstack-infra13:18
*** pabelanger has quit IRC13:24
*** weshay has joined #openstack-infra13:27
chmouelhello, sorry bugging again any chances to get bug 1251041 done?13:27
chmouelhttps://bugs.launchpad.net/openstack-ci/+bug/125104113:28
mordredchmouel: done13:29
chmouelmordred: awesome thanks13:29
chmoueland about my issues I have sent to the ML, should I disable the pep8 first to get the fix merged?13:30
chmouelhttp://lists.openstack.org/pipermail/openstack-infra/2013-November/000438.html13:30
mordredchmouel: you should just be able to submit the change to change the tox.ini13:31
*** CaptTofu has quit IRC13:31
chmouelcool13:31
*** CaptTofu has joined #openstack-infra13:32
mordredchmouel: remote:   https://review.openstack.org/5660613:33
mordredremote:   https://review.openstack.org/5660713:33
mordredmerry christmas13:33
*** ruhe has quit IRC13:36
*** thomasem has joined #openstack-infra13:36
*** talluri has quit IRC13:36
*** CaptTofu has quit IRC13:36
openstackgerritA change was merged to openstack-infra/config: Make python33 gate job for Rubick non-voting  https://review.openstack.org/5653613:39
openstackgerritA change was merged to openstack-infra/config: Improve climate jobs configs  https://review.openstack.org/5657813:40
openstackgerritA change was merged to openstack-infra/config: Add channel #rubick to gerritbot configuration  https://review.openstack.org/5654213:41
*** Ryan_Lane has joined #openstack-infra13:42
*** julim has joined #openstack-infra13:46
*** pblaho has quit IRC13:46
*** senk has joined #openstack-infra13:49
*** dcramer_ has quit IRC13:50
*** CaptTofu has joined #openstack-infra13:50
*** HenryG has joined #openstack-infra13:52
*** Ryan_Lane has quit IRC13:52
*** openstackgerrit has quit IRC13:53
*** openstackgerrit has joined #openstack-infra13:53
*** senk has quit IRC13:53
*** boris-42 has joined #openstack-infra13:54
*** changbl has joined #openstack-infra13:55
*** ruhe has joined #openstack-infra13:57
*** ruhe has quit IRC13:59
*** dprince has joined #openstack-infra13:59
*** herndon has joined #openstack-infra14:05
*** ftcjeff has joined #openstack-infra14:06
fungiekarlso: i think the upload problem for libraclient is that pypi.python.org is broken14:10
*** alexpilotti has joined #openstack-infra14:10
fungior at least something's gone horribly wrong with fastly's cdn... Error 503 Backend is unhealthy (Guru Meditation: XID: 1135013380)14:11
fungidstufft: ^ (presumably you're already painfully aware)14:11
dstufftstatus.python.org14:11
*** esker has joined #openstack-infra14:12
fungiperfect--thanks@14:12
fungiwhy did i not know that existed? i will start pointing people at it with great frequency in future situations14:12
*** russellb is now known as rustlebee14:13
fungiekarlso: anyhoo, i can retrigger the upload job once it recovers. i'll leave myself a reminder14:13
*** anteaya is now known as anttteaya14:14
dstufftfungi: it's only a few months old or so14:14
fungiahh, that could be it. i drink away a majority of my brain cells not committed to long-term memory14:15
*** bnemec_ is now known as beekneemech14:18
*** CaptTofu has quit IRC14:20
*** CaptTofu has joined #openstack-infra14:21
*** cody-somerville has joined #openstack-infra14:22
*** boris-42 has quit IRC14:23
*** oubiwann has quit IRC14:23
*** mfer has joined #openstack-infra14:26
*** boris-42 has joined #openstack-infra14:28
*** CaptTofu has quit IRC14:28
*** CaptTofu has joined #openstack-infra14:28
openstackgerritA change was merged to openstack-infra/jeepyb: Fix savanna repos mappings  https://review.openstack.org/5636214:30
*** mrmartin has joined #openstack-infra14:31
*** boris-42 has quit IRC14:32
*** SergeyLukjanov is now known as _SergeyLukjanov14:34
*** _SergeyLukjanov has quit IRC14:35
*** herndon has quit IRC14:39
*** hashar has quit IRC14:43
*** dkliban has joined #openstack-infra14:45
*** mrmartin has quit IRC14:46
*** esker has quit IRC14:47
*** xeyed4good has joined #openstack-infra14:47
*** xeyed4good has left #openstack-infra14:47
*** jamesmcarthur has joined #openstack-infra14:51
*** boris-42 has joined #openstack-infra14:51
*** oubiwann has joined #openstack-infra14:52
*** nati_ueno has joined #openstack-infra14:54
mordredfungi, dstufft morning!14:57
fungimorning mordred14:59
*** wenlock has joined #openstack-infra14:59
fungilooks like /srv/static/logs on static.o.o is down to 1% free, so i'm going ahead with the 1tb add here momentarily14:59
*** boris-42 has quit IRC14:59
fungimy find through the filesystem suggested that the weekly compress and expire cron job is doing what it's supposed to, so we really are just storing increasingly more log data15:00
mordredimpressive15:00
anttteayago fungi15:01
anttteayaglad you spotted it on a weekday15:01
fungianttteaya: had a couple extra cups of t, i see? ;)15:01
*** beagles has joined #openstack-infra15:05
anttteayaoh goodness, I am glad to be able to sleep until 4:20am right now15:06
anttteayagetting better15:06
anttteayait's a good thing I don't drink coffee15:07
*** dcramer_ has joined #openstack-infra15:07
anttteaya:D15:07
driptonSo I attempted another sqlalchemy-migrate release, and again the tag reached github but the tarball failed to reach PyPI.  This time I think because PyPI was down.  (When I tried by hand afterward I got a 503 then a 502 later. It's up now.)  Is there a way I can manually kick off another attempt at the push to PyPI without doing another release tag?15:07
fungidripton: i can rerun it here in a bit. i need to do the same thing for python-libraclient as well (they also tried to release while pypi was broken)15:08
driptonthanks fungi15:08
driptonI added a note to the wiki release page to check that PyPI is up before starting to reduce the chance at pain.15:09
*** wenlock has quit IRC15:09
driptonOf course that's no guarantee since it could go down in the middle but it should help the odds15:09
fungiagreed--thanks15:09
*** jaypipes has joined #openstack-infra15:11
openstackgerritDavanum Srinivas (dims) proposed a change to openstack-infra/config: Switch gate-tempest-devstack-vm-neutron-large-ops to a voting job  https://review.openstack.org/5662915:16
*** ryanpetrello has quit IRC15:18
*** nati_ueno has quit IRC15:21
*** ruhe has joined #openstack-infra15:25
*** rnirmal has joined #openstack-infra15:25
*** nati_ueno has joined #openstack-infra15:26
*** nati_ueno has quit IRC15:28
*** ryanpetrello has joined #openstack-infra15:28
*** rnirmal has quit IRC15:28
*** rnirmal has joined #openstack-infra15:29
*** datsun180b has joined #openstack-infra15:30
*** pcrews has joined #openstack-infra15:33
fungiekarlso: now that pypi is up, i can see that https://pypi.python.org/pypi/python-libraclient only shows " Package Index Owner: Endre.Karlson"15:35
fungiekarlso: please add openstackci to either the "Package Index Owner" or "Package Index Maintainer" for python-libraclient15:35
*** ruhe has quit IRC15:35
*** jhesketh has quit IRC15:36
fungidripton: you should be all set now... https://pypi.python.org/pypi/sqlalchemy-migrate15:38
driptonawesome.  thanks fungi15:38
funginp15:38
*** boris-42 has joined #openstack-infra15:39
*** rcleere has joined #openstack-infra15:40
*** alcabrera has joined #openstack-infra15:42
*** wenlock has joined #openstack-infra15:43
fungifree space... http://cacti.openstack.org/cacti/graph.php?action=view&local_graph_id=717&rra_id=all15:45
*** ryanpetrello has quit IRC15:47
ekarlsofungi: around ?15:48
fungiekarlso: yep15:48
fungiekarlso: doesn't look like you've fixed it yet15:49
fungioh, i see it does show " Maintainer: openstackci " but i'm not sure whether that's sufficient15:49
*** dansmith is now known as damnsmith15:49
*** rustlebee is now known as drumkilla15:50
*** drumkilla is now known as rustlebee15:50
*** beagles is now known as b3nt_pin15:51
fungiekarlso: yeah, i just tried again and it's still refusing the upload with "You are not allowed to edit 'python-libraclient' package information"15:51
fungiso i'm pretty sure it's the package index roles it checks for this15:51
*** rustlebee is now known as drumkilla15:51
*** ryanpetrello has joined #openstack-infra15:52
*** mrmartin has joined #openstack-infra15:53
*** harlowja_at_home has joined #openstack-infra15:53
*** che-arne has quit IRC15:55
harlowja_at_homejd__, hi there, for https://review.openstack.org/#/c/52725/ i'll try to get 3.3 support on next week, sound ok, just want to get that requirement update in so that others aren't blocked anymore (in cinder and elsewhere)15:55
*** gema has joined #openstack-infra15:55
jd__harlowja_at_home: ok, but you have to spit swear you're going to have Python 3 support :-)15:56
harlowja_at_homespit swear, haha15:56
harlowja_at_homei marked the bug as high priority, don't think its anything hard to do it15:56
harlowja_at_homejust requires a little work15:57
*** jorisroovers has quit IRC15:57
jd__approved :)15:57
harlowja_at_homethx@15:57
harlowja_at_home*thx!15:57
*** mrmartin has quit IRC15:57
harlowja_at_homemuch appreciated15:58
harlowja_at_homeu forgot to mention in the review that i spit swore,lol15:58
*** ruhe has joined #openstack-infra16:03
harlowja_at_homejd__, infact just found https://review.openstack.org/#/c/45852/4 so it seems like we are actually 99% of the way there16:03
harlowja_at_homejust some final touchups and should be good to go16:04
harlowja_at_homealthough it does worry me a little about the dependencies that are not 3.3 read (babel, iso8601)16:05
harlowja_at_home*ready16:05
harlowja_at_homehow are other projects which depend on those 3.3 ready?16:06
ekarlsofungi: can you re-fire that now ?16:06
*** jcoufal has quit IRC16:06
*** harlowja_at_home has quit IRC16:07
fungiekarlso: success!16:09
fungiexcelsior!16:09
*** ericw_ has joined #openstack-infra16:10
*** ericw has quit IRC16:10
ekarlsoniceness fungi :)16:11
*** ericw_ is now known as ericw16:11
*** yassine has quit IRC16:16
*** che-arne has joined #openstack-infra16:17
*** UtahDave has joined #openstack-infra16:19
*** sdake has quit IRC16:21
*** sdake has joined #openstack-infra16:22
*** sdake has quit IRC16:22
*** sdake has joined #openstack-infra16:22
*** UtahDave has quit IRC16:24
*** UtahDave has joined #openstack-infra16:29
*** ruhe has quit IRC16:31
*** markmcclain has joined #openstack-infra16:31
*** alaski is now known as lascii16:32
*** ryanpetrello has quit IRC16:36
*** ruhe has joined #openstack-infra16:36
*** xeyed4good1 has joined #openstack-infra16:46
openstackgerritA change was merged to openstack/requirements: Add taskflow (used by cinder + others) to requirements  https://review.openstack.org/5272516:48
*** talluri has joined #openstack-infra16:48
*** katyafervent has quit IRC16:49
*** xeyed4good1 has left #openstack-infra16:51
openstackgerritJenkins proposed a change to openstack/requirements: Updated from global requirements  https://review.openstack.org/5665716:51
*** pblaho has joined #openstack-infra16:52
fungiuh16:53
fungihuh16:53
fungithat's mildly hilarious16:53
fungioh, but i guess that's it updating its own requirements based on changes to its global requirements, so not that silly after all16:53
fungiactually kinda smart16:54
anttteayalooks funny though16:54
anttteayaI propose a change to myself16:54
*** jpich has quit IRC16:55
clarkbsdague: jog0 https://review.openstack.org/#/c/56465/ should be ready to go16:56
mordredclarkb: you wanna hear something great?16:57
*** ArxCruz has quit IRC16:57
clarkbsure16:57
mordredclarkb: I'm pretty sure I'm going to have to add a web server to pbr integration.sh16:57
mordredclarkb: because the serve-things-from-file-path code path in pip with wheels enabled seems unable to negotiate case insensitivity and -/_ translations16:58
mordredwhereas when it reads from a url, the code path can do that16:58
mordreddstufft: ^^ btw - that's silly, just for the record16:58
dstufftmordred: verify it still exists in develop branch?16:59
dstufftwe changed something relating to that16:59
mordredooh. cool. I'll check it out17:00
mordredbecuase the CRAZY part is - I actually don't need to test that that works in the script17:00
mordredwe're testing something else17:00
mordredclarkb: in any case- the change to pypi-mirror now gets through everything17:01
mordredso our wheel mirrors are complete17:01
mordreddstufft, clarkb: http://pypi.openstack.org/openstack/CentOS%206.4/ and http://pypi.openstack.org/openstack/Ubuntu-12.04/17:01
*** datsun180b_ has joined #openstack-infra17:02
mordredsdague, clarkb: which means - if we add export PIP_USE_WHEEL=1 to devstack-gate, we should see a significant speedup in runtime17:02
*** datsun180b has quit IRC17:02
*** datsun180b_ is now known as datsun180b17:02
*** bknudson has left #openstack-infra17:04
*** wenlock has quit IRC17:04
openstackgerritMonty Taylor proposed a change to openstack-infra/devstack-gate: Enable the use of wheels in the gate  https://review.openstack.org/5666017:05
mordredclarkb: ^^ let's try it and see :)17:05
*** reed has joined #openstack-infra17:07
jd__is https://review.openstack.org/#/c/56657 supposed to happen?17:09
*** herndon has joined #openstack-infra17:11
openstackgerritDan Prince proposed a change to openstack/requirements: Bump to using SQLAlchemy migrate 0.8.  https://review.openstack.org/5666217:11
anttteayaw00t for a speed-up in runtime17:13
*** talluri_ has joined #openstack-infra17:17
*** dstanek has quit IRC17:18
mordredmriedem: I think what we'd be looking at is third party testing (for db2 CI)17:18
mordredmriedem: http://ci.openstack.org/third_party.html17:18
mriedemmordred: so i'm not sure how the existing sqlalchemy-migrate CI works for mysql and postgresql, is it just an image that has those already preloaded with access for openstackci_test?17:18
*** ruhe has quit IRC17:18
mordredmriedem: that's right17:18
*** talluri has quit IRC17:18
*** bknudson has joined #openstack-infra17:18
devanandamordred: any thoughts on this error? http://logs.openstack.org/20/56520/3/check/gate-ironic-python27/4652e0a/console.html17:19
mordredthe unittest slaves we run for the rest of openstack already have both of those dbs on them with those users17:19
mriedemmordred: so if there is a free db2 with no expiration, why couldn't that be done the same as mysql and postgresql?17:19
mriedemmordred: reasoning is we'd like to move db2 support into the core projects and run UT against those at part of that also17:19
mriedemdb2 in migrate is just a pre-req for nova, it's a big picture thing17:19
mordredmriedem: it largely has to do with the infra team's ability to actually maintain the installation of such a thing on our test nodes17:20
mriedemmordred: ok, that was my guess17:20
mordredmriedem: we currently do not have any non-open source software running anywhere17:20
mordredand in general most of the team is extremely uncomfortable touching such software17:21
mriedemgood point17:21
mriedemmordred: yeah, i totally get that17:21
mriedemand i'm not surprised, but i had to ask17:21
mordredwhich is why I'm thinking that getting a solid 3rd party testing rig up and going would be a good idea17:21
mordredbecause that's exactly the type of place it can work well - with folks who know how db2 works taking care of it17:21
mriedemmordred: ok, good enough for me, i'll make that the plan and let folks know on my ML thread so no one needs to repeat this same discussion17:22
mordredawesome!17:22
*** mrodden has joined #openstack-infra17:22
mordredI think it'll be great to get that support in there17:22
mriedemmrodden: good morning17:22
mriedemmrodden: get db2 working as 3rd party CI - go!17:22
mriedemactually, it's burger time17:23
*** xeyed4good has joined #openstack-infra17:27
*** xeyed4good has left #openstack-infra17:31
dimsmriedem, lol17:31
*** SergeyLukjanov has joined #openstack-infra17:31
*** oubiwann has quit IRC17:32
*** senk has joined #openstack-infra17:32
*** jgrimm has joined #openstack-infra17:33
jd__this new gate break is interesting, I think it's time for a good week-end :-)17:34
zaroanybody know how to execute the jjb tests?  the stuff in the tests/publishers folder.17:35
*** jgrimm is now known as reaper17:35
*** reaper is now known as jgrimm17:36
*** flaper87 is now known as flaper87|afk17:36
*** boris-42 has quit IRC17:38
*** boris-42 has joined #openstack-infra17:39
reedinteresting: traffic to openstac-dev for non integrated projects is about half17:40
reedmeaning that about half of the traffic on openstack-dev is made by projects not integrated (yet)17:41
*** boris-42 has quit IRC17:41
*** boris-42 has joined #openstack-infra17:42
*** oubiwann has joined #openstack-infra17:42
*** senk has quit IRC17:43
*** gyee has joined #openstack-infra17:44
mordreddprince, mriedem: what do we need to do?17:44
*** derekh has quit IRC17:44
*** dstanek has joined #openstack-infra17:44
devanandaclarkb: do projects have any policy around accepting the transifex changes from jenkins? or just, take 'em as they come in?17:45
*** pcrews has quit IRC17:45
dprincemordred: either cut a new release of sqlalchemy-migrate (which has a proper version number in the __init__.py)17:45
dprincemordred: or break protocol and send Nova, Ironic branches in before changes the global requirements.txt file.17:46
mordredAH. I se the problem. exciting17:46
*** ^d has joined #openstack-infra17:46
*** ^d has quit IRC17:47
*** ^d has joined #openstack-infra17:47
mordredgimme just a sec17:47
*** shardy is now known as shardy_afk17:49
*** iccha has joined #openstack-infra17:49
mordreddprince: https://review.openstack.org/#/c/56671/17:50
mordredmriedem: ^^17:50
*** markwash has quit IRC17:50
dprincemordred: go for it17:51
*** jamesmcarthur has quit IRC17:51
*** senk has joined #openstack-infra17:53
*** CaptTofu has quit IRC17:55
reedopenstack-dev has another serious problem: reply-to is set wrong17:56
reeddamn17:56
*** senk has quit IRC17:56
*** CaptTofu has joined #openstack-infra17:56
*** jerryz has joined #openstack-infra17:57
*** jamesmcarthur has joined #openstack-infra17:58
*** pblaho has quit IRC17:59
*** wenlock has joined #openstack-infra18:00
*** senk has joined #openstack-infra18:00
*** datsun180b has quit IRC18:02
*** vipuls is now known as vipul18:02
*** datsun180b has joined #openstack-infra18:03
*** senk1 has joined #openstack-infra18:03
*** dstanek has quit IRC18:04
*** senk has quit IRC18:05
*** oubiwann has quit IRC18:05
*** UtahDave has quit IRC18:06
*** osanchez has quit IRC18:06
*** oubiwann has joined #openstack-infra18:09
fungireed: that sounds about right. stackforge projects are now about half of the overall git repository count we maintain on our infrastructure as well (and that proportion continues to rise)18:10
clarkbdevananda: I think it is a generally good idea to skim tyhe changes to make sure nothing crazy is going in18:10
fungiwe're adding several new stackforge repositories a week on average18:10
clarkbdevananda: double check that the files that are touched are .pot and .po files18:10
clarkbdevananda: it shouldn't be modifying any other files18:11
reedfungi, I setup the filters as I suggested myself, the mailboxes are quite nicely sorted I have to say18:11
clarkband you can look in the .po and .pot files to see that strings are being updated and not being replaced with say gibberish (this might require too much effort though)18:11
reedI'd blog about it... but my wordpress installation broke and I don't have time to fix it18:11
fungireed: and i think about half the requests for assistance the infra team fields (in irc, lp bugs, ml threads) is for stackforge at this point, since we tend to end up being their introduction to interacting with the rest of the community18:11
devanandaclarkb: cool. so a little human eye checking. but folks aren't batching them or annything18:12
reedfungi, that sounds like a problem to me18:12
* reed is late18:12
fungireed: in my opinion, it definitely is a problem18:12
clarkbdevananda: if you let the change stay open jenkins will propose new patchsets to that change18:12
clarkbdevananda: so you can let them sit until it is convenient for you to do quick review18:12
devanandaclarkb: ah! that's useful18:12
*** mrmartin has joined #openstack-infra18:13
fungireed: i get the feeling that stackforge projects, on the whole, are more needy as compared to officially-sanctioned openstack projects because they lack a history with the community and haven't had time to figure out how we work together18:15
clarkbreed: I would agree18:16
fungiso it's great for developer community growth, but also means a significant increase in support burden18:16
*** hogepodge has joined #openstack-infra18:16
reedfungi, clarkb, we need to talk more about this18:16
reedI have to run, need to meet students at Cal State SF who setup an openstack cloud18:17
clarkbfor integrated projects we have previously invested the support neceessary to get them going18:17
pleia2anttteaya: do you recall what the puppet dashboard alternative mentioned at the summit was? (I thought it was just "dash" but my google-fu is failing me), I want to update the bug18:17
clarkbnew projects need that initial investment18:17
fungireed: definitely. good luck over there18:17
pleia2reed: have fun18:17
reedtnx18:17
clarkbpleia2: Hunner would know18:17
pleia2ah, Hunner_irssi!18:17
* fungi is now known as fungi_ircii18:18
fungi(just kidding)18:18
pleia2Hunner_irssi: https://bugs.launchpad.net/openstack-ci/+bug/1218631 is our current bug report for our dead puppet dashboard, if you could update it with options you're familiar with I'd be grateful :)18:19
* fungi hasn't used ircii in ages18:19
pleia2fungi: haha18:19
*** ericw_ has joined #openstack-infra18:20
*** jog0 is now known as flashgordon18:20
* fungi is now known as fungi_manually_entering_irc_protocol_commands_over_a_raw_socket18:20
*** jhesketh_ has quit IRC18:20
pleia2I always expected that's how you did it18:21
*** ericw has quit IRC18:21
*** ericw_ is now known as ericw18:21
pleia2suspected too18:21
*** markmc has quit IRC18:21
flashgordonclarkb: thanks re: https://review.openstack.org/#/c/56465/18:22
*** guohliu has joined #openstack-infra18:24
NobodyCamclarkb: you around?18:25
zaroclarkb: do you know how to run jjb tests?18:25
clarkbNobodyCam: ya18:25
clarkbzaro: they are tox envs18:26
*** boris-42 has quit IRC18:26
clarkbzaro: I think you can just do tox -e$env18:26
NobodyCamdo you know how to add tlh to http://www.transifex.com/projects/p/ironic/18:26
clarkbzaro: actually wait there is a script to run that runs the tox envs18:26
clarkbtlh?18:26
NobodyCamhttps://www.transifex.com/languages/18:27
clarkbzaro: tools/run-compare-xml.sh runs the comparison tests and tox -epy27 will run the unittests18:27
*** jamesmcarthur has quit IRC18:27
clarkbNobodyCam: ah18:27
NobodyCam:)18:27
clarkbNobodyCam: I think you sign in as a translator and pick that language and start translating it for ironic18:28
clarkbNobodyCam: then the jenkins jobs will find that language in transifex and propose the .po file to gerrit18:28
openstackgerritDan Prince proposed a change to openstack/requirements: Bump to using SQLAlchemy migrate 0.8.2.  https://review.openstack.org/5666218:28
NobodyCam:)18:28
clarkbzaro: I am about to head into the office we can sort it out in a little bit if those don't work for some reason18:29
devanandadprince: I'm not able to pip install --upgrade after that change: No distributions matching the version for sqlalchemy-migrate>=0.8.2 (from -r requirements.txt (line 11))18:30
zarook. that works.  but i still don't see the relationship from -epy27 to unit tests. please explain later.18:30
anttteayapleia2: puppet board18:31
anttteayais hunner about?18:31
clarkbanttteaya: he is in channel but may not be watching irc18:31
anttteayaclarkb: k18:31
pleia2I'm hoping he'll catch up asyncronously ;)18:31
anttteayaI'm pretty sure it was called puppet board18:31
Hunneranttteaya: Hiya18:32
anttteayahello there18:32
anttteayawas puppet board the module you suggested to us at summit?18:32
Hunneranttteaya: Yeah, https://github.com/nedap/puppetboard is the spiffy new dashboard reporting thing. I haven't updated my module for it yet18:32
anttteayacool18:33
mordredooh. neat!18:33
HunnerI have https://github.com/hunner/puppetboard-vagrant that was supposed to `vagrant up` and get a fully working install of it, but I haven't retested since puppetboard was originally released18:33
Hunner(also, it helps to have a puppetdb database to import as it will otherwise be empty)18:34
*** marun has quit IRC18:34
*** jhesketh_ has joined #openstack-infra18:34
*** CaptTofu has quit IRC18:34
*** CaptTofu has joined #openstack-infra18:34
mordredHunner: it refers to new/experimental puppetdb apis18:34
mordredHunner: are those only in 3.x?18:35
mgagnemordred: AFAIK, puppetdb isn't part of puppet itself18:35
Hunnermordred: Those APIs were experimental at the time of puppetboard's release, but are now stable18:35
mgagnemordred: it's a different service18:35
Hunnermordred: puppetdb is a catalog/report/facts storage service with an HTTP REST api for querying it18:36
Hunnerand is really fast, so puppetboard is really fast18:36
Hunner(since everyone knows the old puppet dashboard + mysql sucked)18:36
*** ruhe has joined #openstack-infra18:36
HunnerThe new puppet dashboard sucks less, but is overkill for a light reporting web interface18:36
mgagneHunner: Puppet 3.x != PuppetDB API v3 right?18:36
clarkbwe don't have a puppetdb though18:37
clarkb(we could add one I am sure)18:37
*** mrmartin has quit IRC18:37
Hunnermgagne: Correct18:37
mordredah18:38
mordredso we install a puppetdb18:38
*** ^d has quit IRC18:38
HunnerOh, you're still on 2.7... Let me think18:38
mordredand then configure puppetmaster to report to it18:38
pleia2mordred: I think we want to confirm a channel is 1. registered 2. has jeblair has founder-status ops before adding gerritbot to it (#rubick is registered at least, but no jeblair in list)18:38
*** ^d has joined #openstack-infra18:39
Hunneryeah 2.7 works with puppetdb18:39
dprincedevananda: its a WIP man18:39
dprincedevananda: Everything is busted until we release that anyways18:39
mordred"Your site’s puppet masters must be running Puppet 2.7.12 or later. You will need to connect your puppet masters to PuppetDB after installing it. If you wish to use PuppetDB with standalone nodes that are running puppet apply, every node must be running 2.7.12 or later."18:39
mordredpleia2: ah - you are quite right. thank you18:39
*** pcrews has joined #openstack-infra18:39
clarkbis there a tl;dr on the sqla-migrate thing?18:39
clarkbmordred: dprince ^18:39
pleia2mordred: #openstack-anvil isn't even registered, I -1ed it after you +A here https://review.openstack.org/#/c/53974/18:39
wenlockhunner, mordred: I also thought i saw in chat some weeks back about foreman and puppetboard.... is there a voting thing going?18:39
mordredpleia2: /me hangs head18:40
Hunnerwenlock: It was discussed offline unofficially at the summit. We are more tossing ideas around at this point18:40
*** ruhe has quit IRC18:40
wenlockahh cool18:40
pleia2mordred: just wanted to point it out since I saw it keep happening :)18:41
clarkbmordred: https://review.openstack.org/#/c/56657/ huh18:41
clarkbmordred: btw I think we disabled that job18:41
wenlocki have no preference, but yeah, would be nice to see a better dashboard for sure18:41
dprinceclarkb: version number of the 0.8. release was bad. And the world has ended because of it (it breaks migrations in several projects)18:41
clarkbfungi: did that change get merged? I +2'd it18:41
dprinceclarkb: 0.8.1 release was bad18:41
HunnerBasically, there is (dashboard|foreman|puppetboard) as a web reporting interface, and dashboard/foreman do lots of other things than may not be useful and have more system requirements18:41
anttteayaif we are considering foreman please consider halite, the salt dashboard18:42
mordredoh - yeah - foreman seems to be way overkill18:42
anttteayaI didn't mention it before since I didn't think we would consider foreman18:43
pleia2Hunner: https://bugs.launchpad.net/openstack-ci/+bug/1218631 is our active bug on it, which has some details of what we looked at18:43
pleia2(incl foreman)18:43
Hunneranttteaya: Would you mind if I update my puppetboard-vagrant repo and get a DB dump from my infra team to demo it for you on monday?18:43
Hunnerpleia2: Oh cool, thanks18:43
pleia2Hunner: you're welcome to update the bug too (it would be helpful!)18:43
clarkbdprince: thanks18:43
openstackgerritMarcus Nilsson proposed a change to openstack-infra/jenkins-job-builder: Added support for Stash Notifier  https://review.openstack.org/5633718:43
anttteayaHunner: don't let me stand in your way, but I think fungi or clarkb are the people who can get you the db dump18:44
anttteayaI don't have access18:44
anttteayaand yes demos are always great18:44
clarkbanttteaya: I think hunner is going to get a db dump from his side18:44
Hunneranttteaya: The DB dump would come from my QA team actually, not this infra18:44
clarkb(we don't have a db yet)18:44
Hunner^18:44
anttteayaah okay18:45
anttteayasince you need nothing from me, I consider my part done then18:45
Hunneranttteaya: Thanks for pinging me about it :). It keeps me from pushing it to a back burner18:45
anttteayaunderstood18:45
anttteayaactually this one was pleia218:45
*** xeyed4good has joined #openstack-infra18:46
fungiclarkb: i didn't approve it. saw you were working up a potential actual fix but wasn't sure how baked it would end up being18:46
fungihaven't gotten back around to looking at it again yet18:47
HunnerOh, I see pleia2 highlight hunner_irssi... I recently switched to weechat but left irssi running jic18:47
clarkbfungi: I think the actual fix is going to need more baking and thinking18:47
clarkbfungi: I -1'd my own patch as I realized it has a few flaws that are pretty bad18:47
pleia2Hunner: hah, yeah, I stopped tab-complete on finding that user ;)18:47
clarkbI didn't WIP it because I want people to look at it and it may be useable in the mean time18:48
*** Ryan_Lane has joined #openstack-infra18:50
*** dstanek has joined #openstack-infra18:50
*** senk1 has quit IRC18:53
*** senk has joined #openstack-infra18:54
openstackgerritPeter Liljenberg proposed a change to openstack-infra/jenkins-job-builder: Updated gitblit projectname  https://review.openstack.org/5647518:55
*** reed has quit IRC18:55
*** xeyed4good has left #openstack-infra18:55
*** sarob has joined #openstack-infra18:56
fungimordred: so i guess, input on https://review.openstack.org/56489 (for now) and https://review.openstack.org/56491 (for later)?18:57
*** senk has quit IRC18:57
*** senk has joined #openstack-infra18:58
*** guohliu has quit IRC18:59
*** alexpilotti has quit IRC19:00
*** sarob has quit IRC19:01
mordredfungi: yeah. I guess so19:01
mordredfungi: I'm going to +A the first one19:02
mordredclarkb: what if we just look in .gitreview ?19:03
*** nicedice has joined #openstack-infra19:03
*** alexpilotti has joined #openstack-infra19:04
fungithat's probably viable as long as we properly maintain that on each branch, but it does seem a little dirty (conflating purpose of that file)19:04
mordredor fork propose_requiremenst_update in each stable branch?19:04
* mordred just brainstorming19:05
mordredbecause if we're clever with git, we'll also need to handle a project not havin a corresponding target branch19:05
*** hogepodge has quit IRC19:06
*** rnirmal has quit IRC19:06
*** hogepodge has joined #openstack-infra19:06
*** mriedem has quit IRC19:06
*** SergeyLukjanov has quit IRC19:09
*** xeyed4good has joined #openstack-infra19:10
*** xeyed4good has left #openstack-infra19:10
*** dstanek has quit IRC19:10
*** mriedem has joined #openstack-infra19:11
openstackgerritA change was merged to openstack-infra/config: Stop running propose-requirements-updates job  https://review.openstack.org/5648919:12
*** dims has quit IRC19:14
fungiwhich ideally should cause it to get skipped19:14
*** dims has joined #openstack-infra19:14
*** mrmartin has joined #openstack-infra19:17
ogelbukhfungi: hi there19:17
fungiogelbukh: what's up?19:17
*** jergerber has joined #openstack-infra19:17
ogelbukhfungi: i really hate to come back over and over with it, but we have another issue with rubick project19:18
fungioh?19:18
ogelbukhhttps://bugs.launchpad.net/openstack-ci/+bug/125173319:18
*** yolanda has quit IRC19:18
ogelbukhlooks like acls didn't apply to gerrit19:18
fungiogelbukh: fixing. hold on19:18
ogelbukhthanks!19:19
*** SergeyLukjanov has joined #openstack-infra19:19
*** herndon has quit IRC19:19
anttteayaapparently neutron, when it was called quantum had a separate mailing list for cores, did it get lost when the launchpad name change happened?19:20
*** herndon has joined #openstack-infra19:20
*** herndon has quit IRC19:21
*** talluri_ has quit IRC19:21
anttteayabecause I am interested in viewing the archives if it is still around19:21
fungianttteaya: it would have been a launchpad list19:22
anttteayafungi: do you think it still survives then?19:23
*** CaptTofu has quit IRC19:23
*** CaptTofu has joined #openstack-infra19:24
*** sarob has joined #openstack-infra19:24
fungianttteaya: i'm not finding it, so i don't think so19:24
*** melwitt has joined #openstack-infra19:25
fungias it is, we try to not encourage core devs on projects to have exclusive mailing lists. there is some concern that it leads to cabal-like behaviors (or the impression thereof) over time19:25
anttteayafungi: thanks for looking19:26
clarkbmordred I like that both of those ideas are simple19:26
anttteayaright19:26
pleia2anttteaya: http://www.mail-archive.com/quantum-core@lists.launchpad.net/19:26
pleia2a mirror anyway19:26
anttteayathanks19:26
mordredclarkb: I like simple thinkgs19:26
mordredclarkb: I thnk I like just setting a branch variable in the propose script when we make new branches19:26
clarkbthe propose script lives in config today but can be moved19:27
*** CaptainTacoSauce has joined #openstack-infra19:28
mordredoh. duh19:28
mordredwell, we could just put a thing somewhere in the requirements repo with the branch name I guess19:29
*** sarob has quit IRC19:29
*** electrichead has joined #openstack-infra19:29
*** SergeyLukjanov has quit IRC19:29
mesteryanttteaya: The quantum-core list was only accessible to cores (before my time, I never saw any of it), and it no longer exists.19:32
mesteryanttteaya: My suspicion is archives would have limited access as well, though I don't know that for sure.19:32
* mestery shrugges.19:32
anttteayamestery: thanks19:32
mesteryanttteaya: Sure, no problem19:32
anttteayajust trying to do a through dig19:32
anttteayait appears I can read the emails19:33
anttteayaand yeah talking with markmcclain in pm, he said it doesn't exist anymore19:33
anttteayaand the irc channel is new as of July19:33
anttteayathis was news to me19:33
*** ryanpetrello has joined #openstack-infra19:33
anttteayaI had been operating under the belief the channel was as old as some of the others19:33
mesteryanttteaya: July? I'm pretty sure it's existed longer than that if memory serves me correctly.19:33
anttteayamestery: cool19:34
clarkbfungi: if you haven't started yet I am going to hack on the adding havana jobs change now19:34
*** dstanek has joined #openstack-infra19:34
anttteayaIt only started getting logged about 2 weeks before summit19:34
anttteayaso I have no point of reference to check myself19:34
flashgordonanttteaya: who knew t-shirts were such a hot button topic19:34
anttteayaflashgordon: who knew19:34
fungiclarkb: go for it. i only just got the stable/folsom eol work announced to the stable-maint ml and abandoned the open reviews for it19:35
*** dprince has quit IRC19:35
*** weshay has quit IRC19:35
*** chandankumar has quit IRC19:35
*** vipul has quit IRC19:35
*** maurosr has quit IRC19:35
*** blamar has quit IRC19:35
*** hub_cap has quit IRC19:35
*** sparkycollier has quit IRC19:35
*** fungi has quit IRC19:35
*** mattymo has quit IRC19:35
*** ianw has quit IRC19:35
anttteayacaught me by surprise19:35
flashgordonanttteaya: devs are very informal, we like to sit half naked at home and code19:36
*** hub_cap has joined #openstack-infra19:37
anttteayabut we seem to have talked it out19:37
anttteayaand reached a happy place19:37
anttteayaflashgordon: that is TMI19:37
*** mattymo has joined #openstack-infra19:37
*** weshay has joined #openstack-infra19:37
*** vipul has joined #openstack-infra19:37
*** ianw has joined #openstack-infra19:37
*** maurosr has joined #openstack-infra19:37
*** blamar has joined #openstack-infra19:37
*** dprince has joined #openstack-infra19:37
*** chandankumar has joined #openstack-infra19:38
*** fungi has joined #openstack-infra19:38
anttteayayour type is fully clothed to me19:38
anttteayajust the way I like it19:38
flashgordonanttteaya: :)19:39
*** markwash has joined #openstack-infra19:41
* pleia2 knew t-shirts were a hot button topic19:42
pleia2but typically it's due to only men's sizing being ordered and women feeling like they are wearing tents :)19:42
*** hashar has joined #openstack-infra19:42
*** johnthetubaguy1 has quit IRC19:44
flashgordonpleia2: lol19:44
flashgordonso now that we are getting more 3rd party testing (Woot)19:44
flashgordonhow do we make sure they don't go silent on us and stop doing there job?19:45
flashgordonwe just saw that with xen and smokestack19:45
*** alexpilotti has quit IRC19:45
pleia2I think the simple answer is that we don't, that's why they are 3rd party testers and we don't depend on them in the gate19:45
anttteaya:D19:46
*** dcramer_ has quit IRC19:47
flashgordonpleia2: in nova we want to drop drivers taht have *no* testing19:48
flashgordonso we don't gate on 3rd party  but want to know that it doesn't vanish too19:48
pleia2flashgordon: yeah, unfortunately we live with the fact that their managers/company/whatever can pull support at any time, maybe make a requirement to depend upon at least 2 3rd parties doing testing in case one goes away?19:49
*** soren has quit IRC19:49
flashgordonpleia2: that be a bit much, I was thinking just a phone home thing19:51
pleia2sure19:51
flashgordonor soemthing that searches gerrit for the 3rd party tester comments19:51
flashgordonso we just have list of the 3rd party tester names and names of tests they report back and if one goes missing alert19:52
*** soren has joined #openstack-infra19:52
*** sarob has joined #openstack-infra19:54
*** sarob has quit IRC19:56
fungiflashgordon: nothing comes to mind as a 100% solution without being able to directly query the gerrit db (best you can do through the api/webui is find open changes on which that account has commented)19:57
fungiflashgordon: and even then, is the intent that they report on every nova change, or only on changes which touch their corner of the project?19:58
beekneemechHey, so I'm seeing failures in gate jobs due to the sqla-migrate version problem, but I'm told that should be fixed by now.19:58
beekneemechIs it possible that our pypi mirror hasn't picked up the fixed version yet?19:59
beekneemechhttp://logs.openstack.org/01/55801/1/gate/gate-oslo-incubator-python27/4473bc6/console.html19:59
flashgordonfungi: every, but we can use the gerrit ssh API to get the info we need19:59
fungibeekneemech: it may have merged, but might not be in the mirror yet19:59
clarkbfungi: mordred: do you know why we unset zuul project in the periodic d-g jobs?19:59
flashgordonI figure if 3rd party test x hasn't been run in y days, notify19:59
fungiflashgordon: with a listener you could at least track a last-seen for each of them19:59
flashgordonfungi: yeah that works19:59
*** nati_ueno has joined #openstack-infra19:59
beekneemechfungi: So try again in a couple of hours?19:59
fungibeekneemech: no, let me check on it20:00
*** soren has quit IRC20:00
clarkbtrying to squeeze morw jobs together but unset ZUUL_PROJECT is a difference20:00
fungiclarkb: probably because we're running them for the benefit of all projects in that case, and don't want to risk triggering any project-specificness?20:01
fungibut that could likely be handled in other ways if we wanted20:01
fungibeekneemech: yeah, isn't reflected in http://pypi.openstack.org/openstack/sqlalchemy-migrate/ yet. i'll hunt down the reqs change and see if it merged20:02
beekneemechfungi: Okay, thanks20:02
fungibeekneemech: https://review.openstack.org/#/c/56662/20:03
*** senk has quit IRC20:03
*** dcramer_ has joined #openstack-infra20:03
fungioh, though that's only raising the baseline version20:03
fungiduhhh... i bet i know what the problem is20:04
fungino, nevermind, there was another release uploaded after the one i triggered, so the mirror jobs should have run. maybe they all failed20:05
*** markmcclain has quit IRC20:05
fungithree hours since those last ran20:06
fungi2013-11-15 17:20:13.890 | sqlalchemy-migrate==0.8.120:06
fungiha! there's why... https://git.openstack.org/cgit/openstack-infra/config/tree/modules/openstack_project/files/zuul/layout.yaml#n261820:07
fungino mirror update jobs cascaded off the pypi upload job for it20:07
fungifix coming20:07
openstackgerritJeremy Stanley proposed a change to openstack-infra/config: Update PyPI mirror for sqlalchemy-migrate releases  https://review.openstack.org/5669320:13
fungibeekneemech: dripton: ^20:14
beekneemechfungi: Cool, thanks.20:14
clarkbisnt it stackforge?20:15
clarkbI am slightly worried we may be blurring the separation if stackforge project can rebuild openstack mirror (thought it will happen anyways eventually)20:15
*** mrmartin has quit IRC20:16
fungiyeah...20:16
* fungi checks for precedent and prior art20:16
*** ^d is now known as ^demon|away20:17
*** davidhadas has joined #openstack-infra20:17
* flashgordon files an infra bug to request the feature20:19
*** herndon has joined #openstack-infra20:22
fungiclarkb: stackforge/python-libraclient, stackforge/designate, stackforge/python-designateclient, stackforge/bindep, stackforge/billingstack, stackforge/mistral, stackforge/python-muranoclient, stackforge/murano-common, stackforge/murano-repository, stackforge/murano-metadataclient, stackforge/pycadf, stackforge/pecan, stackforge/wsme, stackforge/sphinxcontrib-docbookrestapi, stackforge/tomograph20:22
fungithose are the stackforge projects which currently trigger mirror updates20:23
clarkb:/ ok20:23
fungii share your concerns, but that train has sailed i think20:23
clarkbya20:23
clarkbI thought I had been -1ing those things20:24
flashgordonfungi: https://bugs.launchpad.net/openstack-ci/+bug/125175820:24
fungiclarkb: not enough of them apparently20:24
*** nati_ueno has quit IRC20:25
fungiflashgordon: do you happen to have the gerrit api query to which you're alluding in that bug?20:25
*** jamesmcarthur has joined #openstack-infra20:25
*** nati_ueno has joined #openstack-infra20:25
fungiflashgordon: iterating over the contents of https://review.openstack.org/#/admin/groups/91,members for that would likely get you what you need20:26
flashgordonfungi: whatever rusellbs code uses20:27
flashgordonrussellbryant.net/openstack-stats/20:27
fungiflashgordon: though if a third party was using the same account to test multiple drivers, then that might not get you a clear picture still20:27
flashgordonfungi: some comment parsing will be needed20:27
fungii expect so20:28
*** dstanek has quit IRC20:29
*** dstanek has joined #openstack-infra20:29
*** sandywalsh has quit IRC20:29
*** jerryz has quit IRC20:31
*** dprince has quit IRC20:31
*** cody-somerville has quit IRC20:31
*** UtahDave has joined #openstack-infra20:39
*** sandywalsh has joined #openstack-infra20:42
*** nati_ueno has quit IRC20:42
*** ryanpetrello has quit IRC20:44
*** markmcclain has joined #openstack-infra20:51
mesteryAnyone else running devstack on Fedora and seeing issues where running "unstack.sh" leaves all the nova processes running?20:51
mesteryI'm seeing that since this week. Running on Fedora 19 and have seen this on multiple systems.20:51
mesteryCurious if others have seen this recently or not before I dig further.20:51
*** sarob has joined #openstack-infra20:52
*** electrichead has left #openstack-infra20:53
*** dstanek has quit IRC20:55
openstackgerritJoshua Harlow proposed a change to openstack/requirements: Released 0.1.1 for taskflow (bug fixes)  https://review.openstack.org/5669820:57
fungimestery: at least from a ci perspective we're not running devstack on anything besides ubuntu. you might few better hitting up the kindly devstack people over in #openstack-qa20:57
fungier, might fare better20:57
mesteryfungi: Thanks for the pointer! Wasn't sure this was the right channel.20:57
mesteryWill give it a shot ;)20:57
fungiit's *mostly* the right channel since the majority of the infra and qa people lurk in both channels, but it's a bit more on-topic there20:58
mesteryAwesome! Thanks again fungi!20:59
funginp21:00
*** freyes has quit IRC21:03
*** sarob_ has joined #openstack-infra21:04
*** sarob has quit IRC21:06
*** sarob__ has joined #openstack-infra21:06
*** dstanek has joined #openstack-infra21:07
*** xeyed4good has joined #openstack-infra21:08
*** alcabrera has quit IRC21:09
*** sarob__ has quit IRC21:09
*** sarob has joined #openstack-infra21:09
*** sarob_ has quit IRC21:09
*** xeyed4good has quit IRC21:13
*** DennyZhang has joined #openstack-infra21:18
*** markmcclain has quit IRC21:19
*** sarob has quit IRC21:20
*** sarob has joined #openstack-infra21:21
*** mrmartin has joined #openstack-infra21:23
*** alexpilotti has joined #openstack-infra21:25
*** mrmartin has quit IRC21:27
devanandahm, i'm still not able to install sqla-migrate 0.8.2. how long for it to propagate?21:30
*** atiwari has joined #openstack-infra21:30
bknudsonthere seems to be something wacky with jenkins and posting URLs.21:32
bknudsonhttps://review.openstack.org/#/c/54665/21:32
bknudsontried posting a link to https://github.com/openstack/oslo-incubator/commit/f06276bbdabd408549ecefa377b1349b57f5ac8221:32
bknudsonand out comes  f06276bbdabd408549ecefa377b1349b57f5ac82">https:/... ?21:32
*** tjones has joined #openstack-infra21:33
*** CaptTofu has quit IRC21:35
*** CaptTofu has joined #openstack-infra21:36
*** dims has quit IRC21:37
clarkbit sees the sha and want to link directly to it21:38
clarkbno need for flaky github just post a sha21:38
fungibknudson: however there is also an openstack-ci bug documenting that behavior at least21:39
fungii forget the bug number off the top of my head21:40
bknudsonfungi: clarkb: thanks... seems to be expected behavior then when have a hex string.21:40
fungidevananda: i think nothing has triggered a mirror update yet. see my change above to start having sqlalchemy-migrate releases trigger mirror updates21:41
mordredfungi: doh21:42
*** markmcclain has joined #openstack-infra21:48
*** hogepodge_ has joined #openstack-infra21:49
*** hogepodge has quit IRC21:50
*** hogepodge_ is now known as hogepodge21:50
fungiheading out to eat for a bit, bbl21:51
*** reed has joined #openstack-infra21:53
*** mfer has quit IRC21:59
*** sandywalsh has quit IRC22:03
*** jamesmcarthur has quit IRC22:04
*** jamesmcarthur has joined #openstack-infra22:05
*** ^demon|away is now known as ^d22:07
*** thomasem has quit IRC22:07
*** senk has joined #openstack-infra22:11
*** hashar has quit IRC22:13
*** senk has quit IRC22:15
*** senk has joined #openstack-infra22:15
*** markmcclain has quit IRC22:16
*** nati_ueno has joined #openstack-infra22:17
*** drumkilla has quit IRC22:19
*** senk has quit IRC22:20
*** russellb has joined #openstack-infra22:20
*** nati_ueno has quit IRC22:21
*** jamesmcarthur has quit IRC22:21
*** sarob has quit IRC22:26
*** sarob_ has joined #openstack-infra22:26
*** DennyZhang has quit IRC22:26
*** weshay has quit IRC22:27
reedI left the office with discussion heating up on the dev list, I came back and it's all cool now :) what an awesome community22:34
*** markmcclain has joined #openstack-infra22:35
*** sarob_ has quit IRC22:35
reednow I feel like I should still say something :)22:36
* reed won't step in the thread after all, things are cool22:38
*** dstanek has quit IRC22:39
*** CaptTofu has quit IRC22:43
*** CaptTofu has joined #openstack-infra22:43
devanandafungi: is there a workaround in the mean time so we can unblock the gate?22:48
*** pcrews has quit IRC22:49
*** CaptTofu has quit IRC22:53
*** CaptTofu has joined #openstack-infra22:53
*** CaptainTacoSauce has quit IRC22:54
*** ericw has quit IRC22:56
*** mgagne has quit IRC23:00
*** ftcjeff has quit IRC23:01
openstackgerritJoe Gordon proposed a change to openstack-infra/elastic-recheck: Add query for bug 1251784  https://review.openstack.org/5670623:03
flashgordonclarkb: ^23:03
flashgordoncan you do a quick review23:03
tjonesis it safe to recheck a patch it by the version 7.3 mismatch in jenkins?23:04
tjonesit == hit23:04
*** dstanek has joined #openstack-infra23:05
clarkbtjones: can you link to the change? I feel like I don't have enough context to make an appropriate answer23:07
clarkbflashgordon: looking23:07
*** pcm_ has quit IRC23:07
tjonesclarkb: sure - https://review.openstack.org/#/c/56287/23:08
*** dcramer_ has quit IRC23:09
openstackgerritA change was merged to openstack-infra/elastic-recheck: Add query for bug 1251784  https://review.openstack.org/5670623:10
*** dstanek has quit IRC23:10
*** dkliban has quit IRC23:10
clarkbtjones: I don't think the mirror has updated http://pypi.openstack.org/openstack/sqlalchemy-migrate/ so you can recheck but it will still fail23:10
clarkbmordred: fungi: do we need to manually rtigger the periodic mirror jobs?23:11
clarkbor is there are larger problem here?23:11
*** jgrimm has quit IRC23:11
tjonesok i'll wait.  is there something i can watch so i don't have to bug you?23:11
*** oubiwann has quit IRC23:11
*** zul has quit IRC23:15
devanandai've copied dprince's fix, taken out the dependency on 0.8.2 - it seems to work https://review.openstack.org/#/c/56705/23:15
openstackgerritKhai Do proposed a change to openstack-infra/jenkins-job-builder: update doc and add new JJB unit tests  https://review.openstack.org/5671523:15
clarkbtjones: that link to the pypi mirror, if 0.8.2 shows up in there you will be good to recheck23:16
*** zul has joined #openstack-infra23:16
tjonesgreat - thanks23:16
*** UtahDave has quit IRC23:17
*** sarob has joined #openstack-infra23:20
fungiclarkb: so... the periodic-mirror-pythonXX jobs start at 0600z daily. otherwise we're beholden on changes to openstack/requirements or releases of various projects to trigger a post-mirror-pythonXX job23:22
*** dstanek has joined #openstack-infra23:22
clarkbfungi: right but we can manually trigger hte periodic job23:23
fungii suspect we simply haven't had any releases or changes merged which trigger those since the run between the sqlalchemy-migrate 0.8.1 and 0.8.2 releases23:23
fungibut we could certainly manually launch some, sure23:23
clarkbI will trigger the py27 job since I think it is slightly faster23:24
clarkbwell I suppose I should do py26 for completeness23:24
fungii'm uncertain whether trigger-job.py handles periodic pipeline jobs though23:24
fungiworth trying23:24
clarkbfungi: it doesn't23:24
clarkbfungi: I can trigger the job in jenkins directly23:24
fungiso you need to emulate one of the post jobs instead i guess23:25
fungioh, er23:25
clarkbno23:25
clarkbI just clikc the build now button23:25
clarkbperiodic jobs are special like that23:25
fungii was under the impression that manually running jenkins jobs would confuse zuul since the gearman integration, but maybe i'm misremembering23:26
clarkbthat is true for anything not triggered by the zuul cron mechanism23:26
fungik23:26
fungithen have at it, for sure23:26
clarkbthe cron mechanism is super simple and is there so that we make sure the job doesn't run on three jenkinses at the same time23:26
clarkbbut since these jobs can only run on the one server we are ok (and in general we should be ok we may just get dupes)23:27
*** mrodden has quit IRC23:27
*** mriedem has quit IRC23:27
fungigreat23:27
*** wayneeseguin has quit IRC23:28
clarkbfungi: I hope to have a havana jobs change up shortly23:29
clarkbcurrently trying to make things templated in semi sane ways23:29
fungicool. i'm hammering on the openid server change to identify obvious gaps in it23:29
clarkbI think I am going to require that all new d-g jobs are templates and support grizzly and havana and if they do not must come with comments about why and must still be a template so that they can be run on icehouse23:29
clarkbmost of this change is backfilling things we should probably be requiring upfront23:30
fungisounds sane23:30
*** wayneeseguin has joined #openstack-infra23:33
*** julim has quit IRC23:33
*** rcleere has quit IRC23:48
openstackgerritA change was merged to openstack-infra/reviewstats: Adds new/merge rate to reviewers information  https://review.openstack.org/5638023:48
fungiclarkb: the mirror has 0.8.2 now. replied to the -dev ml thread to the same effect23:49
*** CaptTofu has quit IRC23:50
*** CaptTofu has joined #openstack-infra23:50
openstackgerritClark Boylan proposed a change to openstack-infra/config: Add stable/havana jobs.  https://review.openstack.org/5672023:56
clarkbfungi: awesome23:56
clarkbfungi: ^ that change is probably really scary23:56
clarkbin order to sort of get it all to make sense in my brain I did a little refactoring23:57
fungii am marginally too scared to look at it just yet23:57
*** michchap has quit IRC23:57
clarkbI really want to take that as the seed of a much larger refactoring that happens where each d-g job comes in two flavors23:57
clarkba check/gate template and a periodic template23:57
fungibut moreso, cleaning because my younger brother is inbound in a few hours to visit and work on some embedded systems projects with me for a couple days23:57
clarkbunfortunately there is enough difference between the two sets of pipelines that I don't think we can use a single template but I can live with two23:58
fungihaving not looked at it yet, i can imagine some compromises which might allow further normalization between the check and gate pipelines23:58
clarkbthis change starts that. There are a few other questions that need answering like how to template jobs against the master branch23:58
*** michchap has joined #openstack-infra23:59
clarkband I think I will do that in a future change where the template doesn't include the stable prefix23:59
fungisure23:59
clarkbor rather doesn't hard code that prefix so that we can have stable/folsom jobs23:59
clarkbare '/'s allows in jenkins job names? also I didn't really mean folsom23:59

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