*** thomasem has quit IRC | 00:02 | |
*** krtaylor has quit IRC | 00:02 | |
*** nati_ueno has quit IRC | 00:04 | |
*** nati_ueno has joined #openstack-infra | 00:04 | |
*** melwitt has quit IRC | 00:05 | |
*** melwitt1 has joined #openstack-infra | 00:05 | |
*** paul-- has quit IRC | 00:08 | |
*** nati_ueno has quit IRC | 00:09 | |
*** ryanpetrello has joined #openstack-infra | 00:10 | |
*** sandywalsh has quit IRC | 00:11 | |
*** julim has quit IRC | 00:11 | |
*** jhesketh has quit IRC | 00:15 | |
openstackgerrit | Christopher Yeoh proposed a change to openstack-infra/reviewstats: Adds new/merge rate to reviewers information https://review.openstack.org/56380 | 00:15 |
---|---|---|
*** adalbas has joined #openstack-infra | 00:16 | |
*** jamesmcarthur has joined #openstack-infra | 00:17 | |
*** wenlock has quit IRC | 00:17 | |
openstackgerrit | Clark Boylan proposed a change to openstack-infra/zuul: Make merger.Repo more context manager like. https://review.openstack.org/55943 | 00:19 |
*** DennyZhang has joined #openstack-infra | 00:19 | |
*** herndon has quit IRC | 00:21 | |
clarkb | lifeless: 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-infra | 00:23 | |
*** reed has quit IRC | 00:23 | |
*** DennyZhang has quit IRC | 00:23 | |
*** sandywalsh has joined #openstack-infra | 00:24 | |
*** paul-- has joined #openstack-infra | 00:24 | |
*** MarkAtwood has quit IRC | 00:24 | |
*** reed_ has quit IRC | 00:25 | |
*** jlk has joined #openstack-infra | 00:25 | |
*** oubiwann has joined #openstack-infra | 00:26 | |
lifeless | clarkb: I'm not really here today (pub holiday) | 00:26 |
*** sarob_ has joined #openstack-infra | 00:26 | |
clarkb | lifeless: thats fine, it can wait (code won't merge until jeblair gets back next week anyways) | 00:27 |
lifeless | clarkb: did you push your experiment somewhere? | 00:27 |
clarkb | lifeless: no, I can do that if it helps | 00:27 |
lifeless | I can't comment on what you experienced without it | 00:28 |
lifeless | only on what I expected the code to look like | 00:28 |
clarkb | ok, I will put it on github | 00:28 |
*** jhesketh has joined #openstack-infra | 00:28 | |
lifeless | clarkb: what confuses me is you have no cleanup code | 00:29 |
lifeless | clarkb: I can't see how your patch does what you seem to want it to | 00:29 |
*** sarob has quit IRC | 00:30 | |
clarkb | lifeless: it doesn't need cleanup it just needs the repo refernces to go out of scope so they are GC'd | 00:30 |
*** thomasem has joined #openstack-infra | 00:30 | |
*** jhesketh_ has quit IRC | 00:31 | |
lifeless | clarkb: I don't think that is guaranteed at all by your current code. | 00:31 |
*** sarob_ has quit IRC | 00:32 | |
clarkb | lifeless: with a context manager when the with block is exited doesn't the repo reference go away | 00:32 |
lifeless | clarkb: no | 00:32 |
clarkb | allow the object previously referenced to be GC'd? | 00:32 |
*** jhesketh_ has joined #openstack-infra | 00:32 | |
lifeless | the object is exited | 00:32 |
lifeless | which is different | 00:32 |
*** jamesmcarthur has quit IRC | 00:33 | |
clarkb | gah how do you unscope a thing in ways that don't suck | 00:34 |
clarkb | do I need an explicit del after the yield? | 00:34 |
lifeless | lets start over | 00:34 |
lifeless | what problem are you solving | 00:34 |
*** hogepodge_ has joined #openstack-infra | 00:34 | |
clarkb | lifeless: 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 open | 00:35 |
*** hogepodge has quit IRC | 00:35 | |
*** hogepodge_ is now known as hogepodge | 00:35 | |
clarkb | eventually enough projects repos are open that you run out of file descriptors | 00:35 |
clarkb | goal is to only have file descriptors open so that we don't need thousands of file descriptors | 00:35 |
lifeless | how many merge.Repo objects does zuul hold at once ? | 00:35 |
clarkb | lifeless: as many project as are definied in the zuul layout | 00:35 |
lifeless | one per project like openstack/requirements ? | 00:35 |
clarkb | yes | 00:35 |
lifeless | so thousands of projects == thousands of fds' ? | 00:36 |
clarkb | its more like a few hundred projects = thousands of fds | 00:36 |
lifeless | does it leak, or is this a pretty static upper bound ? | 00:36 |
clarkb | they 'leak' in that git may repack under the git.Repo object but it doesn't notice until they next operation | 00:37 |
lifeless | so the number open grows without bound ? | 00:37 |
clarkb | theoretically yes I think it can grow without bound | 00:37 |
clarkb | in practice our 2k fd limit isn't hit very often but when it is hit it is annoying | 00:37 |
lifeless | ok, so no scare quotes needed: it is a leak. | 00:37 |
lifeless | If it wasn't a leak, if there was an upper bound, I was going to suggest ulimit. | 00:38 |
lifeless | Unix supports lots of fd's for a reason :) | 00:38 |
clarkb | but if we only have the fds in use during the operation we need this is a non problem | 00:38 |
clarkb | which is why the goal is the GC the repo object and release the fds | 00:38 |
lifeless | sure | 00:38 |
lifeless | is it a fast leak ? | 00:39 |
clarkb | no it takes weeks | 00:39 |
lifeless | ok, so you don't need any guarantees about things like global gc runs | 00:39 |
lifeless | you just need to avoid stale references | 00:39 |
lifeless | you don't need a context manager | 00:39 |
clarkb | ya | 00:39 |
lifeless | just do | 00:40 |
lifeless | def fetch(self, ref) | 00:40 |
lifeless | repo = self.createRepoObject() | 00:40 |
lifeless | ... | 00:40 |
lifeless | don't assign repo to self.anything at all | 00:40 |
lifeless | and don't pass repo to anything that stashes it | 00:40 |
clarkb | and rely on function variables to go out of scope | 00:40 |
lifeless | right | 00:40 |
lifeless | your test that does a gc check is broken btw | 00:41 |
lifeless | because it depends on implementation internals of CPython vs Python - you should do a gc.collect() first and then look for uncollected objects. | 00:41 |
clarkb | lifeless: ya it clearly is if the context manager yielded object doesn't go out of scope | 00:41 |
lifeless | the context manager doesn't affect scoping at all | 00:41 |
clarkb | oh derp | 00:42 |
lifeless | this is a fundamental misapprehension you have :) | 00:42 |
clarkb | my brain works now | 00:42 |
clarkb | it is still local to the function. | 00:42 |
lifeless | right | 00:42 |
clarkb | will add the gc.collect | 00:42 |
lifeless | you did two things | 00:42 |
lifeless | you added a context manager | 00:42 |
lifeless | and you made the repo function local | 00:42 |
lifeless | the second thing is the thing you needed to do | 00:42 |
clarkb | ya | 00:42 |
lifeless | the other is just noise :) | 00:42 |
*** hogepodge has quit IRC | 00:43 | |
*** dcramer_ has joined #openstack-infra | 00:43 | |
jog0 | this is really sad: https://review.openstack.org/#/c/55885/ | 00:44 |
lifeless | py26 ? | 00:44 |
jog0 | failed 4 attempts to merge a rst file change into neutron | 00:44 |
lifeless | stabbbb | 00:44 |
jog0 | lifeless: :) | 00:44 |
clarkb | when rhel7 comes out we can stabb py26 | 00:45 |
lifeless | I thought package sets did that now ? | 00:46 |
clarkb | they are official but unsupported so insufficient | 00:47 |
clarkb | or something, we were specifically asked to not treat those as being sufficient to kill py26 | 00:47 |
lifeless | WUT | 00:47 |
*** matsuhashi has quit IRC | 00:47 | |
clarkb | so you can have py27 on rhel6 BUT as the upstream we can't depend on it | 00:48 |
*** matsuhashi has joined #openstack-infra | 00:48 | |
lifeless | jhesketh_: ^ btw - be more paranoid in reviews :> | 00:51 |
clarkb | oh, this same thing is why list comprehensions leak temp vars | 00:52 |
jhesketh_ | lifeless: which one sorry? | 00:52 |
lifeless | clarkb: yes | 00:52 |
lifeless | jhesketh_: https://review.openstack.org/#/c/55943/ | 00:53 |
*** matsuhashi has quit IRC | 00:53 | |
clarkb | lifeless: list comprehensions don't do that in py3k is it "fixed" in general or just for list comprehensions? | 00:53 |
jhesketh_ | lifeless: thanks, noted | 00:54 |
openstackgerrit | Clark Boylan proposed a change to openstack-infra/zuul: GC git.Repo objects in merger.Repo operations. https://review.openstack.org/55943 | 00:55 |
clarkb | that should be much better | 00:55 |
*** matsuhashi has joined #openstack-infra | 00:58 | |
clarkb | looks like py3k changes that just for list comprehensions and not loops | 00:58 |
*** ^d has quit IRC | 00:59 | |
clarkb | not sure how I feel about that being different | 00:59 |
*** nosnos has joined #openstack-infra | 01:00 | |
*** jamesmcarthur has joined #openstack-infra | 01:00 | |
Ryan_Lane | rather than upgrading I cherry-picked in the security patches for mediawiki | 01:01 |
Ryan_Lane | we'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 master | 01:01 |
pleia2 | thanks Ryan_Lane | 01:02 |
Ryan_Lane | yw | 01:02 |
*** bknudson has joined #openstack-infra | 01:02 | |
bknudson | is there a way to get Jenkins to re-submit global requirements change? | 01:02 |
bknudson | https://review.openstack.org/#/c/55241/ -- Jenkins -1d himself and then abandoned it. | 01:02 |
clarkb | bknudson: can you be more specific | 01:02 |
clarkb | bknudson: thanks, short answer is yes, however in this case we want it to stay abandoned | 01:03 |
clarkb | because the script doing the proposals is broken which is why it got a -1 | 01:03 |
clarkb | the script should be fixed and submit new changes | 01:03 |
fungi | one 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-aware | 01:03 |
bknudson | clarkb: so we're still relying on manual? | 01:03 |
bknudson | manually updating requirements for keystoneclient | 01:03 |
clarkb | and even then we would just want to have it submit a new change rather than a new patchset on an existing change | 01:03 |
clarkb | bknudson: yes currently you will need to do it manually | 01:04 |
bknudson | ok, there was some confusion with another change since we assumed it was automatic | 01:04 |
*** sarob has joined #openstack-infra | 01:05 | |
*** melwitt1 has quit IRC | 01:05 | |
*** melwitt has joined #openstack-infra | 01:07 | |
clarkb | fungi: I think the shell script that jenkins runs is correct | 01:09 |
clarkb | but update.py may be wrong | 01:09 |
clarkb | OOOHHHHH nevermind | 01:10 |
clarkb | ZUUL_BRANCH isn't a thing in the post queue | 01:10 |
openstackgerrit | Jeremy Stanley proposed a change to openstack-infra/config: Stop running propose-requirements-updates job https://review.openstack.org/56489 | 01:12 |
fungi | clarkb: ^ (or in other words, yes) | 01:12 |
*** beagles has quit IRC | 01:12 | |
*** nati_ueno has joined #openstack-infra | 01:12 | |
*** dkliban has quit IRC | 01:14 | |
fungi | a 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 question | 01:14 |
fungi | things this margin (my evening) is presently too narrow to contain | 01:15 |
clarkb | I am working up a hack | 01:15 |
clarkb | basically going from ZUUL_NEWREV find the branch the commit was on | 01:15 |
fungi | yep, that's what was more or less in my mind | 01:16 |
*** ArxCruz has joined #openstack-infra | 01:18 | |
*** jamesmcarthur has quit IRC | 01:18 | |
*** DennyZhang has joined #openstack-infra | 01:19 | |
*** jamesmcarthur has joined #openstack-infra | 01:20 | |
fungi | probably using git branch -a --contains <gitsha> | 01:21 |
fungi | git branch -a --contains $ZUUL_NEWREV | 01:21 |
fungi | something | 01:22 |
fungi | you'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 for | 01:23 |
*** UtahDave has quit IRC | 01:23 | |
* fungi goes back to being invisible | 01:23 | |
*** DennyZhang has quit IRC | 01:24 | |
clarkb | wait we can be invisible? | 01:25 |
fungi | i pretend | 01:25 |
*** vipul is now known as vipul-away | 01:28 | |
*** jamesmcarthur has quit IRC | 01:30 | |
*** sarob has quit IRC | 01:30 | |
*** sarob has joined #openstack-infra | 01:31 | |
*** ljjjustin has joined #openstack-infra | 01:31 | |
*** herndon_ has joined #openstack-infra | 01:33 | |
*** vipul-away is now known as vipul | 01:35 | |
*** pabelanger has joined #openstack-infra | 01:35 | |
*** sarob has quit IRC | 01:35 | |
*** herndon_ has quit IRC | 01:40 | |
openstackgerrit | Clark Boylan proposed a change to openstack-infra/config: Select proper branch when proposing requirements. https://review.openstack.org/56491 | 01:40 |
*** herndon has joined #openstack-infra | 01:40 | |
clarkb | 56491 is wrong, but is a sart | 01:40 |
*** CaptTofu has quit IRC | 01:42 | |
*** CaptTofu has joined #openstack-infra | 01:42 | |
*** CaptTofu has quit IRC | 01:42 | |
*** CaptTofu has joined #openstack-infra | 01:43 | |
*** nati_ueno has quit IRC | 01:47 | |
clarkb | bknudson: ^ that change is sort of what needs to be done to make the automatic jobs work | 01:47 |
clarkb | but it isn't quite correct yet | 01:47 |
*** nati_ueno has joined #openstack-infra | 01:47 | |
*** ryanpetrello_ has joined #openstack-infra | 01:48 | |
*** ryanpetrello has quit IRC | 01:48 | |
* clarkb goes invisible too | 01:48 | |
*** ryanpetrello_ is now known as ryanpetrello | 01:48 | |
*** adalbas has quit IRC | 01:49 | |
bknudson | maybe I should have run update.py to update the requirements manually. | 01:51 |
*** matsuhashi has quit IRC | 02:03 | |
*** matsuhashi has joined #openstack-infra | 02:03 | |
*** jhesketh_ has quit IRC | 02:06 | |
*** pcrews has quit IRC | 02:12 | |
*** dkliban has joined #openstack-infra | 02:13 | |
*** mriedem has joined #openstack-infra | 02:15 | |
*** rnirmal has quit IRC | 02:16 | |
*** dkliban has quit IRC | 02:18 | |
*** mriedem has quit IRC | 02:18 | |
*** mriedem has joined #openstack-infra | 02:20 | |
*** DennyZhang has joined #openstack-infra | 02:20 | |
*** guohliu has quit IRC | 02:22 | |
*** yaguang has joined #openstack-infra | 02:23 | |
portante | jog0: you still looking at the grenade failures? | 02:24 |
portante | did anybody from the swift team comment? | 02:25 |
portante | notmyname? | 02:25 |
*** DennyZhang has quit IRC | 02:25 | |
pleia2 | clarkb: erg, seen http://chrome.blogspot.com/2013/11/important-update-on-hp-chromebook-11.html ? | 02:26 |
sdague | portante: I think we sorted that it was just a loopback size problem, which jog0 addressed | 02:27 |
portante | sdague: okay, thanks | 02:27 |
clarkb | pleia2: ya | 02:28 |
jog0 | portante: wrong failure | 02:28 |
jog0 | err sdague | 02:28 |
clarkb | pleia2: I get to use my phone charger to charge that device now :) | 02:28 |
jog0 | sdague: loopback was tempest-full failure | 02:28 |
sdague | jog0: oh, sorry | 02:28 |
pleia2 | clarkb: hehe, nice | 02:28 |
jog0 | grenade is the timeout | 02:28 |
jog0 | which is not merged yet | 02:28 |
portante | jog0: so you understand the problem and have a fix then? | 02:29 |
jog0 | portante: yes | 02:29 |
jog0 | sdague: https://review.openstack.org/#/c/56465/ | 02:29 |
jog0 | is the last step | 02:29 |
portante | jog0: let me know if you need anything else, then | 02:29 |
jog0 | portante: thanks | 02:30 |
*** dkliban has joined #openstack-infra | 02:30 | |
sdague | jog0: are the config changes in? | 02:30 |
jog0 | nope :( | 02:30 |
jog0 | https://review.openstack.org/#/q/status:open++branch:master+topic:grenade,n,z | 02:30 |
jog0 | no one reviewed em even | 02:30 |
clarkb | jog0: we are swamped with other things :/ | 02:30 |
jog0 | clarkb: ^_^ aren't we all | 02:31 |
clarkb | I will look at the grenade changes now | 02:31 |
jog0 | but without a clarkb who will review all the patches | 02:31 |
jog0 | clarkb: thanks :) | 02:31 |
*** thomasem has quit IRC | 02:31 | |
clarkb | jog0: and this gets us faster grenade to avoid timeouts? | 02:33 |
sdague | clarkb: after another tempest change, it does | 02:33 |
sdague | we need to split the smoke definition to have a serial and parallel one, because neutron can't pass the parallel one | 02:34 |
jog0 | clarkb: thats the hope | 02:34 |
sdague | we did that | 02:34 |
sdague | then we need this to make neutron use the new serial job | 02:34 |
sdague | then we can make the old smoke job paralle | 02:34 |
clarkb | ok | 02:34 |
sdague | in a tempest patch, which I'm happy to just push to the gate | 02:34 |
jog0 | so the greande topic make neutron use serial | 02:34 |
sdague | once the config supports it | 02:34 |
*** senk has joined #openstack-infra | 02:34 | |
*** nati_uen_ has joined #openstack-infra | 02:35 | |
clarkb | jog0: sdague: https://review.openstack.org/#/c/56466/1 passed neutron tests | 02:35 |
clarkb | oh wait | 02:35 |
clarkb | because tempest tox.ini hasn't changed | 02:36 |
*** sarob has joined #openstack-infra | 02:36 | |
sdague | clarkb: right | 02:36 |
clarkb | jog0: don't you need to make that change for all of the neutron jobs? | 02:37 |
clarkb | then we can put the config changes in, then merge the d-g change which should be self gating then the tempest change | 02:38 |
*** nati_ueno has quit IRC | 02:38 | |
clarkb | but I am pretty sure you need that for all of the neutron jobs | 02:38 |
* jog0 looks again | 02:39 | |
clarkb | maybe all but FULL since we want that job to go parallel | 02:39 |
*** jhesketh_ has joined #openstack-infra | 02:39 | |
clarkb | (and it doesn't vote) | 02:39 |
jog0 | clarkb: ahh yes https://review.openstack.org/#/c/56467/1/modules/openstack_project/files/jenkins_job_builder/config/devstack-gate.yaml is wroing | 02:40 |
clarkb | jog0: sdague: | 02:41 |
clarkb | what if we have a tempest tox.ini for neutron does that make sense? | 02:42 |
clarkb | hmm I guess it doesn't if we are doing neutron full jobs too | 02:42 |
*** sarob has quit IRC | 02:43 | |
*** sarob has joined #openstack-infra | 02:43 | |
openstackgerrit | Joe Gordon proposed a change to openstack-infra/config: Explicitly set smoke tests in neutron test to be serial https://review.openstack.org/56467 | 02:46 |
jog0 | clarkb: I think I got them all this time | 02:46 |
*** esker has joined #openstack-infra | 02:47 | |
jog0 | clarkb: heading out, so if I missed one feel free to ammend my patch and take all the credit | 02:48 |
clarkb | ok | 02:48 |
*** esker has quit IRC | 02:48 | |
*** sarob has quit IRC | 02:48 | |
*** esker has joined #openstack-infra | 02:49 | |
*** jamesmcarthur has joined #openstack-infra | 02:49 | |
clarkb | jog0: if you are still around does the large ops job need serial smoke test? | 02:50 |
clarkb | I can patch it if so | 02:50 |
*** dkranz has joined #openstack-infra | 02:51 | |
clarkb | meh that job isn't voting we can fix later if necessary | 02:51 |
openstackgerrit | A change was merged to openstack-infra/config: Explicitly set smoke tests in neutron test to be serial https://review.openstack.org/56467 | 02:54 |
clarkb | I will recheck the d-g change once that gets applied | 02:54 |
*** senk has quit IRC | 03:08 | |
*** jishaomei has joined #openstack-infra | 03:08 | |
*** dkehn has quit IRC | 03:11 | |
*** dkehn has joined #openstack-infra | 03:13 | |
*** sarob has joined #openstack-infra | 03:13 | |
openstackgerrit | Noorul Islam K M proposed a change to openstack-infra/config: Add python-solumclient to stackforge https://review.openstack.org/56505 | 03:15 |
*** Ryan_Lane has quit IRC | 03:16 | |
*** DennyZhang has joined #openstack-infra | 03:21 | |
*** dims has quit IRC | 03:22 | |
*** dcramer_ has quit IRC | 03:24 | |
*** DennyZhang has quit IRC | 03:25 | |
*** CaptTofu has quit IRC | 03:29 | |
*** markwash has quit IRC | 03:29 | |
*** CaptTofu has joined #openstack-infra | 03:30 | |
*** matsuhashi has quit IRC | 03:31 | |
*** matsuhashi has joined #openstack-infra | 03:31 | |
*** CaptTofu has quit IRC | 03:31 | |
*** CaptTofu has joined #openstack-infra | 03:32 | |
*** cody-somerville has quit IRC | 03:33 | |
openstackgerrit | Noorul Islam K M proposed a change to openstack-infra/config: Add python-solumclient to stackforge https://review.openstack.org/56505 | 03:33 |
clarkb | mordred: since you are apparently around, I plan on approving https://review.openstack.org/#/c/56466/ if the rechecks come back clean | 03:36 |
clarkb | mordred: want to review that change? | 03:36 |
clarkb | once that goes in then the tempest folks can approve their tox.ini change at will | 03:36 |
* mordred looks | 03:36 | |
openstackgerrit | Noorul Islam K M proposed a change to openstack-infra/config: Add python-solumclient to stackforge https://review.openstack.org/56505 | 03:36 |
mordred | yeah. lgtm | 03:37 |
clarkb | ty | 03:37 |
*** dcramer_ has joined #openstack-infra | 03:37 | |
mordred | clarkb: however, you know - we should really just hav ea DEVSTACK_GATE_TEMPEST_TOX that's set to the tempest tox env to run | 03:37 |
lifeless | mordred - so cangnig from 0.0.1 to 2014.1.0 is something that can't be done later?[6~ | 03:38 |
clarkb | mordred: hmm I like that | 03:38 |
clarkb | jog0: when you return to the land of the living see mordred comment | 03:38 |
clarkb | jog0: I don't think we need to do that now but could refactor what you currently have to do that instead | 03:38 |
mordred | lifeless: it can - the main point is whether or not they want to do pre or post releases | 03:39 |
mordred | lifeless: but also, if the intent is to align with OpenStack - what's the point in being different for a while? | 03:40 |
lifeless | mordred: no point, I'm edumacating myself | 03:40 |
lifeless | mordred: how does doing it before/after releases change things? | 03:41 |
*** matsuhashi has quit IRC | 03:41 | |
mordred | lifeless: did you read my long email on the subject on the ML? | 03:41 |
lifeless | possibly not. Topic ? | 03:42 |
*** matsuhashi has joined #openstack-infra | 03:42 | |
mordred | [Solum] Version scheme | 03:42 |
*** rhsu1 has quit IRC | 03:43 | |
lifeless | oh, overnight. pub holiday today, I haven't read mail/ done reviews etc ;) | 03:43 |
*** gyee has quit IRC | 03:43 | |
*** ilyashakhat_ has joined #openstack-infra | 03:44 | |
clarkb | he helpfully reviewed one of my changes and gave it the smackdown | 03:44 |
lifeless | mordred: read now; I don't see anything on pre/post there ? | 03:44 |
*** vipuls has joined #openstack-infra | 03:45 | |
mordred | lifeless: I described the differences between the two schemes and how they work? | 03:46 |
lifeless | mordred: oh, also I had < 4 hours sleep last night - EBABY. | 03:46 |
lifeless | mordred: so it's entirely possible I'm utterly failing to join obvious dots. | 03:46 |
*** matsuhashi has quit IRC | 03:47 | |
clarkb | mordred: you did, but they weren't called out using the same terms | 03:47 |
clarkb | lifeless: starts at if the version is not tagged there are two approaches | 03:47 |
clarkb | pre versioning is what the date based versions do and post versioning is what the semver stuff uses right? | 03:47 |
mordred | yah | 03:48 |
*** bnemec_ has joined #openstack-infra | 03:48 | |
mordred | so, the difference is that pre-versioning approaches generate version numbers that lead up to the version specified in setup.cfg | 03:48 |
mordred | post-versioning generates versions that follow from the last release tag | 03:49 |
lifeless | for the automated builds only right? | 03:49 |
*** jamesmcarthur_ has joined #openstack-infra | 03:49 | |
lifeless | vs tagged builds ? | 03:49 |
*** vipul has quit IRC | 03:51 | |
*** jamesmcarthur has quit IRC | 03:52 | |
*** che-arne has quit IRC | 03:52 | |
*** slong has quit IRC | 03:52 | |
*** dachary has quit IRC | 03:52 | |
*** ilyashakhat has quit IRC | 03:52 | |
*** bnemec has quit IRC | 03:52 | |
*** ekarlso has quit IRC | 03:52 | |
*** Alssi has quit IRC | 03:52 | |
*** jamesmcarthur_ is now known as jamesmcarthur | 03:52 | |
*** dachary has joined #openstack-infra | 03:53 | |
mordred | yeah | 03:54 |
mordred | tagged builds are the same in both schemes | 03:54 |
*** ekarlso has joined #openstack-infra | 03:54 | |
lifeless | thankss | 03:55 |
mordred | clarkb: did we land the patch that added the rackspace performance images? | 03:56 |
clarkb | mordred: uh I reviewed things but don't think I approved | 03:56 |
clarkb | mordred: https://review.openstack.org/#/c/55844/ that one right? | 03:57 |
clarkb | it needs a change in config to add filters | 03:57 |
mordred | right - I see that one - where did the one go that actually uses it? | 03:57 |
mordred | or did I perhaps not write that one yet | 03:58 |
clarkb | no idea /me looks | 03:58 |
*** fandikurnia01 has joined #openstack-infra | 03:58 | |
mordred | I think I didn't write it yet | 03:58 |
clarkb | :) ok | 03:58 |
clarkb | I don't see it | 03:58 |
clarkb | you wrote one for new hp az | 03:58 |
*** rhsu has joined #openstack-infra | 04:01 | |
mordred | nod. I'll write the other one too | 04:02 |
clarkb | mordred: jog0: I just approved the d-g change | 04:04 |
*** guohliu has joined #openstack-infra | 04:04 | |
clarkb | once that has merged I will recheck the tempest change | 04:04 |
*** nati_uen_ has quit IRC | 04:04 | |
*** nati_ueno has joined #openstack-infra | 04:05 | |
*** che-arne has joined #openstack-infra | 04:07 | |
*** senk has joined #openstack-infra | 04:09 | |
*** nati_ueno has quit IRC | 04:09 | |
*** jamesmcarthur has quit IRC | 04:09 | |
*** jamesmcarthur has joined #openstack-infra | 04:10 | |
*** senk has quit IRC | 04:14 | |
*** senk has joined #openstack-infra | 04:15 | |
*** wenlock has joined #openstack-infra | 04:15 | |
*** markwash has joined #openstack-infra | 04:19 | |
*** senk has quit IRC | 04:20 | |
*** sdake_ has quit IRC | 04:20 | |
*** ArxCruz has quit IRC | 04:20 | |
*** sdake_ has joined #openstack-infra | 04:20 | |
*** melwitt has quit IRC | 04:21 | |
*** ArxCruz has joined #openstack-infra | 04:22 | |
*** DennyZhang has joined #openstack-infra | 04:22 | |
*** DennyZhang has quit IRC | 04:27 | |
*** vipuls is now known as vipuls-away | 04:32 | |
*** nati_ueno has joined #openstack-infra | 04:33 | |
*** pcrews has joined #openstack-infra | 04:35 | |
*** Ryan_Lane has joined #openstack-infra | 04:38 | |
*** chandankumar has joined #openstack-infra | 04:39 | |
*** paul-- has quit IRC | 04:42 | |
*** nati_ueno has quit IRC | 04:43 | |
*** zhiyan has joined #openstack-infra | 04:44 | |
*** herndon has quit IRC | 04:44 | |
*** zhiyan has quit IRC | 04:45 | |
*** zhiyan1 has joined #openstack-infra | 04:45 | |
*** zhiyan1 has quit IRC | 04:45 | |
*** zhiyan has joined #openstack-infra | 04:46 | |
*** krtaylor has joined #openstack-infra | 04:48 | |
*** nati_ueno has joined #openstack-infra | 04:49 | |
*** paul-- has joined #openstack-infra | 04:51 | |
openstackgerrit | A change was merged to openstack-infra/devstack-gate: Wire up support for DEVSTACK_GATE_SMOKE_SERIAL https://review.openstack.org/56466 | 04:51 |
*** mriedem has quit IRC | 04:53 | |
*** alexpilotti has joined #openstack-infra | 04:55 | |
*** matsuhashi has joined #openstack-infra | 04:56 | |
*** chandankumar has quit IRC | 04:57 | |
*** nati_ueno has quit IRC | 05:02 | |
*** sarob has quit IRC | 05:04 | |
*** sarob has joined #openstack-infra | 05:05 | |
*** nati_ueno has joined #openstack-infra | 05:09 | |
*** chandankumar has joined #openstack-infra | 05:09 | |
*** sarob has quit IRC | 05:10 | |
*** senk has joined #openstack-infra | 05:17 | |
*** jamesmcarthur has quit IRC | 05:17 | |
mikal | jog0: you still around? It must be late for you. | 05:22 |
*** jhesketh_ has quit IRC | 05:22 | |
*** jhesketh_ has joined #openstack-infra | 05:23 | |
*** DennyZhang has joined #openstack-infra | 05:23 | |
*** DennyZhang has quit IRC | 05:27 | |
mordred | mikal: or early | 05:30 |
mikal | True dat | 05:30 |
*** talluri has joined #openstack-infra | 05:32 | |
*** ericw has quit IRC | 05:39 | |
*** senk has quit IRC | 05:39 | |
*** pcrews has quit IRC | 05:42 | |
*** dripton has quit IRC | 05:44 | |
*** dcramer_ has quit IRC | 05:44 | |
*** marun has joined #openstack-infra | 05:50 | |
*** dcramer_ has joined #openstack-infra | 06:01 | |
*** zhiyan has quit IRC | 06:02 | |
*** nicedice_ has quit IRC | 06:02 | |
*** nati_ueno has quit IRC | 06:03 | |
*** rhsu has quit IRC | 06:08 | |
*** CaptTofu has quit IRC | 06:10 | |
*** CaptTofu has joined #openstack-infra | 06:10 | |
*** vipuls-away is now known as vipuls | 06:13 | |
*** paul-- has quit IRC | 06:16 | |
mikal | jog0: 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 |
clarkb | mikal: is it manifesting in the gate? | 06:18 |
mikal | I found it because my patch had failed tempest | 06:21 |
mikal | So I guess that's a yes? | 06:21 |
mordred | mikal: excellent | 06:24 |
mordred | mikal: does that mean that we want to attempt to figure out how to require a newer libvirt? | 06:24 |
clarkb | at the very least we should get it in elasticrecheck if possible to see how bad it is | 06:25 |
*** nicedice_ has joined #openstack-infra | 06:25 | |
clarkb | mordred: the tempest tox.ini change passes after merging that d-g change | 06:27 |
mordred | woot | 06:27 |
mordred | clarkb: also, does it feel like neutron is extra-flaky again? | 06:28 |
clarkb | mordred: yes, jog0 wrote an email to openstack-dev about it | 06:28 |
clarkb | mordred: Top 4 Elastic recheck known issues | 06:29 |
mordred | ugh | 06:30 |
*** dkliban has quit IRC | 06:30 | |
clarkb | there is even a link to shiny graphs | 06:32 |
clarkb | or a shiny graph | 06:32 |
*** nati_ueno has joined #openstack-infra | 06:35 | |
mordred | shiny | 06:36 |
mordred | clarkb: I'm re-checking the pbr change now that the pypi mirror change has gone in | 06:36 |
mordred | clarkb: also, I want to point out that for the first time EVER... | 06:39 |
mordred | http://russellbryant.net/openstack-stats/infra-reviewers-30.txt | 06:39 |
mordred | I'm winning on the review list AND I have a lower approval percentage than you :) | 06:39 |
mordred | I don't expect that to last | 06:39 |
mordred | but I gotta take my victories when I can... | 06:40 |
clarkb | ha | 06:40 |
clarkb | I don't like looking at the numbers :) | 06:40 |
mordred | I've actually only been checking them because my numbers were the worst of infra-core so I've been trying to do better | 06:41 |
mordred | and it's a good way to check to see how I'm doing | 06:41 |
clarkb | ya they are good checks. especially since when you are slogging through it it is hard to appreciate it | 06:42 |
openstackgerrit | A change was merged to openstack-infra/config: Add python-solumclient to stackforge https://review.openstack.org/56505 | 06:42 |
*** openstackgerrit has quit IRC | 06:46 | |
*** openstackgerrit has joined #openstack-infra | 06:48 | |
*** denis_makogon has joined #openstack-infra | 06:48 | |
mikal | clarkb: sorry, someone was talking to me in real life | 06:51 |
mikal | I dumped a stack trace in the bug, but the connection refused message is pretty obvious | 06:51 |
mikal | Wanna teach me how to search log stash for occurrances? | 06:51 |
clarkb | mikal sure | 06:51 |
clarkb | on aphone though | 06:51 |
clarkb | basically you to logstash.o.o and make sure the box says 15 minutes and hit search | 06:52 |
mikal | Ok, one sec | 06:52 |
clarkb | that 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 independently | 06:53 |
clarkb | so a common search would be something like: filename:"logs/screen-n-cpu.txt" AND message:"something in log indicates bug" | 06:54 |
clarkb | you can use AND OR and ()s to group things | 06:54 |
mikal | Please hold | 06:56 |
mikal | No hits in the last 15 minutes | 06:56 |
mikal | One hit in the last day | 06:56 |
clarkb | so not very often then | 06:56 |
mikal | Yeah, one hit in the last week | 06:57 |
mikal | So I might just be unlucky | 06:57 |
mikal | At least that one hit matches my failed test | 06:57 |
mikal | http://logstash.openstack.org/#eyJzZWFyY2giOiJmaWxlbmFtZTpcImxvZ3Mvc2NyZWVuLW4tY3B1LnR4dFwiIEFORCBtZXNzYWdlOlwibGlidmlydEVycm9yOiBGYWlsZWQgdG8gY29ubmVjdCBzb2NrZXQgdG8gJy92YXIvcnVuL2xpYnZpcnQvbGlidmlydC1zb2NrJ1wiIiwiZmllbGRzIjpbXSwib2Zmc2V0IjowLCJ0aW1lZnJhbWUiOiI2MDQ4MDAiLCJncmFwaG1vZGUiOiJjb3VudCIsInRpbWUiOnsidXNlcl9pbnRlcnZhbCI6MH0sInN0YW1wIjoxMzg0NDk4NjA2MDI4fQ== | 06:58 |
mikal | (I hope that link works as I expect) | 06:58 |
clarkb | it will | 06:58 |
clarkb | its a base64 encoded json representation of your query | 06:58 |
mikal | Cool | 06:59 |
mikal | So yeah, I think I am just unlucky here | 06:59 |
*** rwsu is now known as rwsu-pto | 07:04 | |
*** esker has quit IRC | 07:06 | |
*** dripton has joined #openstack-infra | 07:09 | |
*** yolanda has joined #openstack-infra | 07:11 | |
*** wenlock has quit IRC | 07:18 | |
*** SergeyLukjanov has joined #openstack-infra | 07:21 | |
*** DennyZhang has joined #openstack-infra | 07:24 | |
*** DennyZhang has quit IRC | 07:29 | |
*** jroovers has quit IRC | 07:30 | |
openstackgerrit | Peter Liljenberg proposed a change to openstack-infra/jenkins-job-builder: Updated gitblit projectname https://review.openstack.org/56475 | 07:32 |
*** esker has joined #openstack-infra | 07:32 | |
openstackgerrit | Peter Liljenberg proposed a change to openstack-infra/jenkins-job-builder: Updated gitblit projectname https://review.openstack.org/56475 | 07:38 |
*** senk has joined #openstack-infra | 07:39 | |
*** ericw has joined #openstack-infra | 07:42 | |
*** dstanek has quit IRC | 07:42 | |
*** senk has quit IRC | 07:44 | |
*** sandywalsh has quit IRC | 07:47 | |
*** cyeoh has quit IRC | 07:50 | |
*** cyeoh has joined #openstack-infra | 07:51 | |
openstackgerrit | Sergey Lukjanov proposed a change to openstack-infra/jeepyb: Fix savanna repos mappings https://review.openstack.org/56362 | 07:51 |
openstackgerrit | Marcus Nilsson proposed a change to openstack-infra/jenkins-job-builder: Added support for Stash Notifier https://review.openstack.org/56337 | 07:52 |
*** nati_ueno has quit IRC | 07:52 | |
*** mrmartin has joined #openstack-infra | 07:54 | |
*** nsaje has joined #openstack-infra | 07:55 | |
chmouel | hey all: any chances to get this processed? https://bugs.launchpad.net/openstack-ci/+bug/1251041 | 07:59 |
*** matsuhashi has quit IRC | 08:01 | |
*** matsuhashi has joined #openstack-infra | 08:02 | |
*** fandikurnia01 has quit IRC | 08:02 | |
*** fandikurnia01 has joined #openstack-infra | 08:03 | |
openstackgerrit | Oleg Gelbukh proposed a change to openstack-infra/config: Make gate jobs for Rubick non-voting https://review.openstack.org/56536 | 08:05 |
*** D30 has joined #openstack-infra | 08:07 | |
*** flaper87|afk is now known as flaper87 | 08:08 | |
openstackgerrit | Michael Prokop proposed a change to openstack-infra/jenkins-job-builder: Deprecate projectName setting of CopyArtifact https://review.openstack.org/56412 | 08:09 |
*** esker has quit IRC | 08:09 | |
*** michchap has quit IRC | 08:12 | |
openstackgerrit | Peter Liljenberg proposed a change to openstack-infra/jenkins-job-builder: Added support for Jenkins plugin Blame upstream committers https://review.openstack.org/54085 | 08:12 |
*** michchap has joined #openstack-infra | 08:12 | |
*** shardy_afk is now known as shardy | 08:14 | |
openstackgerrit | Michael Prokop proposed a change to openstack-infra/jenkins-job-builder: Deprecate projectName setting of CopyArtifact https://review.openstack.org/56412 | 08:18 |
*** sandywalsh has joined #openstack-infra | 08:19 | |
*** Ryan_Lane has quit IRC | 08:23 | |
*** changbl has quit IRC | 08:24 | |
*** DennyZhang has joined #openstack-infra | 08:25 | |
*** salv-orlando has joined #openstack-infra | 08:26 | |
*** DennyZhang has quit IRC | 08:29 | |
*** osanchez has joined #openstack-infra | 08:30 | |
openstackgerrit | Masayuki Igawa proposed a change to openstack-infra/elastic-recheck: Add query for bug 1251448 https://review.openstack.org/56539 | 08:33 |
openstackgerrit | Masayuki Igawa proposed a change to openstack-infra/elastic-recheck: Add query for bug 1244762 https://review.openstack.org/56539 | 08:36 |
openstackgerrit | Oleg Gelbukh proposed a change to openstack-infra/config: Add channel #rubick to gerritbot configuration https://review.openstack.org/56542 | 08:43 |
*** Alssi has joined #openstack-infra | 08:44 | |
*** Ryan_Lane has joined #openstack-infra | 08:54 | |
*** denis_makogon has quit IRC | 08:56 | |
*** changbl has joined #openstack-infra | 08:57 | |
*** pblaho has joined #openstack-infra | 08:58 | |
*** DinaBelova has joined #openstack-infra | 08:58 | |
*** pblaho has quit IRC | 08:59 | |
*** pblaho has joined #openstack-infra | 08:59 | |
*** jpich has joined #openstack-infra | 08:59 | |
*** jcoufal has joined #openstack-infra | 09:03 | |
*** changbl has quit IRC | 09:05 | |
*** pblaho1 has joined #openstack-infra | 09:05 | |
*** yassine has joined #openstack-infra | 09:05 | |
*** Ryan_Lane has quit IRC | 09:06 | |
*** pblaho has quit IRC | 09:07 | |
*** pblaho1 is now known as pblaho | 09:08 | |
*** pblaho has quit IRC | 09:14 | |
*** jishaomei has quit IRC | 09:15 | |
*** changbl has joined #openstack-infra | 09:15 | |
*** mrmartin has quit IRC | 09:16 | |
*** derekh has joined #openstack-infra | 09:18 | |
*** nsaje has quit IRC | 09:21 | |
*** matsuhashi has quit IRC | 09:25 | |
*** matsuhashi has joined #openstack-infra | 09:25 | |
*** nosnos has quit IRC | 09:26 | |
*** nosnos has joined #openstack-infra | 09:27 | |
*** nati_ueno has joined #openstack-infra | 09:27 | |
*** changbl has quit IRC | 09:28 | |
*** matsuhashi has quit IRC | 09:30 | |
*** nosnos has quit IRC | 09:31 | |
*** pblaho has joined #openstack-infra | 09:37 | |
*** ruhe has joined #openstack-infra | 09:37 | |
*** D30_ has joined #openstack-infra | 09:38 | |
*** ruhe has quit IRC | 09:40 | |
*** mrmartin has joined #openstack-infra | 09:41 | |
*** senk has joined #openstack-infra | 09:41 | |
*** nati_ueno has quit IRC | 09:42 | |
*** hashar has joined #openstack-infra | 09:42 | |
*** pblaho has quit IRC | 09:43 | |
*** D30 has quit IRC | 09:43 | |
*** D30_ is now known as D30 | 09:43 | |
*** ljjjustin has quit IRC | 09:44 | |
*** nsaje_ has joined #openstack-infra | 09:45 | |
*** nsaje_ has quit IRC | 09:45 | |
*** senk has quit IRC | 09:46 | |
*** mrmartin has quit IRC | 09:47 | |
*** boris-42 has joined #openstack-infra | 09:51 | |
*** johnthetubaguy has joined #openstack-infra | 09:53 | |
*** D30 has quit IRC | 09:54 | |
*** johnthetubaguy1 has joined #openstack-infra | 09:55 | |
*** che-arne has quit IRC | 09:57 | |
*** johnthetubaguy has quit IRC | 09:57 | |
*** Ryan_Lane has joined #openstack-infra | 10:02 | |
*** ruhe has joined #openstack-infra | 10:07 | |
*** Ryan_Lane has quit IRC | 10:07 | |
*** che-arne has joined #openstack-infra | 10:12 | |
*** pblaho has joined #openstack-infra | 10:19 | |
*** nsaje has joined #openstack-infra | 10:19 | |
*** afazekas has quit IRC | 10:24 | |
openstackgerrit | A change was merged to openstack-infra/storyboard: Pagination added to task lists https://review.openstack.org/55813 | 10:28 |
ekarlso | how do I get around warning: LocalManifestMaker: standard file '-c' not found | 10:28 |
*** pblaho has quit IRC | 10:29 | |
*** nsaje has quit IRC | 10:35 | |
*** nsaje_ has joined #openstack-infra | 10:36 | |
*** mkerrin has quit IRC | 10:37 | |
*** che-arne has quit IRC | 10:37 | |
*** ruhe has quit IRC | 10:37 | |
openstackgerrit | Sergey Lukjanov proposed a change to openstack-infra/config: Improve climate jobs configs https://review.openstack.org/56578 | 10:37 |
openstackgerrit | Sergey Lukjanov proposed a change to openstack/requirements: Fix flask upper bound https://review.openstack.org/56582 | 10:42 |
ekarlso | Shouldn't it only be to set openstackci in pypi to allow jenkins to upload ? | 10:42 |
ekarlso | https://jenkins.openstack.org/job/python-libraclient-pypi-upload/1/console fails but I've set openstackci in pypi.. | 10:42 |
*** mrmartin has joined #openstack-infra | 10:43 | |
*** ruhe has joined #openstack-infra | 10:44 | |
*** mrmartin has quit IRC | 10:48 | |
openstackgerrit | Sergey Lukjanov proposed a change to openstack-infra/config: Improve climate jobs configs https://review.openstack.org/56578 | 10:48 |
*** che-arne has joined #openstack-infra | 10:49 | |
openstackgerrit | Sergey Lukjanov proposed a change to openstack-infra/config: Improve climate jobs configs https://review.openstack.org/56578 | 10:49 |
anteaya | ekarlso: I don't see that warning in the file you linked | 10:52 |
*** jhesketh has quit IRC | 10:52 | |
anteaya | where does it occur? | 10:53 |
*** crank has quit IRC | 10:53 | |
*** jhesketh has joined #openstack-infra | 10:54 | |
*** crank has joined #openstack-infra | 10:54 | |
anteaya | mordred clarkb jog0 doing what I can to support jog0's work bringing this to the attention of Neutron | 10:55 |
*** pblaho has joined #openstack-infra | 10:55 | |
*** ruhe has quit IRC | 10:55 | |
*** ruhe has joined #openstack-infra | 10:57 | |
*** mriedem has joined #openstack-infra | 10:59 | |
*** marun has quit IRC | 10:59 | |
*** ruhe has quit IRC | 11:00 | |
ekarlso | anteaya: trying to install modules @ fedora 19 | 11:02 |
*** ruhe has joined #openstack-infra | 11:03 | |
openstackgerrit | Oleg Gelbukh proposed a change to openstack-infra/config: Make gate jobs for Rubick non-voting https://review.openstack.org/56536 | 11:03 |
*** Ryan_Lane has joined #openstack-infra | 11:03 | |
*** marun has joined #openstack-infra | 11:06 | |
*** Ryan_Lane has quit IRC | 11:08 | |
*** hashar has quit IRC | 11:09 | |
*** fandikurnia01 has quit IRC | 11:12 | |
*** DinaBelova has quit IRC | 11:12 | |
ekarlso | anteaya: ? | 11:12 |
*** pcm_ has joined #openstack-infra | 11:13 | |
anteaya | ekarlso: okay so do you have a stack trace? | 11:13 |
*** pcm_ has quit IRC | 11:14 | |
*** pcm_ has joined #openstack-infra | 11:14 | |
*** afazekas has joined #openstack-infra | 11:16 | |
ekarlso | anteaya: ofc | 11:24 |
openstackgerrit | Oleg Gelbukh proposed a change to openstack-infra/config: Make python33 gate job for Rubick non-voting https://review.openstack.org/56536 | 11:27 |
*** boris-42 has quit IRC | 11:28 | |
openstackgerrit | QianLin proposed a change to openstack-infra/nodepool: Add explanation on how to use floating-ip https://review.openstack.org/54331 | 11:30 |
anteaya | ekarlso: what does ofc mean? | 11:30 |
*** pblaho has quit IRC | 11:30 | |
*** SergeyLukjanov is now known as _SergeyLukjanov | 11:31 | |
*** ruhe has quit IRC | 11:32 | |
*** _SergeyLukjanov has quit IRC | 11:32 | |
*** nsaje_ has quit IRC | 11:33 | |
ekarlso | of course anteaya ;) | 11:33 |
*** mriedem has quit IRC | 11:34 | |
anteaya | ekarlso: are you willing to share that stacktrace with a paste? | 11:35 |
ekarlso | 2 seconds anteaya, looking if I can reproduce :) | 11:35 |
ekarlso | anteaya: just ignore, now I got it to work :/ | 11:36 |
ekarlso | but do you have a clue on my pypi problem ? | 11:37 |
*** ruhe has joined #openstack-infra | 11:37 | |
anteaya | ekarlso: glad it is working, no since I can't envision the problem myself yet, hence my request for a stacktrace | 11:38 |
*** che-arne has quit IRC | 11:38 | |
ekarlso | anteaya: I mean this: https://jenkins.openstack.org/job/python-libraclient-pypi-upload/1/console | 11:39 |
ekarlso | it should be allowed to upload to pypi :/ | 11:39 |
*** che-arne has joined #openstack-infra | 11:41 | |
*** pblaho has joined #openstack-infra | 11:41 | |
anteaya | do you have an account on pypi? | 11:41 |
anteaya | are your credentials for the account correct? | 11:41 |
*** mriedem has joined #openstack-infra | 11:43 | |
ekarlso | indeed | 11:43 |
ekarlso | my credentials ? | 11:43 |
*** boris-42 has joined #openstack-infra | 11:43 | |
*** senk has joined #openstack-infra | 11:44 | |
anteaya | does your pypi account require credentials to upload to it? | 11:46 |
anteaya | I don't know from experience, I have never uploaded to pypi | 11:46 |
ekarlso | anteaya: I've added openstackci as a maintainer of the pkg which should be sufficient according to othjer folks here | 11:47 |
ekarlso | could you do a retrigger of the job to see if it was problems with pypi that caused it ? | 11:47 |
anteaya | can i have the url for the patch? | 11:48 |
*** senk has quit IRC | 11:49 | |
*** ruhe has quit IRC | 11:49 | |
*** DinaBelova has joined #openstack-infra | 11:50 | |
anteaya | hi DinaBelova | 11:51 |
ekarlso | anteaya: it's a tag so no link :( | 11:51 |
DinaBelova | anteaya, hello | 11:51 |
anteaya | ekarlso: then I don't think there is anything I can do to help | 11:51 |
*** SergeyLukjanov has joined #openstack-infra | 11:51 | |
ekarlso | ah ok | 11:52 |
anteaya | ekarlso: I will suggest checking back in about 3 hours and perhaps fungi might have a response | 11:52 |
*** SergeyLukjanov is now known as _SergeyLukjanov | 11:53 | |
*** _SergeyLukjanov has quit IRC | 11:53 | |
ekarlso | ok :) | 11:55 |
anteaya | :D | 11:55 |
*** markmc has joined #openstack-infra | 11:56 | |
*** pblaho has quit IRC | 11:59 | |
*** pblaho has joined #openstack-infra | 11:59 | |
*** pblaho has quit IRC | 11:59 | |
*** pblaho has joined #openstack-infra | 11:59 | |
*** hashar has joined #openstack-infra | 12:00 | |
*** che-arne has quit IRC | 12:00 | |
*** ericw has quit IRC | 12:02 | |
*** dpyzhov has quit IRC | 12:02 | |
*** dpyzhov has joined #openstack-infra | 12:03 | |
*** Ryan_Lane has joined #openstack-infra | 12:04 | |
*** jorisroovers has joined #openstack-infra | 12:06 | |
*** Ryan_Lane has quit IRC | 12:08 | |
*** SergeyLukjanov has joined #openstack-infra | 12:14 | |
*** CaptTofu has quit IRC | 12:15 | |
*** SergeyLukjanov has quit IRC | 12:15 | |
*** ericw has joined #openstack-infra | 12:16 | |
*** yaguang has quit IRC | 12:16 | |
*** guohliu has quit IRC | 12:16 | |
*** ruhe has joined #openstack-infra | 12:16 | |
*** SergeyLukjanov has joined #openstack-infra | 12:16 | |
*** ruhe has quit IRC | 12:21 | |
*** michchap has quit IRC | 12:23 | |
*** michchap has joined #openstack-infra | 12:24 | |
openstackgerrit | Darragh Bailey proposed a change to openstack-infra/jenkins-job-builder: Use yaml local tags to support including files https://review.openstack.org/48783 | 12:24 |
openstackgerrit | Darragh Bailey proposed a change to openstack-infra/jenkins-job-builder: Provide default ConfigParser object https://review.openstack.org/48790 | 12:24 |
*** che-arne has joined #openstack-infra | 12:25 | |
*** CaptTofu has joined #openstack-infra | 12:27 | |
*** michchap has quit IRC | 12:29 | |
*** michchap has joined #openstack-infra | 12:29 | |
*** ruhe has joined #openstack-infra | 12:36 | |
mordred | darragh sends us patches but doesn't hang out with us on IRC anymore | 12:39 |
openstackgerrit | Nikita Konovalov proposed a change to openstack-infra/storyboard: Added task ordering https://review.openstack.org/56026 | 12:40 |
sdague | mordred: 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 _SergeyLukjanov | 12:42 | |
*** _SergeyLukjanov has quit IRC | 12:43 | |
openstackgerrit | Monty Taylor proposed a change to openstack-infra/reviewstats: Add jenkins-job-builder as a broken out project https://review.openstack.org/56603 | 12:46 |
mordred | sdague: I do not know, I'll check - and I don't think there would be an objection | 12:46 |
mordred | sdague: does it want to be on static and not on the build slaves themselves? | 12:46 |
*** senk has joined #openstack-infra | 12:47 | |
sdague | mordred: this would be for the gate dashboard | 12:47 |
sdague | which would run under hourly cron | 12:47 |
*** sdake has quit IRC | 12:48 | |
sdague | because I feel like some of the visualizations I want to do are going to be easier to accomplish with matplotlib than d3 | 12:48 |
*** sdake has joined #openstack-infra | 12:48 | |
*** sdake has quit IRC | 12:48 | |
*** sdake has joined #openstack-infra | 12:48 | |
*** boris-42 has quit IRC | 12:48 | |
*** alexpilotti has quit IRC | 12:49 | |
mordred | k. works for me | 12:49 |
*** nicedice_ has quit IRC | 12:49 | |
*** senk has quit IRC | 12:51 | |
*** sandywalsh has quit IRC | 12:53 | |
*** ruhe has quit IRC | 12:54 | |
*** DinaBelova has quit IRC | 12:55 | |
*** SergeyLukjanov has joined #openstack-infra | 12:55 | |
*** ruhe has joined #openstack-infra | 13:00 | |
*** mkerrin has joined #openstack-infra | 13:01 | |
*** sandywalsh has joined #openstack-infra | 13:05 | |
*** dstanek has joined #openstack-infra | 13:12 | |
*** dims has joined #openstack-infra | 13:18 | |
*** pabelanger has quit IRC | 13:24 | |
*** weshay has joined #openstack-infra | 13:27 | |
chmouel | hello, sorry bugging again any chances to get bug 1251041 done? | 13:27 |
chmouel | https://bugs.launchpad.net/openstack-ci/+bug/1251041 | 13:28 |
mordred | chmouel: done | 13:29 |
chmouel | mordred: awesome thanks | 13:29 |
chmouel | and about my issues I have sent to the ML, should I disable the pep8 first to get the fix merged? | 13:30 |
chmouel | http://lists.openstack.org/pipermail/openstack-infra/2013-November/000438.html | 13:30 |
mordred | chmouel: you should just be able to submit the change to change the tox.ini | 13:31 |
*** CaptTofu has quit IRC | 13:31 | |
chmouel | cool | 13:31 |
*** CaptTofu has joined #openstack-infra | 13:32 | |
mordred | chmouel: remote: https://review.openstack.org/56606 | 13:33 |
mordred | remote: https://review.openstack.org/56607 | 13:33 |
mordred | merry christmas | 13:33 |
*** ruhe has quit IRC | 13:36 | |
*** thomasem has joined #openstack-infra | 13:36 | |
*** talluri has quit IRC | 13:36 | |
*** CaptTofu has quit IRC | 13:36 | |
openstackgerrit | A change was merged to openstack-infra/config: Make python33 gate job for Rubick non-voting https://review.openstack.org/56536 | 13:39 |
openstackgerrit | A change was merged to openstack-infra/config: Improve climate jobs configs https://review.openstack.org/56578 | 13:40 |
openstackgerrit | A change was merged to openstack-infra/config: Add channel #rubick to gerritbot configuration https://review.openstack.org/56542 | 13:41 |
*** Ryan_Lane has joined #openstack-infra | 13:42 | |
*** julim has joined #openstack-infra | 13:46 | |
*** pblaho has quit IRC | 13:46 | |
*** senk has joined #openstack-infra | 13:49 | |
*** dcramer_ has quit IRC | 13:50 | |
*** CaptTofu has joined #openstack-infra | 13:50 | |
*** HenryG has joined #openstack-infra | 13:52 | |
*** Ryan_Lane has quit IRC | 13:52 | |
*** openstackgerrit has quit IRC | 13:53 | |
*** openstackgerrit has joined #openstack-infra | 13:53 | |
*** senk has quit IRC | 13:53 | |
*** boris-42 has joined #openstack-infra | 13:54 | |
*** changbl has joined #openstack-infra | 13:55 | |
*** ruhe has joined #openstack-infra | 13:57 | |
*** ruhe has quit IRC | 13:59 | |
*** dprince has joined #openstack-infra | 13:59 | |
*** herndon has joined #openstack-infra | 14:05 | |
*** ftcjeff has joined #openstack-infra | 14:06 | |
fungi | ekarlso: i think the upload problem for libraclient is that pypi.python.org is broken | 14:10 |
*** alexpilotti has joined #openstack-infra | 14:10 | |
fungi | or at least something's gone horribly wrong with fastly's cdn... Error 503 Backend is unhealthy (Guru Meditation: XID: 1135013380) | 14:11 |
fungi | dstufft: ^ (presumably you're already painfully aware) | 14:11 |
dstufft | status.python.org | 14:11 |
*** esker has joined #openstack-infra | 14:12 | |
fungi | perfect--thanks@ | 14:12 |
fungi | why did i not know that existed? i will start pointing people at it with great frequency in future situations | 14:12 |
*** russellb is now known as rustlebee | 14:13 | |
fungi | ekarlso: anyhoo, i can retrigger the upload job once it recovers. i'll leave myself a reminder | 14:13 |
*** anteaya is now known as anttteaya | 14:14 | |
dstufft | fungi: it's only a few months old or so | 14:14 |
fungi | ahh, that could be it. i drink away a majority of my brain cells not committed to long-term memory | 14:15 |
*** bnemec_ is now known as beekneemech | 14:18 | |
*** CaptTofu has quit IRC | 14:20 | |
*** CaptTofu has joined #openstack-infra | 14:21 | |
*** cody-somerville has joined #openstack-infra | 14:22 | |
*** boris-42 has quit IRC | 14:23 | |
*** oubiwann has quit IRC | 14:23 | |
*** mfer has joined #openstack-infra | 14:26 | |
*** boris-42 has joined #openstack-infra | 14:28 | |
*** CaptTofu has quit IRC | 14:28 | |
*** CaptTofu has joined #openstack-infra | 14:28 | |
openstackgerrit | A change was merged to openstack-infra/jeepyb: Fix savanna repos mappings https://review.openstack.org/56362 | 14:30 |
*** mrmartin has joined #openstack-infra | 14:31 | |
*** boris-42 has quit IRC | 14:32 | |
*** SergeyLukjanov is now known as _SergeyLukjanov | 14:34 | |
*** _SergeyLukjanov has quit IRC | 14:35 | |
*** herndon has quit IRC | 14:39 | |
*** hashar has quit IRC | 14:43 | |
*** dkliban has joined #openstack-infra | 14:45 | |
*** mrmartin has quit IRC | 14:46 | |
*** esker has quit IRC | 14:47 | |
*** xeyed4good has joined #openstack-infra | 14:47 | |
*** xeyed4good has left #openstack-infra | 14:47 | |
*** jamesmcarthur has joined #openstack-infra | 14:51 | |
*** boris-42 has joined #openstack-infra | 14:51 | |
*** oubiwann has joined #openstack-infra | 14:52 | |
*** nati_ueno has joined #openstack-infra | 14:54 | |
mordred | fungi, dstufft morning! | 14:57 |
fungi | morning mordred | 14:59 |
*** wenlock has joined #openstack-infra | 14:59 | |
fungi | looks like /srv/static/logs on static.o.o is down to 1% free, so i'm going ahead with the 1tb add here momentarily | 14:59 |
*** boris-42 has quit IRC | 14:59 | |
fungi | my 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 data | 15:00 |
mordred | impressive | 15:00 |
anttteaya | go fungi | 15:01 |
anttteaya | glad you spotted it on a weekday | 15:01 |
fungi | anttteaya: had a couple extra cups of t, i see? ;) | 15:01 |
*** beagles has joined #openstack-infra | 15:05 | |
anttteaya | oh goodness, I am glad to be able to sleep until 4:20am right now | 15:06 |
anttteaya | getting better | 15:06 |
anttteaya | it's a good thing I don't drink coffee | 15:07 |
*** dcramer_ has joined #openstack-infra | 15:07 | |
anttteaya | :D | 15:07 |
dripton | So 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 |
fungi | dripton: 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 |
dripton | thanks fungi | 15:08 |
dripton | I 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 IRC | 15:09 | |
dripton | Of course that's no guarantee since it could go down in the middle but it should help the odds | 15:09 |
fungi | agreed--thanks | 15:09 |
*** jaypipes has joined #openstack-infra | 15:11 | |
openstackgerrit | Davanum 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/56629 | 15:16 |
*** ryanpetrello has quit IRC | 15:18 | |
*** nati_ueno has quit IRC | 15:21 | |
*** ruhe has joined #openstack-infra | 15:25 | |
*** rnirmal has joined #openstack-infra | 15:25 | |
*** nati_ueno has joined #openstack-infra | 15:26 | |
*** nati_ueno has quit IRC | 15:28 | |
*** ryanpetrello has joined #openstack-infra | 15:28 | |
*** rnirmal has quit IRC | 15:28 | |
*** rnirmal has joined #openstack-infra | 15:29 | |
*** datsun180b has joined #openstack-infra | 15:30 | |
*** pcrews has joined #openstack-infra | 15:33 | |
fungi | ekarlso: 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 |
fungi | ekarlso: please add openstackci to either the "Package Index Owner" or "Package Index Maintainer" for python-libraclient | 15:35 |
*** ruhe has quit IRC | 15:35 | |
*** jhesketh has quit IRC | 15:36 | |
fungi | dripton: you should be all set now... https://pypi.python.org/pypi/sqlalchemy-migrate | 15:38 |
dripton | awesome. thanks fungi | 15:38 |
fungi | np | 15:38 |
*** boris-42 has joined #openstack-infra | 15:39 | |
*** rcleere has joined #openstack-infra | 15:40 | |
*** alcabrera has joined #openstack-infra | 15:42 | |
*** wenlock has joined #openstack-infra | 15:43 | |
fungi | free space... http://cacti.openstack.org/cacti/graph.php?action=view&local_graph_id=717&rra_id=all | 15:45 |
*** ryanpetrello has quit IRC | 15:47 | |
ekarlso | fungi: around ? | 15:48 |
fungi | ekarlso: yep | 15:48 |
fungi | ekarlso: doesn't look like you've fixed it yet | 15:49 |
fungi | oh, i see it does show " Maintainer: openstackci " but i'm not sure whether that's sufficient | 15:49 |
*** dansmith is now known as damnsmith | 15:49 | |
*** rustlebee is now known as drumkilla | 15:50 | |
*** drumkilla is now known as rustlebee | 15:50 | |
*** beagles is now known as b3nt_pin | 15:51 | |
fungi | ekarlso: 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 |
fungi | so i'm pretty sure it's the package index roles it checks for this | 15:51 |
*** rustlebee is now known as drumkilla | 15:51 | |
*** ryanpetrello has joined #openstack-infra | 15:52 | |
*** mrmartin has joined #openstack-infra | 15:53 | |
*** harlowja_at_home has joined #openstack-infra | 15:53 | |
*** che-arne has quit IRC | 15:55 | |
harlowja_at_home | jd__, 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-infra | 15:55 | |
jd__ | harlowja_at_home: ok, but you have to spit swear you're going to have Python 3 support :-) | 15:56 |
harlowja_at_home | spit swear, haha | 15:56 |
harlowja_at_home | i marked the bug as high priority, don't think its anything hard to do it | 15:56 |
harlowja_at_home | just requires a little work | 15:57 |
*** jorisroovers has quit IRC | 15:57 | |
jd__ | approved :) | 15:57 |
harlowja_at_home | thx@ | 15:57 |
harlowja_at_home | *thx! | 15:57 |
*** mrmartin has quit IRC | 15:57 | |
harlowja_at_home | much appreciated | 15:58 |
harlowja_at_home | u forgot to mention in the review that i spit swore,lol | 15:58 |
*** ruhe has joined #openstack-infra | 16:03 | |
harlowja_at_home | jd__, infact just found https://review.openstack.org/#/c/45852/4 so it seems like we are actually 99% of the way there | 16:03 |
harlowja_at_home | just some final touchups and should be good to go | 16:04 |
harlowja_at_home | although it does worry me a little about the dependencies that are not 3.3 read (babel, iso8601) | 16:05 |
harlowja_at_home | *ready | 16:05 |
harlowja_at_home | how are other projects which depend on those 3.3 ready? | 16:06 |
ekarlso | fungi: can you re-fire that now ? | 16:06 |
*** jcoufal has quit IRC | 16:06 | |
*** harlowja_at_home has quit IRC | 16:07 | |
fungi | ekarlso: success! | 16:09 |
fungi | excelsior! | 16:09 |
*** ericw_ has joined #openstack-infra | 16:10 | |
*** ericw has quit IRC | 16:10 | |
ekarlso | niceness fungi :) | 16:11 |
*** ericw_ is now known as ericw | 16:11 | |
*** yassine has quit IRC | 16:16 | |
*** che-arne has joined #openstack-infra | 16:17 | |
*** UtahDave has joined #openstack-infra | 16:19 | |
*** sdake has quit IRC | 16:21 | |
*** sdake has joined #openstack-infra | 16:22 | |
*** sdake has quit IRC | 16:22 | |
*** sdake has joined #openstack-infra | 16:22 | |
*** UtahDave has quit IRC | 16:24 | |
*** UtahDave has joined #openstack-infra | 16:29 | |
*** ruhe has quit IRC | 16:31 | |
*** markmcclain has joined #openstack-infra | 16:31 | |
*** alaski is now known as lascii | 16:32 | |
*** ryanpetrello has quit IRC | 16:36 | |
*** ruhe has joined #openstack-infra | 16:36 | |
*** xeyed4good1 has joined #openstack-infra | 16:46 | |
openstackgerrit | A change was merged to openstack/requirements: Add taskflow (used by cinder + others) to requirements https://review.openstack.org/52725 | 16:48 |
*** talluri has joined #openstack-infra | 16:48 | |
*** katyafervent has quit IRC | 16:49 | |
*** xeyed4good1 has left #openstack-infra | 16:51 | |
openstackgerrit | Jenkins proposed a change to openstack/requirements: Updated from global requirements https://review.openstack.org/56657 | 16:51 |
*** pblaho has joined #openstack-infra | 16:52 | |
fungi | uh | 16:53 |
fungi | huh | 16:53 |
fungi | that's mildly hilarious | 16:53 |
fungi | oh, but i guess that's it updating its own requirements based on changes to its global requirements, so not that silly after all | 16:53 |
fungi | actually kinda smart | 16:54 |
anttteaya | looks funny though | 16:54 |
anttteaya | I propose a change to myself | 16:54 |
*** jpich has quit IRC | 16:55 | |
clarkb | sdague: jog0 https://review.openstack.org/#/c/56465/ should be ready to go | 16:56 |
mordred | clarkb: you wanna hear something great? | 16:57 |
*** ArxCruz has quit IRC | 16:57 | |
clarkb | sure | 16:57 |
mordred | clarkb: I'm pretty sure I'm going to have to add a web server to pbr integration.sh | 16:57 |
mordred | clarkb: because the serve-things-from-file-path code path in pip with wheels enabled seems unable to negotiate case insensitivity and -/_ translations | 16:58 |
mordred | whereas when it reads from a url, the code path can do that | 16:58 |
mordred | dstufft: ^^ btw - that's silly, just for the record | 16:58 |
dstufft | mordred: verify it still exists in develop branch? | 16:59 |
dstufft | we changed something relating to that | 16:59 |
mordred | ooh. cool. I'll check it out | 17:00 |
mordred | becuase the CRAZY part is - I actually don't need to test that that works in the script | 17:00 |
mordred | we're testing something else | 17:00 |
mordred | clarkb: in any case- the change to pypi-mirror now gets through everything | 17:01 |
mordred | so our wheel mirrors are complete | 17:01 |
mordred | dstufft, clarkb: http://pypi.openstack.org/openstack/CentOS%206.4/ and http://pypi.openstack.org/openstack/Ubuntu-12.04/ | 17:01 |
*** datsun180b_ has joined #openstack-infra | 17:02 | |
mordred | sdague, clarkb: which means - if we add export PIP_USE_WHEEL=1 to devstack-gate, we should see a significant speedup in runtime | 17:02 |
*** datsun180b has quit IRC | 17:02 | |
*** datsun180b_ is now known as datsun180b | 17:02 | |
*** bknudson has left #openstack-infra | 17:04 | |
*** wenlock has quit IRC | 17:04 | |
openstackgerrit | Monty Taylor proposed a change to openstack-infra/devstack-gate: Enable the use of wheels in the gate https://review.openstack.org/56660 | 17:05 |
mordred | clarkb: ^^ let's try it and see :) | 17:05 |
*** reed has joined #openstack-infra | 17:07 | |
jd__ | is https://review.openstack.org/#/c/56657 supposed to happen? | 17:09 |
*** herndon has joined #openstack-infra | 17:11 | |
openstackgerrit | Dan Prince proposed a change to openstack/requirements: Bump to using SQLAlchemy migrate 0.8. https://review.openstack.org/56662 | 17:11 |
anttteaya | w00t for a speed-up in runtime | 17:13 |
*** talluri_ has joined #openstack-infra | 17:17 | |
*** dstanek has quit IRC | 17:18 | |
mordred | mriedem: I think what we'd be looking at is third party testing (for db2 CI) | 17:18 |
mordred | mriedem: http://ci.openstack.org/third_party.html | 17:18 |
mriedem | mordred: 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 IRC | 17:18 | |
mordred | mriedem: that's right | 17:18 |
*** talluri has quit IRC | 17:18 | |
*** bknudson has joined #openstack-infra | 17:18 | |
devananda | mordred: any thoughts on this error? http://logs.openstack.org/20/56520/3/check/gate-ironic-python27/4652e0a/console.html | 17:19 |
mordred | the unittest slaves we run for the rest of openstack already have both of those dbs on them with those users | 17:19 |
mriedem | mordred: so if there is a free db2 with no expiration, why couldn't that be done the same as mysql and postgresql? | 17:19 |
mriedem | mordred: reasoning is we'd like to move db2 support into the core projects and run UT against those at part of that also | 17:19 |
mriedem | db2 in migrate is just a pre-req for nova, it's a big picture thing | 17:19 |
mordred | mriedem: it largely has to do with the infra team's ability to actually maintain the installation of such a thing on our test nodes | 17:20 |
mriedem | mordred: ok, that was my guess | 17:20 |
mordred | mriedem: we currently do not have any non-open source software running anywhere | 17:20 |
mordred | and in general most of the team is extremely uncomfortable touching such software | 17:21 |
mriedem | good point | 17:21 |
mriedem | mordred: yeah, i totally get that | 17:21 |
mriedem | and i'm not surprised, but i had to ask | 17:21 |
mordred | which is why I'm thinking that getting a solid 3rd party testing rig up and going would be a good idea | 17:21 |
mordred | because that's exactly the type of place it can work well - with folks who know how db2 works taking care of it | 17:21 |
mriedem | mordred: 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 discussion | 17:22 |
mordred | awesome! | 17:22 |
*** mrodden has joined #openstack-infra | 17:22 | |
mordred | I think it'll be great to get that support in there | 17:22 |
mriedem | mrodden: good morning | 17:22 |
mriedem | mrodden: get db2 working as 3rd party CI - go! | 17:22 |
mriedem | actually, it's burger time | 17:23 |
*** xeyed4good has joined #openstack-infra | 17:27 | |
*** xeyed4good has left #openstack-infra | 17:31 | |
dims | mriedem, lol | 17:31 |
*** SergeyLukjanov has joined #openstack-infra | 17:31 | |
*** oubiwann has quit IRC | 17:32 | |
*** senk has joined #openstack-infra | 17:32 | |
*** jgrimm has joined #openstack-infra | 17:33 | |
jd__ | this new gate break is interesting, I think it's time for a good week-end :-) | 17:34 |
zaro | anybody know how to execute the jjb tests? the stuff in the tests/publishers folder. | 17:35 |
*** jgrimm is now known as reaper | 17:35 | |
*** reaper is now known as jgrimm | 17:36 | |
*** flaper87 is now known as flaper87|afk | 17:36 | |
*** boris-42 has quit IRC | 17:38 | |
*** boris-42 has joined #openstack-infra | 17:39 | |
reed | interesting: traffic to openstac-dev for non integrated projects is about half | 17:40 |
reed | meaning that about half of the traffic on openstack-dev is made by projects not integrated (yet) | 17:41 |
*** boris-42 has quit IRC | 17:41 | |
*** boris-42 has joined #openstack-infra | 17:42 | |
*** oubiwann has joined #openstack-infra | 17:42 | |
*** senk has quit IRC | 17:43 | |
*** gyee has joined #openstack-infra | 17:44 | |
mordred | dprince, mriedem: what do we need to do? | 17:44 |
*** derekh has quit IRC | 17:44 | |
*** dstanek has joined #openstack-infra | 17:44 | |
devananda | clarkb: 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 IRC | 17:45 | |
dprince | mordred: either cut a new release of sqlalchemy-migrate (which has a proper version number in the __init__.py) | 17:45 |
dprince | mordred: or break protocol and send Nova, Ironic branches in before changes the global requirements.txt file. | 17:46 |
mordred | AH. I se the problem. exciting | 17:46 |
*** ^d has joined #openstack-infra | 17:46 | |
*** ^d has quit IRC | 17:47 | |
*** ^d has joined #openstack-infra | 17:47 | |
mordred | gimme just a sec | 17:47 |
*** shardy is now known as shardy_afk | 17:49 | |
*** iccha has joined #openstack-infra | 17:49 | |
mordred | dprince: https://review.openstack.org/#/c/56671/ | 17:50 |
mordred | mriedem: ^^ | 17:50 |
*** markwash has quit IRC | 17:50 | |
dprince | mordred: go for it | 17:51 |
*** jamesmcarthur has quit IRC | 17:51 | |
*** senk has joined #openstack-infra | 17:53 | |
*** CaptTofu has quit IRC | 17:55 | |
reed | openstack-dev has another serious problem: reply-to is set wrong | 17:56 |
reed | damn | 17:56 |
*** senk has quit IRC | 17:56 | |
*** CaptTofu has joined #openstack-infra | 17:56 | |
*** jerryz has joined #openstack-infra | 17:57 | |
*** jamesmcarthur has joined #openstack-infra | 17:58 | |
*** pblaho has quit IRC | 17:59 | |
*** wenlock has joined #openstack-infra | 18:00 | |
*** senk has joined #openstack-infra | 18:00 | |
*** datsun180b has quit IRC | 18:02 | |
*** vipuls is now known as vipul | 18:02 | |
*** datsun180b has joined #openstack-infra | 18:03 | |
*** senk1 has joined #openstack-infra | 18:03 | |
*** dstanek has quit IRC | 18:04 | |
*** senk has quit IRC | 18:05 | |
*** oubiwann has quit IRC | 18:05 | |
*** UtahDave has quit IRC | 18:06 | |
*** osanchez has quit IRC | 18:06 | |
*** oubiwann has joined #openstack-infra | 18:09 | |
fungi | reed: 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 |
clarkb | devananda: I think it is a generally good idea to skim tyhe changes to make sure nothing crazy is going in | 18:10 |
fungi | we're adding several new stackforge repositories a week on average | 18:10 |
clarkb | devananda: double check that the files that are touched are .pot and .po files | 18:10 |
clarkb | devananda: it shouldn't be modifying any other files | 18:11 |
reed | fungi, I setup the filters as I suggested myself, the mailboxes are quite nicely sorted I have to say | 18:11 |
clarkb | and 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 |
reed | I'd blog about it... but my wordpress installation broke and I don't have time to fix it | 18:11 |
fungi | reed: 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 community | 18:11 |
devananda | clarkb: cool. so a little human eye checking. but folks aren't batching them or annything | 18:12 |
reed | fungi, that sounds like a problem to me | 18:12 |
* reed is late | 18:12 | |
fungi | reed: in my opinion, it definitely is a problem | 18:12 |
clarkb | devananda: if you let the change stay open jenkins will propose new patchsets to that change | 18:12 |
clarkb | devananda: so you can let them sit until it is convenient for you to do quick review | 18:12 |
devananda | clarkb: ah! that's useful | 18:12 |
*** mrmartin has joined #openstack-infra | 18:13 | |
fungi | reed: 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 together | 18:15 |
clarkb | reed: I would agree | 18:16 |
fungi | so it's great for developer community growth, but also means a significant increase in support burden | 18:16 |
*** hogepodge has joined #openstack-infra | 18:16 | |
reed | fungi, clarkb, we need to talk more about this | 18:16 |
reed | I have to run, need to meet students at Cal State SF who setup an openstack cloud | 18:17 |
clarkb | for integrated projects we have previously invested the support neceessary to get them going | 18:17 |
pleia2 | anttteaya: 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 bug | 18:17 |
clarkb | new projects need that initial investment | 18:17 |
fungi | reed: definitely. good luck over there | 18:17 |
pleia2 | reed: have fun | 18:17 |
reed | tnx | 18:17 |
clarkb | pleia2: Hunner would know | 18:17 |
pleia2 | ah, Hunner_irssi! | 18:17 |
* fungi is now known as fungi_ircii | 18:18 | |
fungi | (just kidding) | 18:18 |
pleia2 | Hunner_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 ages | 18:19 | |
pleia2 | fungi: haha | 18:19 |
*** ericw_ has joined #openstack-infra | 18:20 | |
*** jog0 is now known as flashgordon | 18:20 | |
* fungi is now known as fungi_manually_entering_irc_protocol_commands_over_a_raw_socket | 18:20 | |
*** jhesketh_ has quit IRC | 18:20 | |
pleia2 | I always expected that's how you did it | 18:21 |
*** ericw has quit IRC | 18:21 | |
*** ericw_ is now known as ericw | 18:21 | |
pleia2 | suspected too | 18:21 |
*** markmc has quit IRC | 18:21 | |
flashgordon | clarkb: thanks re: https://review.openstack.org/#/c/56465/ | 18:22 |
*** guohliu has joined #openstack-infra | 18:24 | |
NobodyCam | clarkb: you around? | 18:25 |
zaro | clarkb: do you know how to run jjb tests? | 18:25 |
clarkb | NobodyCam: ya | 18:25 |
clarkb | zaro: they are tox envs | 18:26 |
*** boris-42 has quit IRC | 18:26 | |
clarkb | zaro: I think you can just do tox -e$env | 18:26 |
NobodyCam | do you know how to add tlh to http://www.transifex.com/projects/p/ironic/ | 18:26 |
clarkb | zaro: actually wait there is a script to run that runs the tox envs | 18:26 |
clarkb | tlh? | 18:26 |
NobodyCam | https://www.transifex.com/languages/ | 18:27 |
clarkb | zaro: tools/run-compare-xml.sh runs the comparison tests and tox -epy27 will run the unittests | 18:27 |
*** jamesmcarthur has quit IRC | 18:27 | |
clarkb | NobodyCam: ah | 18:27 |
NobodyCam | :) | 18:27 |
clarkb | NobodyCam: I think you sign in as a translator and pick that language and start translating it for ironic | 18:28 |
clarkb | NobodyCam: then the jenkins jobs will find that language in transifex and propose the .po file to gerrit | 18:28 |
openstackgerrit | Dan Prince proposed a change to openstack/requirements: Bump to using SQLAlchemy migrate 0.8.2. https://review.openstack.org/56662 | 18:28 |
NobodyCam | :) | 18:28 |
clarkb | zaro: I am about to head into the office we can sort it out in a little bit if those don't work for some reason | 18:29 |
devananda | dprince: 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 |
zaro | ok. that works. but i still don't see the relationship from -epy27 to unit tests. please explain later. | 18:30 |
anttteaya | pleia2: puppet board | 18:31 |
anttteaya | is hunner about? | 18:31 |
clarkb | anttteaya: he is in channel but may not be watching irc | 18:31 |
anttteaya | clarkb: k | 18:31 |
pleia2 | I'm hoping he'll catch up asyncronously ;) | 18:31 |
anttteaya | I'm pretty sure it was called puppet board | 18:31 |
Hunner | anttteaya: Hiya | 18:32 |
anttteaya | hello there | 18:32 |
anttteaya | was puppet board the module you suggested to us at summit? | 18:32 |
Hunner | anttteaya: Yeah, https://github.com/nedap/puppetboard is the spiffy new dashboard reporting thing. I haven't updated my module for it yet | 18:32 |
anttteaya | cool | 18:33 |
mordred | ooh. neat! | 18:33 |
Hunner | I 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 released | 18:33 |
Hunner | (also, it helps to have a puppetdb database to import as it will otherwise be empty) | 18:34 |
*** marun has quit IRC | 18:34 | |
*** jhesketh_ has joined #openstack-infra | 18:34 | |
*** CaptTofu has quit IRC | 18:34 | |
*** CaptTofu has joined #openstack-infra | 18:34 | |
mordred | Hunner: it refers to new/experimental puppetdb apis | 18:34 |
mordred | Hunner: are those only in 3.x? | 18:35 |
mgagne | mordred: AFAIK, puppetdb isn't part of puppet itself | 18:35 |
Hunner | mordred: Those APIs were experimental at the time of puppetboard's release, but are now stable | 18:35 |
mgagne | mordred: it's a different service | 18:35 |
Hunner | mordred: puppetdb is a catalog/report/facts storage service with an HTTP REST api for querying it | 18:36 |
Hunner | and is really fast, so puppetboard is really fast | 18:36 |
Hunner | (since everyone knows the old puppet dashboard + mysql sucked) | 18:36 |
*** ruhe has joined #openstack-infra | 18:36 | |
Hunner | The new puppet dashboard sucks less, but is overkill for a light reporting web interface | 18:36 |
mgagne | Hunner: Puppet 3.x != PuppetDB API v3 right? | 18:36 |
clarkb | we don't have a puppetdb though | 18:37 |
clarkb | (we could add one I am sure) | 18:37 |
*** mrmartin has quit IRC | 18:37 | |
Hunner | mgagne: Correct | 18:37 |
mordred | ah | 18:38 |
mordred | so we install a puppetdb | 18:38 |
*** ^d has quit IRC | 18:38 | |
Hunner | Oh, you're still on 2.7... Let me think | 18:38 |
mordred | and then configure puppetmaster to report to it | 18:38 |
pleia2 | mordred: 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-infra | 18:39 | |
Hunner | yeah 2.7 works with puppetdb | 18:39 |
dprince | devananda: its a WIP man | 18:39 |
dprince | devananda: Everything is busted until we release that anyways | 18: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 |
mordred | pleia2: ah - you are quite right. thank you | 18:39 |
*** pcrews has joined #openstack-infra | 18:39 | |
clarkb | is there a tl;dr on the sqla-migrate thing? | 18:39 |
clarkb | mordred: dprince ^ | 18:39 |
pleia2 | mordred: #openstack-anvil isn't even registered, I -1ed it after you +A here https://review.openstack.org/#/c/53974/ | 18:39 |
wenlock | hunner, mordred: I also thought i saw in chat some weeks back about foreman and puppetboard.... is there a voting thing going? | 18:39 |
mordred | pleia2: /me hangs head | 18:40 |
Hunner | wenlock: It was discussed offline unofficially at the summit. We are more tossing ideas around at this point | 18:40 |
*** ruhe has quit IRC | 18:40 | |
wenlock | ahh cool | 18:40 |
pleia2 | mordred: just wanted to point it out since I saw it keep happening :) | 18:41 |
clarkb | mordred: https://review.openstack.org/#/c/56657/ huh | 18:41 |
clarkb | mordred: btw I think we disabled that job | 18:41 |
wenlock | i have no preference, but yeah, would be nice to see a better dashboard for sure | 18:41 |
dprince | clarkb: 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 |
clarkb | fungi: did that change get merged? I +2'd it | 18:41 |
dprince | clarkb: 0.8.1 release was bad | 18:41 |
Hunner | Basically, 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 requirements | 18:41 |
anttteaya | if we are considering foreman please consider halite, the salt dashboard | 18:42 |
mordred | oh - yeah - foreman seems to be way overkill | 18:42 |
anttteaya | I didn't mention it before since I didn't think we would consider foreman | 18:43 |
pleia2 | Hunner: https://bugs.launchpad.net/openstack-ci/+bug/1218631 is our active bug on it, which has some details of what we looked at | 18:43 |
pleia2 | (incl foreman) | 18:43 |
Hunner | anttteaya: 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 |
Hunner | pleia2: Oh cool, thanks | 18:43 |
pleia2 | Hunner: you're welcome to update the bug too (it would be helpful!) | 18:43 |
clarkb | dprince: thanks | 18:43 |
openstackgerrit | Marcus Nilsson proposed a change to openstack-infra/jenkins-job-builder: Added support for Stash Notifier https://review.openstack.org/56337 | 18:43 |
anttteaya | Hunner: don't let me stand in your way, but I think fungi or clarkb are the people who can get you the db dump | 18:44 |
anttteaya | I don't have access | 18:44 |
anttteaya | and yes demos are always great | 18:44 |
clarkb | anttteaya: I think hunner is going to get a db dump from his side | 18:44 |
Hunner | anttteaya: The DB dump would come from my QA team actually, not this infra | 18:44 |
clarkb | (we don't have a db yet) | 18:44 |
Hunner | ^ | 18:44 |
anttteaya | ah okay | 18:45 |
anttteaya | since you need nothing from me, I consider my part done then | 18:45 |
Hunner | anttteaya: Thanks for pinging me about it :). It keeps me from pushing it to a back burner | 18:45 |
anttteaya | understood | 18:45 |
anttteaya | actually this one was pleia2 | 18:45 |
*** xeyed4good has joined #openstack-infra | 18:46 | |
fungi | clarkb: i didn't approve it. saw you were working up a potential actual fix but wasn't sure how baked it would end up being | 18:46 |
fungi | haven't gotten back around to looking at it again yet | 18:47 |
Hunner | Oh, I see pleia2 highlight hunner_irssi... I recently switched to weechat but left irssi running jic | 18:47 |
clarkb | fungi: I think the actual fix is going to need more baking and thinking | 18:47 |
clarkb | fungi: I -1'd my own patch as I realized it has a few flaws that are pretty bad | 18:47 |
pleia2 | Hunner: hah, yeah, I stopped tab-complete on finding that user ;) | 18:47 |
clarkb | I didn't WIP it because I want people to look at it and it may be useable in the mean time | 18:48 |
*** Ryan_Lane has joined #openstack-infra | 18:50 | |
*** dstanek has joined #openstack-infra | 18:50 | |
*** senk1 has quit IRC | 18:53 | |
*** senk has joined #openstack-infra | 18:54 | |
openstackgerrit | Peter Liljenberg proposed a change to openstack-infra/jenkins-job-builder: Updated gitblit projectname https://review.openstack.org/56475 | 18:55 |
*** reed has quit IRC | 18:55 | |
*** xeyed4good has left #openstack-infra | 18:55 | |
*** sarob has joined #openstack-infra | 18:56 | |
fungi | mordred: 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 IRC | 18:57 | |
*** senk has joined #openstack-infra | 18:58 | |
*** guohliu has quit IRC | 18:59 | |
*** alexpilotti has quit IRC | 19:00 | |
*** sarob has quit IRC | 19:01 | |
mordred | fungi: yeah. I guess so | 19:01 |
mordred | fungi: I'm going to +A the first one | 19:02 |
mordred | clarkb: what if we just look in .gitreview ? | 19:03 |
*** nicedice has joined #openstack-infra | 19:03 | |
*** alexpilotti has joined #openstack-infra | 19:04 | |
fungi | that'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 |
mordred | or fork propose_requiremenst_update in each stable branch? | 19:04 |
* mordred just brainstorming | 19:05 | |
mordred | because if we're clever with git, we'll also need to handle a project not havin a corresponding target branch | 19:05 |
*** hogepodge has quit IRC | 19:06 | |
*** rnirmal has quit IRC | 19:06 | |
*** hogepodge has joined #openstack-infra | 19:06 | |
*** mriedem has quit IRC | 19:06 | |
*** SergeyLukjanov has quit IRC | 19:09 | |
*** xeyed4good has joined #openstack-infra | 19:10 | |
*** xeyed4good has left #openstack-infra | 19:10 | |
*** dstanek has quit IRC | 19:10 | |
*** mriedem has joined #openstack-infra | 19:11 | |
openstackgerrit | A change was merged to openstack-infra/config: Stop running propose-requirements-updates job https://review.openstack.org/56489 | 19:12 |
*** dims has quit IRC | 19:14 | |
fungi | which ideally should cause it to get skipped | 19:14 |
*** dims has joined #openstack-infra | 19:14 | |
*** mrmartin has joined #openstack-infra | 19:17 | |
ogelbukh | fungi: hi there | 19:17 |
fungi | ogelbukh: what's up? | 19:17 |
*** jergerber has joined #openstack-infra | 19:17 | |
ogelbukh | fungi: i really hate to come back over and over with it, but we have another issue with rubick project | 19:18 |
fungi | oh? | 19:18 |
ogelbukh | https://bugs.launchpad.net/openstack-ci/+bug/1251733 | 19:18 |
*** yolanda has quit IRC | 19:18 | |
ogelbukh | looks like acls didn't apply to gerrit | 19:18 |
fungi | ogelbukh: fixing. hold on | 19:18 |
ogelbukh | thanks! | 19:19 |
*** SergeyLukjanov has joined #openstack-infra | 19:19 | |
*** herndon has quit IRC | 19:19 | |
anttteaya | apparently 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-infra | 19:20 | |
*** herndon has quit IRC | 19:21 | |
*** talluri_ has quit IRC | 19:21 | |
anttteaya | because I am interested in viewing the archives if it is still around | 19:21 |
fungi | anttteaya: it would have been a launchpad list | 19:22 |
anttteaya | fungi: do you think it still survives then? | 19:23 |
*** CaptTofu has quit IRC | 19:23 | |
*** CaptTofu has joined #openstack-infra | 19:24 | |
*** sarob has joined #openstack-infra | 19:24 | |
fungi | anttteaya: i'm not finding it, so i don't think so | 19:24 |
*** melwitt has joined #openstack-infra | 19:25 | |
fungi | as 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 time | 19:25 |
anttteaya | fungi: thanks for looking | 19:26 |
clarkb | mordred I like that both of those ideas are simple | 19:26 |
anttteaya | right | 19:26 |
pleia2 | anttteaya: http://www.mail-archive.com/quantum-core@lists.launchpad.net/ | 19:26 |
pleia2 | a mirror anyway | 19:26 |
anttteaya | thanks | 19:26 |
mordred | clarkb: I like simple thinkgs | 19:26 |
mordred | clarkb: I thnk I like just setting a branch variable in the propose script when we make new branches | 19:26 |
clarkb | the propose script lives in config today but can be moved | 19:27 |
*** CaptainTacoSauce has joined #openstack-infra | 19:28 | |
mordred | oh. duh | 19:28 |
mordred | well, we could just put a thing somewhere in the requirements repo with the branch name I guess | 19:29 |
*** sarob has quit IRC | 19:29 | |
*** electrichead has joined #openstack-infra | 19:29 | |
*** SergeyLukjanov has quit IRC | 19:29 | |
mestery | anttteaya: 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 |
mestery | anttteaya: My suspicion is archives would have limited access as well, though I don't know that for sure. | 19:32 |
* mestery shrugges. | 19:32 | |
anttteaya | mestery: thanks | 19:32 |
mestery | anttteaya: Sure, no problem | 19:32 |
anttteaya | just trying to do a through dig | 19:32 |
anttteaya | it appears I can read the emails | 19:33 |
anttteaya | and yeah talking with markmcclain in pm, he said it doesn't exist anymore | 19:33 |
anttteaya | and the irc channel is new as of July | 19:33 |
anttteaya | this was news to me | 19:33 |
*** ryanpetrello has joined #openstack-infra | 19:33 | |
anttteaya | I had been operating under the belief the channel was as old as some of the others | 19:33 |
mestery | anttteaya: July? I'm pretty sure it's existed longer than that if memory serves me correctly. | 19:33 |
anttteaya | mestery: cool | 19:34 |
clarkb | fungi: if you haven't started yet I am going to hack on the adding havana jobs change now | 19:34 |
*** dstanek has joined #openstack-infra | 19:34 | |
anttteaya | It only started getting logged about 2 weeks before summit | 19:34 |
anttteaya | so I have no point of reference to check myself | 19:34 |
flashgordon | anttteaya: who knew t-shirts were such a hot button topic | 19:34 |
anttteaya | flashgordon: who knew | 19:34 |
fungi | clarkb: go for it. i only just got the stable/folsom eol work announced to the stable-maint ml and abandoned the open reviews for it | 19:35 |
*** dprince has quit IRC | 19:35 | |
*** weshay has quit IRC | 19:35 | |
*** chandankumar has quit IRC | 19:35 | |
*** vipul has quit IRC | 19:35 | |
*** maurosr has quit IRC | 19:35 | |
*** blamar has quit IRC | 19:35 | |
*** hub_cap has quit IRC | 19:35 | |
*** sparkycollier has quit IRC | 19:35 | |
*** fungi has quit IRC | 19:35 | |
*** mattymo has quit IRC | 19:35 | |
*** ianw has quit IRC | 19:35 | |
anttteaya | caught me by surprise | 19:35 |
flashgordon | anttteaya: devs are very informal, we like to sit half naked at home and code | 19:36 |
*** hub_cap has joined #openstack-infra | 19:37 | |
anttteaya | but we seem to have talked it out | 19:37 |
anttteaya | and reached a happy place | 19:37 |
anttteaya | flashgordon: that is TMI | 19:37 |
*** mattymo has joined #openstack-infra | 19:37 | |
*** weshay has joined #openstack-infra | 19:37 | |
*** vipul has joined #openstack-infra | 19:37 | |
*** ianw has joined #openstack-infra | 19:37 | |
*** maurosr has joined #openstack-infra | 19:37 | |
*** blamar has joined #openstack-infra | 19:37 | |
*** dprince has joined #openstack-infra | 19:37 | |
*** chandankumar has joined #openstack-infra | 19:38 | |
*** fungi has joined #openstack-infra | 19:38 | |
anttteaya | your type is fully clothed to me | 19:38 |
anttteaya | just the way I like it | 19:38 |
flashgordon | anttteaya: :) | 19:39 |
*** markwash has joined #openstack-infra | 19:41 | |
* pleia2 knew t-shirts were a hot button topic | 19:42 | |
pleia2 | but 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-infra | 19:42 | |
*** johnthetubaguy1 has quit IRC | 19:44 | |
flashgordon | pleia2: lol | 19:44 |
flashgordon | so now that we are getting more 3rd party testing (Woot) | 19:44 |
flashgordon | how do we make sure they don't go silent on us and stop doing there job? | 19:45 |
flashgordon | we just saw that with xen and smokestack | 19:45 |
*** alexpilotti has quit IRC | 19:45 | |
pleia2 | I 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 gate | 19:45 |
anttteaya | :D | 19:46 |
*** dcramer_ has quit IRC | 19:47 | |
flashgordon | pleia2: in nova we want to drop drivers taht have *no* testing | 19:48 |
flashgordon | so we don't gate on 3rd party but want to know that it doesn't vanish too | 19:48 |
pleia2 | flashgordon: 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 IRC | 19:49 | |
flashgordon | pleia2: that be a bit much, I was thinking just a phone home thing | 19:51 |
pleia2 | sure | 19:51 |
flashgordon | or soemthing that searches gerrit for the 3rd party tester comments | 19:51 |
flashgordon | so we just have list of the 3rd party tester names and names of tests they report back and if one goes missing alert | 19:52 |
*** soren has joined #openstack-infra | 19:52 | |
*** sarob has joined #openstack-infra | 19:54 | |
*** sarob has quit IRC | 19:56 | |
fungi | flashgordon: 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 |
fungi | flashgordon: 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 |
beekneemech | Hey, 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 |
beekneemech | Is it possible that our pypi mirror hasn't picked up the fixed version yet? | 19:59 |
beekneemech | http://logs.openstack.org/01/55801/1/gate/gate-oslo-incubator-python27/4473bc6/console.html | 19:59 |
flashgordon | fungi: every, but we can use the gerrit ssh API to get the info we need | 19:59 |
fungi | beekneemech: it may have merged, but might not be in the mirror yet | 19:59 |
clarkb | fungi: mordred: do you know why we unset zuul project in the periodic d-g jobs? | 19:59 |
flashgordon | I figure if 3rd party test x hasn't been run in y days, notify | 19:59 |
fungi | flashgordon: with a listener you could at least track a last-seen for each of them | 19:59 |
flashgordon | fungi: yeah that works | 19:59 |
*** nati_ueno has joined #openstack-infra | 19:59 | |
beekneemech | fungi: So try again in a couple of hours? | 19:59 |
fungi | beekneemech: no, let me check on it | 20:00 |
*** soren has quit IRC | 20:00 | |
clarkb | trying to squeeze morw jobs together but unset ZUUL_PROJECT is a difference | 20:00 |
fungi | clarkb: 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 |
fungi | but that could likely be handled in other ways if we wanted | 20:01 |
fungi | beekneemech: yeah, isn't reflected in http://pypi.openstack.org/openstack/sqlalchemy-migrate/ yet. i'll hunt down the reqs change and see if it merged | 20:02 |
beekneemech | fungi: Okay, thanks | 20:02 |
fungi | beekneemech: https://review.openstack.org/#/c/56662/ | 20:03 |
*** senk has quit IRC | 20:03 | |
*** dcramer_ has joined #openstack-infra | 20:03 | |
fungi | oh, though that's only raising the baseline version | 20:03 |
fungi | duhhh... i bet i know what the problem is | 20:04 |
fungi | no, nevermind, there was another release uploaded after the one i triggered, so the mirror jobs should have run. maybe they all failed | 20:05 |
*** markmcclain has quit IRC | 20:05 | |
fungi | three hours since those last ran | 20:06 |
fungi | 2013-11-15 17:20:13.890 | sqlalchemy-migrate==0.8.1 | 20:06 |
fungi | ha! there's why... https://git.openstack.org/cgit/openstack-infra/config/tree/modules/openstack_project/files/zuul/layout.yaml#n2618 | 20:07 |
fungi | no mirror update jobs cascaded off the pypi upload job for it | 20:07 |
fungi | fix coming | 20:07 |
openstackgerrit | Jeremy Stanley proposed a change to openstack-infra/config: Update PyPI mirror for sqlalchemy-migrate releases https://review.openstack.org/56693 | 20:13 |
fungi | beekneemech: dripton: ^ | 20:14 |
beekneemech | fungi: Cool, thanks. | 20:14 |
clarkb | isnt it stackforge? | 20:15 |
clarkb | I 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 IRC | 20:16 | |
fungi | yeah... | 20:16 |
* fungi checks for precedent and prior art | 20:16 | |
*** ^d is now known as ^demon|away | 20:17 | |
*** davidhadas has joined #openstack-infra | 20:17 | |
* flashgordon files an infra bug to request the feature | 20:19 | |
*** herndon has joined #openstack-infra | 20:22 | |
fungi | clarkb: 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/tomograph | 20:22 |
fungi | those are the stackforge projects which currently trigger mirror updates | 20:23 |
clarkb | :/ ok | 20:23 |
fungi | i share your concerns, but that train has sailed i think | 20:23 |
clarkb | ya | 20:23 |
clarkb | I thought I had been -1ing those things | 20:24 |
flashgordon | fungi: https://bugs.launchpad.net/openstack-ci/+bug/1251758 | 20:24 |
fungi | clarkb: not enough of them apparently | 20:24 |
*** nati_ueno has quit IRC | 20:25 | |
fungi | flashgordon: do you happen to have the gerrit api query to which you're alluding in that bug? | 20:25 |
*** jamesmcarthur has joined #openstack-infra | 20:25 | |
*** nati_ueno has joined #openstack-infra | 20:25 | |
fungi | flashgordon: iterating over the contents of https://review.openstack.org/#/admin/groups/91,members for that would likely get you what you need | 20:26 |
flashgordon | fungi: whatever rusellbs code uses | 20:27 |
flashgordon | russellbryant.net/openstack-stats/ | 20:27 |
fungi | flashgordon: though if a third party was using the same account to test multiple drivers, then that might not get you a clear picture still | 20:27 |
flashgordon | fungi: some comment parsing will be needed | 20:27 |
fungi | i expect so | 20:28 |
*** dstanek has quit IRC | 20:29 | |
*** dstanek has joined #openstack-infra | 20:29 | |
*** sandywalsh has quit IRC | 20:29 | |
*** jerryz has quit IRC | 20:31 | |
*** dprince has quit IRC | 20:31 | |
*** cody-somerville has quit IRC | 20:31 | |
*** UtahDave has joined #openstack-infra | 20:39 | |
*** sandywalsh has joined #openstack-infra | 20:42 | |
*** nati_ueno has quit IRC | 20:42 | |
*** ryanpetrello has quit IRC | 20:44 | |
*** markmcclain has joined #openstack-infra | 20:51 | |
mestery | Anyone else running devstack on Fedora and seeing issues where running "unstack.sh" leaves all the nova processes running? | 20:51 |
mestery | I'm seeing that since this week. Running on Fedora 19 and have seen this on multiple systems. | 20:51 |
mestery | Curious if others have seen this recently or not before I dig further. | 20:51 |
*** sarob has joined #openstack-infra | 20:52 | |
*** electrichead has left #openstack-infra | 20:53 | |
*** dstanek has quit IRC | 20:55 | |
openstackgerrit | Joshua Harlow proposed a change to openstack/requirements: Released 0.1.1 for taskflow (bug fixes) https://review.openstack.org/56698 | 20:57 |
fungi | mestery: 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-qa | 20:57 |
fungi | er, might fare better | 20:57 |
mestery | fungi: Thanks for the pointer! Wasn't sure this was the right channel. | 20:57 |
mestery | Will give it a shot ;) | 20:57 |
fungi | it'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 there | 20:58 |
mestery | Awesome! Thanks again fungi! | 20:59 |
fungi | np | 21:00 |
*** freyes has quit IRC | 21:03 | |
*** sarob_ has joined #openstack-infra | 21:04 | |
*** sarob has quit IRC | 21:06 | |
*** sarob__ has joined #openstack-infra | 21:06 | |
*** dstanek has joined #openstack-infra | 21:07 | |
*** xeyed4good has joined #openstack-infra | 21:08 | |
*** alcabrera has quit IRC | 21:09 | |
*** sarob__ has quit IRC | 21:09 | |
*** sarob has joined #openstack-infra | 21:09 | |
*** sarob_ has quit IRC | 21:09 | |
*** xeyed4good has quit IRC | 21:13 | |
*** DennyZhang has joined #openstack-infra | 21:18 | |
*** markmcclain has quit IRC | 21:19 | |
*** sarob has quit IRC | 21:20 | |
*** sarob has joined #openstack-infra | 21:21 | |
*** mrmartin has joined #openstack-infra | 21:23 | |
*** alexpilotti has joined #openstack-infra | 21:25 | |
*** mrmartin has quit IRC | 21:27 | |
devananda | hm, i'm still not able to install sqla-migrate 0.8.2. how long for it to propagate? | 21:30 |
*** atiwari has joined #openstack-infra | 21:30 | |
bknudson | there seems to be something wacky with jenkins and posting URLs. | 21:32 |
bknudson | https://review.openstack.org/#/c/54665/ | 21:32 |
bknudson | tried posting a link to https://github.com/openstack/oslo-incubator/commit/f06276bbdabd408549ecefa377b1349b57f5ac82 | 21:32 |
bknudson | and out comes f06276bbdabd408549ecefa377b1349b57f5ac82">https:/... ? | 21:32 |
*** tjones has joined #openstack-infra | 21:33 | |
*** CaptTofu has quit IRC | 21:35 | |
*** CaptTofu has joined #openstack-infra | 21:36 | |
*** dims has quit IRC | 21:37 | |
clarkb | it sees the sha and want to link directly to it | 21:38 |
clarkb | no need for flaky github just post a sha | 21:38 |
fungi | bknudson: however there is also an openstack-ci bug documenting that behavior at least | 21:39 |
fungi | i forget the bug number off the top of my head | 21:40 |
bknudson | fungi: clarkb: thanks... seems to be expected behavior then when have a hex string. | 21:40 |
fungi | devananda: i think nothing has triggered a mirror update yet. see my change above to start having sqlalchemy-migrate releases trigger mirror updates | 21:41 |
mordred | fungi: doh | 21:42 |
*** markmcclain has joined #openstack-infra | 21:48 | |
*** hogepodge_ has joined #openstack-infra | 21:49 | |
*** hogepodge has quit IRC | 21:50 | |
*** hogepodge_ is now known as hogepodge | 21:50 | |
fungi | heading out to eat for a bit, bbl | 21:51 |
*** reed has joined #openstack-infra | 21:53 | |
*** mfer has quit IRC | 21:59 | |
*** sandywalsh has quit IRC | 22:03 | |
*** jamesmcarthur has quit IRC | 22:04 | |
*** jamesmcarthur has joined #openstack-infra | 22:05 | |
*** ^demon|away is now known as ^d | 22:07 | |
*** thomasem has quit IRC | 22:07 | |
*** senk has joined #openstack-infra | 22:11 | |
*** hashar has quit IRC | 22:13 | |
*** senk has quit IRC | 22:15 | |
*** senk has joined #openstack-infra | 22:15 | |
*** markmcclain has quit IRC | 22:16 | |
*** nati_ueno has joined #openstack-infra | 22:17 | |
*** drumkilla has quit IRC | 22:19 | |
*** senk has quit IRC | 22:20 | |
*** russellb has joined #openstack-infra | 22:20 | |
*** nati_ueno has quit IRC | 22:21 | |
*** jamesmcarthur has quit IRC | 22:21 | |
*** sarob has quit IRC | 22:26 | |
*** sarob_ has joined #openstack-infra | 22:26 | |
*** DennyZhang has quit IRC | 22:26 | |
*** weshay has quit IRC | 22:27 | |
reed | I left the office with discussion heating up on the dev list, I came back and it's all cool now :) what an awesome community | 22:34 |
*** markmcclain has joined #openstack-infra | 22:35 | |
*** sarob_ has quit IRC | 22:35 | |
reed | now I feel like I should still say something :) | 22:36 |
* reed won't step in the thread after all, things are cool | 22:38 | |
*** dstanek has quit IRC | 22:39 | |
*** CaptTofu has quit IRC | 22:43 | |
*** CaptTofu has joined #openstack-infra | 22:43 | |
devananda | fungi: is there a workaround in the mean time so we can unblock the gate? | 22:48 |
*** pcrews has quit IRC | 22:49 | |
*** CaptTofu has quit IRC | 22:53 | |
*** CaptTofu has joined #openstack-infra | 22:53 | |
*** CaptainTacoSauce has quit IRC | 22:54 | |
*** ericw has quit IRC | 22:56 | |
*** mgagne has quit IRC | 23:00 | |
*** ftcjeff has quit IRC | 23:01 | |
openstackgerrit | Joe Gordon proposed a change to openstack-infra/elastic-recheck: Add query for bug 1251784 https://review.openstack.org/56706 | 23:03 |
flashgordon | clarkb: ^ | 23:03 |
flashgordon | can you do a quick review | 23:03 |
tjones | is it safe to recheck a patch it by the version 7.3 mismatch in jenkins? | 23:04 |
tjones | it == hit | 23:04 |
*** dstanek has joined #openstack-infra | 23:05 | |
clarkb | tjones: can you link to the change? I feel like I don't have enough context to make an appropriate answer | 23:07 |
clarkb | flashgordon: looking | 23:07 |
*** pcm_ has quit IRC | 23:07 | |
tjones | clarkb: sure - https://review.openstack.org/#/c/56287/ | 23:08 |
*** dcramer_ has quit IRC | 23:09 | |
openstackgerrit | A change was merged to openstack-infra/elastic-recheck: Add query for bug 1251784 https://review.openstack.org/56706 | 23:10 |
*** dstanek has quit IRC | 23:10 | |
*** dkliban has quit IRC | 23:10 | |
clarkb | tjones: I don't think the mirror has updated http://pypi.openstack.org/openstack/sqlalchemy-migrate/ so you can recheck but it will still fail | 23:10 |
clarkb | mordred: fungi: do we need to manually rtigger the periodic mirror jobs? | 23:11 |
clarkb | or is there are larger problem here? | 23:11 |
*** jgrimm has quit IRC | 23:11 | |
tjones | ok i'll wait. is there something i can watch so i don't have to bug you? | 23:11 |
*** oubiwann has quit IRC | 23:11 | |
*** zul has quit IRC | 23:15 | |
devananda | i'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 |
openstackgerrit | Khai Do proposed a change to openstack-infra/jenkins-job-builder: update doc and add new JJB unit tests https://review.openstack.org/56715 | 23:15 |
clarkb | tjones: that link to the pypi mirror, if 0.8.2 shows up in there you will be good to recheck | 23:16 |
*** zul has joined #openstack-infra | 23:16 | |
tjones | great - thanks | 23:16 |
*** UtahDave has quit IRC | 23:17 | |
*** sarob has joined #openstack-infra | 23:20 | |
fungi | clarkb: 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 job | 23:22 |
*** dstanek has joined #openstack-infra | 23:22 | |
clarkb | fungi: right but we can manually trigger hte periodic job | 23:23 |
fungi | i 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 releases | 23:23 |
fungi | but we could certainly manually launch some, sure | 23:23 |
clarkb | I will trigger the py27 job since I think it is slightly faster | 23:24 |
clarkb | well I suppose I should do py26 for completeness | 23:24 |
fungi | i'm uncertain whether trigger-job.py handles periodic pipeline jobs though | 23:24 |
fungi | worth trying | 23:24 |
clarkb | fungi: it doesn't | 23:24 |
clarkb | fungi: I can trigger the job in jenkins directly | 23:24 |
fungi | so you need to emulate one of the post jobs instead i guess | 23:25 |
fungi | oh, er | 23:25 |
clarkb | no | 23:25 |
clarkb | I just clikc the build now button | 23:25 |
clarkb | periodic jobs are special like that | 23:25 |
fungi | i was under the impression that manually running jenkins jobs would confuse zuul since the gearman integration, but maybe i'm misremembering | 23:26 |
clarkb | that is true for anything not triggered by the zuul cron mechanism | 23:26 |
fungi | k | 23:26 |
fungi | then have at it, for sure | 23:26 |
clarkb | the cron mechanism is super simple and is there so that we make sure the job doesn't run on three jenkinses at the same time | 23:26 |
clarkb | but 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 IRC | 23:27 | |
*** mriedem has quit IRC | 23:27 | |
fungi | great | 23:27 |
*** wayneeseguin has quit IRC | 23:28 | |
clarkb | fungi: I hope to have a havana jobs change up shortly | 23:29 |
clarkb | currently trying to make things templated in semi sane ways | 23:29 |
fungi | cool. i'm hammering on the openid server change to identify obvious gaps in it | 23:29 |
clarkb | I 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 icehouse | 23:29 |
clarkb | most of this change is backfilling things we should probably be requiring upfront | 23:30 |
fungi | sounds sane | 23:30 |
*** wayneeseguin has joined #openstack-infra | 23:33 | |
*** julim has quit IRC | 23:33 | |
*** rcleere has quit IRC | 23:48 | |
openstackgerrit | A change was merged to openstack-infra/reviewstats: Adds new/merge rate to reviewers information https://review.openstack.org/56380 | 23:48 |
fungi | clarkb: the mirror has 0.8.2 now. replied to the -dev ml thread to the same effect | 23:49 |
*** CaptTofu has quit IRC | 23:50 | |
*** CaptTofu has joined #openstack-infra | 23:50 | |
openstackgerrit | Clark Boylan proposed a change to openstack-infra/config: Add stable/havana jobs. https://review.openstack.org/56720 | 23:56 |
clarkb | fungi: awesome | 23:56 |
clarkb | fungi: ^ that change is probably really scary | 23:56 |
clarkb | in order to sort of get it all to make sense in my brain I did a little refactoring | 23:57 |
fungi | i am marginally too scared to look at it just yet | 23:57 |
*** michchap has quit IRC | 23:57 | |
clarkb | I really want to take that as the seed of a much larger refactoring that happens where each d-g job comes in two flavors | 23:57 |
clarkb | a check/gate template and a periodic template | 23:57 |
fungi | but 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 days | 23:57 |
clarkb | unfortunately 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 two | 23:58 |
fungi | having not looked at it yet, i can imagine some compromises which might allow further normalization between the check and gate pipelines | 23:58 |
clarkb | this change starts that. There are a few other questions that need answering like how to template jobs against the master branch | 23:58 |
*** michchap has joined #openstack-infra | 23:59 | |
clarkb | and I think I will do that in a future change where the template doesn't include the stable prefix | 23:59 |
fungi | sure | 23:59 |
clarkb | or rather doesn't hard code that prefix so that we can have stable/folsom jobs | 23:59 |
clarkb | are '/'s allows in jenkins job names? also I didn't really mean folsom | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!