Saturday, 2014-05-03

jerryz_fungi: thanks. do i need file a bug in ci-infra when we decide to create a feature branch?00:00
*** msabramo has joined #openstack-infra00:01
fungijerryz_: i believe if you make your acl grant create privileges for your -ptl group on refs/* then you should be able to create a branch on the project00:03
dstufftmordred: wat00:03
dstufftmordred: how are feature branches the opposite of CI00:04
dstufftthat's like saying Trucks are the opposite of Apples :V00:04
mordreddstufft: continuous integration is the process of continuously integrating work00:04
*** aconrad has quit IRC00:05
dstufftmordred: sure, when it's ready to be integrated00:05
mordreddstufft: feature branches are a technique for doing parallel work efforts and then integrating later00:05
*** packet has quit IRC00:05
*** manishg has joined #openstack-infra00:05
mordredwhich typically comes at a higher cost due to the larger amount of work needed to be done at each integration window00:05
dstufftnot using feature branches means you're always working on mainline, which means you end up with stuff just sitting uncommitted in your current directory because it's not ready to be integrated yet00:06
mordredor you do your work in smaller chunks so that it can be integrated sooner00:06
mordredhttp://martinfowler.com/bliki/FeatureBranch.html00:08
*** manishg_ has joined #openstack-infra00:08
*** manishg has quit IRC00:09
*** manishg_ is now known as manishg00:09
mordredmind you - I'm not saying that feature branches may not be a good idea depending on the team size and the project- but quite literally CI was developed in the first place to deal with the problem of merge hell that arose from feature branches00:11
dstufftI'm generally for small feature branches so that you can integrate it sooner sure, but going by that defintion it seems to mean you can't use any branches at all00:13
mordredI think there is a difference between long-lived shared feature branches00:13
mordredand short-lived small feature branches00:14
mordredwhich are really just "branches"00:14
mordredI use those like crazy00:14
openstackgerritJohn Griffith proposed a change to openstack-infra/config: Create cinder-specs git repo  https://review.openstack.org/9172300:14
fungistable release branches aren't necessarily at odds with ci either00:14
*** ArxCruz has joined #openstack-infra00:14
mordredright00:14
*** ArxCruz has quit IRC00:14
dstufftmordred: going by this defintion of CI it seems like code reviews are impossible too00:15
fungibranches make sense when you're branching your development effort off in different directions... it's when you need to bring those branches back together again that things get ugly. trees don't often reintegrate branches in nature either ;)00:15
*** manishg has quit IRC00:15
fungiand yes, gerrit's code review model really is like having lots of little feature branches you reintegrate asap00:16
*** msabramo has quit IRC00:17
*** PaulHend has joined #openstack-infra00:17
mordreddstufft: I'm not sure I agree - I think the underlying idea is that you don't want to go off and do multi-weeks of work without landing things00:17
openstackgerritJohn Griffith proposed a change to openstack-infra/config: Create cinder-specs git repo  https://review.openstack.org/9172300:17
mordredwhether you accomplish that with branches, patches or direct-commits to master is an impl detail00:17
fungifinding out as soon as possible that your work is in conflict with one of the hundreds of other developers on your project tends to be a time saver00:18
dstufftmordred: so I just read the martin fowler article, and going by his defintion of CI it's something I never ever want to use.00:18
*** manishg has joined #openstack-infra00:19
dstufftI generally agree with the idea that you don't want to do multi weeks work of things without landing it, and that you should strive to make your feature branches as small as possible00:19
mordreddstufft: well, yeah - that's the crazy-pants theory guy00:20
mordreddstufft: I don't want to do that eiter :)00:20
dstufftLike I don't think his defintion of CI is useful in any way00:20
*** wenlock has quit IRC00:20
dstufftor of feature branch00:20
*** packet has joined #openstack-infra00:23
fungithe more toned down suggestion there is that it's potentially safer, assuming you have *extensive* testing of the project, to develop code behind feature flags on mainline and continuously test that you're not breaking mainline in the process00:23
fungiand also have tests that enable your feature and exercise it00:23
*** manishg has quit IRC00:24
*** praneshp has quit IRC00:24
fungiand that way everyone's developing with your code in progress already landed, so the chances of divergence are significantly lessened00:24
*** manishg has joined #openstack-infra00:24
fungias opposed to having 50 feature branches, and just before release everyone wants to integrate them at the same time and discovers all sorts of reasons why they interact negatively00:25
dstufftsounds like a good way to end up with lots of churn on the mainline, unless people write software completely differently than I do00:25
dstuffttrying to land 50 changes at once sounds like a receipe for pain no matter how you do it :)00:27
*** aconrad has joined #openstack-infra00:27
fungii'm looking to see what the rough commit merge cadence on openstack/nova is00:28
*** manishg has quit IRC00:28
dstufft(I also think that shipping software with options that essentially say, break this software because the feature is half done is bad form)00:28
*** markmcclain has quit IRC00:29
*** manishg has joined #openstack-infra00:29
*** ArxCruz has joined #openstack-infra00:29
*** ArxCruz has quit IRC00:29
*** che-arne_afk has joined #openstack-infra00:30
fungieh, nova gets up around 20 commits a day during the week and falls off on weekends00:30
*** che-arne has quit IRC00:30
*** jhesketh_ has joined #openstack-infra00:30
fungiexperimental features which aren't enabled by default (and are clearly marked as dangerous) don't seem bad to me00:31
*** jhesketh_ is now known as jhesketh00:31
jheskethMorning00:31
fungiand testing bob's, betty's and bill's features in progress simultaneously is a lot easier if it just means enabling several experimental options rather than trying to solve merge commits between all their individual feature branches00:32
fungis/simultaneously/together/00:32
dstufftfungi: I think there's a difference between experimental (which implies the feature is in some sort of working state but maybe has some corner cases) and is always going to be broken because half the functionality isn't there yet00:33
fungiwell, that goes back to not developing in huge chunks. land bits which work by themselves, even if they don't necessarily do much, and build up to the full feature00:34
fungirather than landing broken code00:34
*** manishg has quit IRC00:34
*** andreykurilin_ has joined #openstack-infra00:34
*** manishg has joined #openstack-infra00:35
dstufftits not clear to me how that actually works with any feature that is in any way complex at all00:35
*** moted has joined #openstack-infra00:35
fungimore that you stub out or mock the parts you'll flesh out later, acting as no-ops and so on, rather than just leaving dangling breakage00:36
dstufftwell that's half broken :) the end user don't care00:37
*** SumitNaiksatam has joined #openstack-infra00:37
fungii think it's a question of audience. if the end user wants bleeding-edge-pull-from-github-on-every-commit software, then those are the sorts of rough edges i thing would be expected00:38
fungier, think00:38
*** manishg has quit IRC00:39
fungiyou can always start a release branch and continue cherry-picking the remaining parts of in progress features (or disengaging/disabling them) before releasing to the other audience who expects the fully-baked experience00:40
dstufftWell in that case your mainline branch isn't actually always in a releaseable state, you just pretend it is because your tests happen to pass00:40
*** manishg has joined #openstack-infra00:40
*** andreykurilin_ has quit IRC00:42
fungiyeah, i'm just saying i think that having your features out-of-tree and then dumping them into mainline just before release isn't necessarily "always releasable" either00:43
fungiof course mainline seems "still releasable" if you never add new commits to it until release time rolls around00:43
*** pcrews_ has quit IRC00:43
dstufftdo people actually do that? Just hold open N feature branches until it's time to release00:44
fungibut then there wouldn't be any point in running from mainline anyway if it was no different from the last release00:44
*** marcoemorais has quit IRC00:44
dstufftEvery place I've ever seen would open a feature branch, complete the feature, merge it in00:44
*** ArxCruz has joined #openstack-infra00:44
*** ArxCruz has quit IRC00:44
dstufftthe feature branch might be open 10 minutes, or 10 days, wahtever it takes to complete the feature00:45
*** manishg has quit IRC00:45
dstufftso things land in a staggered fashion00:45
*** aconrad has quit IRC00:45
fungiit's not so much the idea that mainline is always releasable, but rather that every commit on mainline is a release, and releasing continuously on a complex project tends to require either a compromise of developers not working within one another's contexts, or landing partial features which are disabled by default and marked as being in progress00:46
*** packet has quit IRC00:46
fungiat least those are the two approaches i've seen with any regularity00:47
fungialso, i am more a fan of good old-fashioned releases, but i gather that ci is fashionable in this fast-paced new devops utopia where the users are often also the developers00:48
dstufftsure i've seen both approaches too, but the "partial features" approach i've seen don't fall under martin fowler's defintion of CI either, because they were done in a branch, might have taken a few days to write, and were reviewed before they were integrated00:48
*** manishg has joined #openstack-infra00:49
dstuffthis CI seems to require just everyone commiting straight to master00:49
dstufft(I'm not sure how you'd do his CI on an OSS project at all TBH)00:50
fungiyeah, i think the idea of "topic branches" falls in between chaos and feature branches. i would consider the way we handle code review of one or a small stack of commits in gerrit to be topical rather than feature-oriented00:50
fungiconsider the lkml... i'm not sure i'd actually call an e-mail thread a "branch" in the revision control sense, but it's basically the same idea00:52
dstufftfungi: would you approve a changeset that had half a feature with some guards around the new feature and a promise to submit a second patch later?00:52
fungiwith a well-written and approved design to back it up, yeah00:52
dstufftso what do you do if the second patch never comes00:53
*** manishg has quit IRC00:53
fungithat's technical debt, but in all likelihood no worse than the technical debt of resolving the merge conflicts if it had been landed as one giant series in parallel with several others which tried to touch the same bits of the repository00:53
*** manishg has joined #openstack-infra00:54
fungieither you've got merge conflicts to resolve on the incoming feature branches or you've got revert conflicts to resolve ripping the dead code back out again00:54
dstufftwell except one is mandatory to resolve or else you can't actually do the merge, and the other isn't and most projects are not very good at managing techincal deb and going back and removing things00:54
dstufftthe second one can be poliically dificult too, because you end up with people who don't want that code ripped out but also don't want to actually finish the damn feature themselves ;)00:55
*** rhsu has quit IRC00:55
fungiin all probability i'd take the history of development work within the project for that committer into account when deciding whether the code needed to be fully baked or could be landed in several iterations00:56
*** lakshmiS has quit IRC00:56
fungiwe've definitely had plenty of success with large features which were landed incrementally with multiple supporting changes which didn't all have to land in one shotgun blast to the head00:57
dstufft(I completely agree with the idea of breaking things down into smaller chunks to reduce the length of time to integration, even breaking down larger features into smaller features where possible, but each change should stand on it's own without needing guards to protect against that code running)00:58
dstufftIt might be the smaller feature isn't particularly useful without something to consume it00:58
fungifrom a code review perspective it's a time saver, because re-reviewing large patch series every time they're rebased on fast-moving projects eats a lot of time00:59
*** manishg has quit IRC00:59
*** ArxCruz has joined #openstack-infra00:59
*** ArxCruz has quit IRC00:59
*** manishg has joined #openstack-infra00:59
fungiif i can review one piece, and that lands, and then review the next piece, and that lands, and so on, the rebasing is kept to a minimum01:00
fungias are the chances of errors introduced from botched rebases01:00
dstufftfungi: sure, breaking things into smaller stand alone features are good ;) my assertion is that breaking it into smaller half features is not ;P01:02
dstufftI do a lot of the first01:03
dstufftnone of the second01:03
*** pcrews_ has joined #openstack-infra01:03
*** manishg has quit IRC01:04
fungithe first is definitely preferable, and the second is when i might end up weighing that option against the possibility of a slightly-longer-lived topic branch which verges on being a feature branch while not really being declared so formally as such01:04
dstufftI'd rather work on a feature branch than have half a feature in mainline01:05
*** manishg has joined #openstack-infra01:05
dstufftrebasing isn't that hard01:05
fungirebasing isn't itself hard, but rebasing repeatedly while trying to get a larger branch through review eats a lot of reviewers' time, so there's a trade-off01:06
*** praneshp has joined #openstack-infra01:06
*** praneshp_ has joined #openstack-infra01:07
*** manishg has quit IRC01:10
*** manishg has joined #openstack-infra01:10
*** praneshp has quit IRC01:11
*** praneshp_ is now known as praneshp01:11
dstufftSure, though I think that's largely a function of how long a change sits and how many other changes land in the mean time. iow it's not clear to me that it would actually make anything better in say Openstack to land half features because you'd have (theortically) easier to review patches, but the number of merges would go up thus increasing the time between when a change is approved and when it is actually merged01:12
dstufftsince how long it takes to run the tests is a fixed cost01:12
dstufftand that has to be done serially01:12
dstufftwhereas reviewing can be done in parallel :D01:12
dstufftso in many ways you might end up increasing the rebasing01:13
*** ArxCruz has joined #openstack-infra01:14
*** ArxCruz has quit IRC01:14
*** manishg has quit IRC01:14
*** manishg has joined #openstack-infra01:15
*** prad has joined #openstack-infra01:17
*** prad has quit IRC01:19
*** manishg has quit IRC01:20
*** manishg has joined #openstack-infra01:20
*** pcrews_ has quit IRC01:23
*** rhsu has joined #openstack-infra01:24
*** manishg has quit IRC01:25
*** saschpe has quit IRC01:25
*** saschpe has joined #openstack-infra01:27
fungientirely possible. it may also just be that i quickly get bored reviewing large changes ;)01:29
*** dims has quit IRC01:29
*** ArxCruz has joined #openstack-infra01:29
*** ArxCruz has quit IRC01:29
*** gyee has quit IRC01:36
*** ArxCruz has joined #openstack-infra01:44
*** ArxCruz has quit IRC01:44
*** mriedem has joined #openstack-infra01:45
*** moted has quit IRC01:46
*** marun has quit IRC01:49
*** sdake_ has joined #openstack-infra01:51
*** SumitNaiksatam has quit IRC01:52
*** ArxCruz has joined #openstack-infra01:59
*** ArxCruz has quit IRC01:59
*** morganfainberg is now known as morganfainberg_Z02:00
*** giustoXricordarl has quit IRC02:02
*** atiwari has quit IRC02:05
*** mriedem has quit IRC02:09
*** ArxCruz has joined #openstack-infra02:14
*** ArxCruz has quit IRC02:14
*** wenlock has joined #openstack-infra02:20
*** prad has joined #openstack-infra02:28
*** prad has quit IRC02:28
*** ArxCruz has joined #openstack-infra02:29
*** ArxCruz has quit IRC02:29
openstackgerritJames E. Blair proposed a change to stackforge/gertty: Add a Quit dialog  https://review.openstack.org/9193202:43
jeblairharlowja, anteaya: ^02:43
harlowjaah cool02:43
*** ArxCruz has joined #openstack-infra02:44
*** ArxCruz has quit IRC02:44
jeblairharlowja: i built it on your change -- i added some things and removed a couple; let me know what you think02:44
harlowjalooks fine02:45
jeblairnow starts the long process of un-learning "ctrl-\ quits" :)02:45
harlowjai was trying it out yesterday, and made the sqlite db have enabled for taskflow, am slightly unsure how to use it, but its a start :-P02:45
harlowjait did seem to try to suck down the taskflow reviews02:45
harlowja*i think02:45
harlowjaha02:45
harlowjalike i see sync doing stuff, and openstack/taskflow on the main page02:46
harlowjabut no reviews, should there be?02:46
jeblairthe basic idea is that when you select taskflow, you should see a list of changes you need to review, and once you review them, they should be hidden (but you can show/hide them, or mark/unmark them at will, kind of like email)02:47
*** moted has joined #openstack-infra02:48
jeblairi haven't quite gotten the semantics right around which things it should automatically consider reviewed yet.. but it errs on the side of considering them unreviewed...02:48
harlowjahmmm, ya, so first problem i had, was how to enable taskflow02:48
jeblairso i'd sort of expect you to see some changes02:48
harlowjai had to go into the sqlite db and enable it, lol02:48
jeblairyeah, the start with empty screen isn't a good ux.  :)02:49
harlowjahehe02:49
jeblairthe idea there is you should hit "l" to list all the projects, then "s" to subscribe to the ones you want02:49
harlowjaahhh, there it goes02:49
harlowjano i see them02:49
harlowja*now02:50
jeblairall the screens have (at least a little bit) of help on f1, that sholud help you figure some of it out02:50
harlowjaya, mac f1 is weird, have to do function + f1, ha02:50
jeblairoh man.  that's like the one thing terminals should never screw up.  :(02:51
*** sweston has joined #openstack-infra02:51
harlowja:)02:51
harlowjaok, got to never sync nova, bad idea, lol02:51
jeblairhaha, yeah i have not tried that.  :)02:51
harlowjaya, i shouldn't have :-P02:52
jeblairfor now, we should probably just have it display the initial help screen if you start it with no subscribed projects02:52
jeblairthat will at least make things a little bit discoverable02:52
harlowjaor just start with listing all projects if never subscribed  to anything before?02:52
jeblairand we can put a note in there saying you might need to splat-f1 or alt-f1 etc...02:52
jeblairwell, then i'm worried people might not pick up on the 'subscribe' paradigm02:53
harlowjahmmm, or u can get all fancy, and have a tab that has all the projects, and tabs for each subscribed one02:54
harlowjahaha02:54
harlowjamaybe thats to much02:54
jeblairthat's not a bad idea, we might end up with something like that later, especially once it grows things like gerrit's dashboards (custom queries)02:55
*** ArxCruz has joined #openstack-infra02:59
*** ArxCruz has quit IRC02:59
harlowjaya, could be nice, but involves more urwid mastery, lol02:59
harlowjais pretty neat though03:02
harlowjafor those console lovers out there03:02
jeblairi'm pretty conversant in gtk and qt -- urwid is just close enough to them to make it seem easy, but just far enough away that it's actually quite hard...03:03
harlowjaright03:03
harlowjai had similar feelings, ha03:03
harlowjabetter than using ncurses directly was my end feeling03:04
harlowja:)03:04
jeblairi reviewed about 50 changes in gertty on wednesday -- i can't do everything in it yet, but after developing just a little bit of muscle memory, it was so much faster than using the web03:04
jeblairand more pleasant too.  single page diff view ftw.  :)03:05
harlowja:)03:05
jeblair(i've actually found myself going back too the change view in gertty a couple times looking for the next file to review only to realize i had already reviewed everything)03:05
*** mriedem has joined #openstack-infra03:06
harlowjaya, i'm gonna try to use it more, see how it works out03:07
jeblairbiggest gotchas right now are that it doesn't show dependencies, and if there are comments outside of the diffs, they aren't shown03:08
harlowjaand it doesn't match my terminal colors :-P03:09
harlowjaha03:09
*** mriedem has quit IRC03:10
jeblairoh, yeah, i figured we could add a theming option -- i think urwid makes that sort of thing pretty easy03:12
harlowjaya, i think so03:12
*** ArxCruz has joined #openstack-infra03:14
*** ArxCruz has quit IRC03:14
openstackgerritJames E. Blair proposed a change to stackforge/gertty: Make all of the change view scrollable  https://review.openstack.org/9193403:15
jeblairthat was also bugging me -- that should make it a lot nicer at smaller terminal sizes03:16
*** ArxCruz has joined #openstack-infra03:21
harlowjaah, cool03:22
harlowjafiguring out the 'pack' and such magic was a pita, lol03:22
harlowjawhen pack, when weight...03:23
*** SumitNaiksatam has joined #openstack-infra03:23
openstackgerritA change was merged to stackforge/gertty: Handle exiting more gracefully  https://review.openstack.org/9150403:23
openstackgerritA change was merged to stackforge/gertty: Add a Quit dialog  https://review.openstack.org/9193203:24
harlowjaif https://github.com/harlowja/gerrit_view/ goes on stackforge (maybe i should just do that), then we can have like a gerrit powertools package or something, ha03:26
*** ArxCruz has quit IRC03:35
openstackgerritJames E. Blair proposed a change to stackforge/gertty: Add a welcome screen  https://review.openstack.org/9193603:38
jeblairharlowja: ^ based on your ux feedback! :)03:38
harlowjaha03:38
harlowjacool03:39
openstackgerritA change was merged to stackforge/gertty: Make all of the change view scrollable  https://review.openstack.org/9193403:39
openstackgerritA change was merged to stackforge/gertty: Add a welcome screen  https://review.openstack.org/9193603:40
jeblairharlowja: that's it for me tonight, thanks for your help!03:40
harlowjanp :)03:41
*** ArxCruz has joined #openstack-infra03:42
*** ArxCruz has quit IRC03:42
*** moted has quit IRC03:49
*** PaulHend has quit IRC03:53
*** Ryan_Lane1 has quit IRC03:55
*** arnaud__ has quit IRC04:06
*** tteggel has quit IRC04:15
*** jraim has quit IRC04:15
*** Alex_Gaynor has quit IRC04:16
*** simonmcc has quit IRC04:16
*** serverascode has quit IRC04:16
*** wenlock has quit IRC04:16
*** jraim has joined #openstack-infra04:29
*** clayg has joined #openstack-infra04:30
claygcan anyone merge https://review.openstack.org/#/c/91815 ???04:30
*** tteggel has joined #openstack-infra04:34
*** simonmcc has joined #openstack-infra04:36
*** serverascode has joined #openstack-infra04:37
*** Alex_Gaynor has joined #openstack-infra04:39
*** hogepodge has quit IRC04:48
*** harlowja is now known as harlowja_away04:50
*** hogepodge has joined #openstack-infra04:52
*** msabramo has joined #openstack-infra04:53
*** sdake_ has quit IRC04:58
*** talluri has joined #openstack-infra05:11
*** Ryan_Lane1 has joined #openstack-infra05:12
*** imcsk8 has quit IRC05:18
*** imcsk8 has joined #openstack-infra05:18
*** Ryan_Lane1 has quit IRC05:25
*** chandan_kumar has joined #openstack-infra05:35
*** pcrews_ has joined #openstack-infra05:44
*** chandan_kumar has quit IRC05:47
*** oomichi has joined #openstack-infra05:53
*** jhesketh has quit IRC05:53
*** rhsu has quit IRC05:54
*** rhsu1 has joined #openstack-infra05:54
*** pcrews_ has quit IRC06:04
*** Alex_Gaynor has quit IRC06:11
*** asettle has quit IRC06:19
*** arnaud__ has joined #openstack-infra06:21
*** Alex_Gaynor has joined #openstack-infra06:26
*** asettle has joined #openstack-infra06:31
*** talluri has quit IRC06:46
*** lcheng_ has joined #openstack-infra06:55
*** lcheng_ has quit IRC06:55
*** rhsu1 has quit IRC07:03
*** chandan_kumar has joined #openstack-infra07:04
*** jhesketh has joined #openstack-infra07:09
*** andreykurilin_ has joined #openstack-infra07:31
*** andreykurilin_ has quit IRC07:36
*** andreykurilin_ has joined #openstack-infra07:36
*** yolanda has quit IRC07:45
*** JayF has quit IRC08:01
*** maxbit has quit IRC08:02
*** isviridov has quit IRC08:08
*** flaper87|afk has quit IRC08:08
*** chandan_kumar has quit IRC08:08
*** Alex_Gaynor has quit IRC08:08
*** msabramo has quit IRC08:08
*** openstackgerrit has quit IRC08:08
*** Ryan_Lane has quit IRC08:08
*** medieval1 has quit IRC08:08
*** mattoliverau has quit IRC08:08
*** kevinbenton has quit IRC08:08
*** lifeless has quit IRC08:08
*** odyi has quit IRC08:08
*** clarkb has quit IRC08:08
*** pfallenop has quit IRC08:08
*** yamahata_ has quit IRC08:08
*** zhiyan_ has quit IRC08:08
*** yjiang5_away has quit IRC08:08
*** SergeyLukjanov has quit IRC08:08
*** NikitaKonovalov has quit IRC08:08
*** plars has quit IRC08:08
*** spiffxp has quit IRC08:08
*** gaelL has quit IRC08:08
*** ptoohill has quit IRC08:08
*** vipul has quit IRC08:08
*** shardy has quit IRC08:08
*** Ng has quit IRC08:08
*** sbadia has quit IRC08:08
*** Hunner has quit IRC08:08
*** bodepd has quit IRC08:08
*** zaro has quit IRC08:08
*** therve has quit IRC08:08
*** devananda has quit IRC08:08
*** SlickNik has quit IRC08:08
*** clayg has quit IRC08:08
*** exz has quit IRC08:08
*** mancdaz has quit IRC08:08
*** johnthetubaguy has quit IRC08:08
*** ekarlso has quit IRC08:08
*** sabari has quit IRC08:08
*** akscram has quit IRC08:08
*** harlowja_away has quit IRC08:08
*** primeministerp has quit IRC08:08
*** hartsocks has quit IRC08:08
*** BobBall has quit IRC08:08
*** mika has quit IRC08:08
*** tristanC has quit IRC08:08
*** uvirtbot has quit IRC08:08
*** ttx has quit IRC08:08
*** pbelanyi has quit IRC08:08
*** koolhead17 has quit IRC08:08
*** dragondm has quit IRC08:08
*** ChanServ has quit IRC08:08
*** amotoki has quit IRC08:08
*** blkperl has quit IRC08:08
*** Mithrandir has quit IRC08:08
*** tru_tru_ has quit IRC08:08
*** michchap has quit IRC08:08
*** sdake has quit IRC08:08
*** miarmak has quit IRC08:08
*** afazekas has quit IRC08:08
*** dripton has quit IRC08:08
*** med_ has quit IRC08:08
*** gabriel-bezerra has quit IRC08:08
*** jlk has quit IRC08:08
*** grantbow has quit IRC08:08
*** paul-- has quit IRC08:08
*** jerryz_ has quit IRC08:08
*** nithya_g has quit IRC08:08
*** boris-42 has quit IRC08:08
*** briancline has quit IRC08:08
*** zul has quit IRC08:08
*** morgabra has quit IRC08:08
*** thingee has quit IRC08:08
*** EmilienM has quit IRC08:08
*** StevenK has quit IRC08:08
*** Clabbe has quit IRC08:08
*** maurosr has quit IRC08:08
*** rossella_s has quit IRC08:08
*** phschwartz has quit IRC08:08
*** bearhands has quit IRC08:08
*** russell_h has quit IRC08:08
*** antonym has quit IRC08:08
*** alaski has quit IRC08:08
*** pvo has quit IRC08:08
*** Guest37432 has quit IRC08:08
*** zz_gondoi has quit IRC08:08
*** jbryce has quit IRC08:08
*** andreykurilin_ has quit IRC08:08
*** julim_ has quit IRC08:08
*** krtaylor has quit IRC08:08
*** salv-orlando has quit IRC08:08
*** sdague has quit IRC08:08
*** xchu has quit IRC08:08
*** loquacities has quit IRC08:08
*** sahid has quit IRC08:08
*** mugsie has quit IRC08:08
*** locke105 has quit IRC08:08
*** sahumada has quit IRC08:08
*** mnaser has quit IRC08:08
*** jamespd has quit IRC08:08
*** jomara has quit IRC08:08
*** ryanpetrello has quit IRC08:08
*** spredzy has quit IRC08:08
*** jeremyb has quit IRC08:08
*** msuriar has quit IRC08:08
*** davidlenwell has quit IRC08:08
*** dkliban has quit IRC08:08
*** ruhe has quit IRC08:08
*** DinaBelova has quit IRC08:08
*** SpamapS has quit IRC08:08
*** anteaya has quit IRC08:08
*** jgriffith has quit IRC08:08
*** mburned has quit IRC08:08
*** tteggel has quit IRC08:08
*** zehicle_at_dell has quit IRC08:08
*** jgrimm has quit IRC08:08
*** dkehn has quit IRC08:08
*** cyeoh has quit IRC08:08
*** dguerri has quit IRC08:08
*** gnuoy` has quit IRC08:08
*** hdd has quit IRC08:08
*** mwagner_lap has quit IRC08:08
*** YorikSar has quit IRC08:08
*** jamielennox|away has quit IRC08:08
*** mtreinish has quit IRC08:08
*** ewindisch has quit IRC08:09
*** soren has quit IRC08:09
*** jeblair has quit IRC08:09
*** proffalken has quit IRC08:09
*** Daviey has quit IRC08:09
*** nijaba has quit IRC08:09
*** adarazs has quit IRC08:09
*** ilyashakhat has quit IRC08:09
*** esmute has quit IRC08:09
*** hogepodge has quit IRC08:09
*** serverascode has quit IRC08:09
*** simonmcc has quit IRC08:09
*** SumitNaiksatam has quit IRC08:09
*** praneshp has quit IRC08:09
*** rcarrillocruz has quit IRC08:09
*** wayneeseguin has quit IRC08:09
*** bradm1 has quit IRC08:09
*** Kiall has quit IRC08:09
*** nibalize1 has quit IRC08:09
*** krotscheck has quit IRC08:09
*** NobodyCam has quit IRC08:09
*** greghaynes has quit IRC08:09
*** mestery has quit IRC08:09
*** ogelbukh has quit IRC08:09
*** dteselkin_ has quit IRC08:09
*** Vivek has quit IRC08:09
*** plomakin has quit IRC08:09
*** jd__ has quit IRC08:09
*** asettle has quit IRC08:09
*** arnaud__ has quit IRC08:09
*** imcsk8 has quit IRC08:09
*** sweston has quit IRC08:09
*** saschpe has quit IRC08:09
*** sandywalsh has quit IRC08:09
*** timrc has quit IRC08:09
*** Alexei_987 has quit IRC08:09
*** LarsN has quit IRC08:09
*** dkehnx has quit IRC08:09
*** stevebaker has quit IRC08:09
*** wendar has quit IRC08:09
*** cp16net has quit IRC08:09
*** portante has quit IRC08:09
*** mgagne has quit IRC08:09
*** adam_g has quit IRC08:09
*** pabelanger has quit IRC08:09
*** roaet_ has quit IRC08:09
*** daenney has quit IRC08:09
*** jhesketh has quit IRC08:09
*** oomichi has quit IRC08:09
*** jraim has quit IRC08:09
*** ociuhandu has quit IRC08:09
*** kmartin has quit IRC08:09
*** yamahata has quit IRC08:09
*** asselin has quit IRC08:09
*** dkranz has quit IRC08:09
*** mattymo has quit IRC08:09
*** beekneemech has quit IRC08:09
*** bogdando has quit IRC08:09
*** kashyap has quit IRC08:09
*** dosaboy has quit IRC08:09
*** blamar has quit IRC08:09
*** jamespage has quit IRC08:09
*** psedlak has quit IRC08:09
*** dangers_away has quit IRC08:09
*** tchaypo has quit IRC08:09
*** gothicmindfood has quit IRC08:09
*** dstanek has quit IRC08:09
*** superdan has quit IRC08:09
*** hughsaunders has quit IRC08:09
*** lxsli has quit IRC08:09
*** chmouel has quit IRC08:09
*** gpocentek has quit IRC08:09
*** notmyname has quit IRC08:09
*** cody-somerville has quit IRC08:09
*** Shrews has quit IRC08:09
*** bknudson has quit IRC08:09
*** enikanorov has quit IRC08:09
*** changbl has quit IRC08:09
*** luisg_ has quit IRC08:09
*** mkerrin has quit IRC08:09
*** GheRivero has quit IRC08:09
*** mdenny has quit IRC08:09
*** saper has quit IRC08:09
*** skraynev has quit IRC08:09
*** jpeeler has quit IRC08:09
*** katyafervent has quit IRC08:09
*** jogo has quit IRC08:09
*** vladan has quit IRC08:09
*** dtroyer has quit IRC08:09
*** pleia2 has quit IRC08:09
*** JoshNang has quit IRC08:09
*** mikal has quit IRC08:09
*** dricco has quit IRC08:09
*** juice has quit IRC08:09
*** tnurlygayanov has quit IRC08:09
*** morganfainberg_Z has quit IRC08:09
*** juice has joined #openstack-infra08:12
*** mikal has joined #openstack-infra08:12
*** JoshNang has joined #openstack-infra08:12
*** pleia2 has joined #openstack-infra08:12
*** dtroyer has joined #openstack-infra08:12
*** vladan has joined #openstack-infra08:12
*** jogo has joined #openstack-infra08:12
*** dricco has joined #openstack-infra08:12
*** katyafervent has joined #openstack-infra08:12
*** jpeeler has joined #openstack-infra08:12
*** skraynev has joined #openstack-infra08:12
*** saper has joined #openstack-infra08:12
*** mdenny has joined #openstack-infra08:12
*** GheRivero has joined #openstack-infra08:12
*** mkerrin has joined #openstack-infra08:12
*** luisg_ has joined #openstack-infra08:12
*** changbl has joined #openstack-infra08:12
*** enikanorov has joined #openstack-infra08:12
*** bknudson has joined #openstack-infra08:12
*** Shrews has joined #openstack-infra08:12
*** cody-somerville has joined #openstack-infra08:12
*** flaper87|afk has joined #openstack-infra08:12
*** isviridov has joined #openstack-infra08:12
*** JayF_ has joined #openstack-infra08:12
*** andreykurilin_ has joined #openstack-infra08:12
*** jhesketh has joined #openstack-infra08:12
*** chandan_kumar has joined #openstack-infra08:12
*** asettle has joined #openstack-infra08:12
*** Alex_Gaynor has joined #openstack-infra08:12
*** oomichi has joined #openstack-infra08:12
*** imcsk8 has joined #openstack-infra08:12
*** msabramo has joined #openstack-infra08:12
*** hogepodge has joined #openstack-infra08:12
*** serverascode has joined #openstack-infra08:12
*** simonmcc has joined #openstack-infra08:12
*** tteggel has joined #openstack-infra08:12
*** clayg has joined #openstack-infra08:12
*** jraim has joined #openstack-infra08:12
*** SumitNaiksatam has joined #openstack-infra08:12
*** sweston has joined #openstack-infra08:12
*** saschpe has joined #openstack-infra08:12
*** praneshp has joined #openstack-infra08:12
*** sandywalsh has joined #openstack-infra08:12
*** timrc has joined #openstack-infra08:12
*** ociuhandu has joined #openstack-infra08:12
*** zehicle_at_dell has joined #openstack-infra08:12
*** rcarrillocruz has joined #openstack-infra08:12
*** julim_ has joined #openstack-infra08:12
*** kmartin has joined #openstack-infra08:12
*** yamahata has joined #openstack-infra08:12
*** asselin has joined #openstack-infra08:12
*** krtaylor has joined #openstack-infra08:12
*** salv-orlando has joined #openstack-infra08:12
*** openstackgerrit has joined #openstack-infra08:12
*** jgrimm has joined #openstack-infra08:12
*** dkranz has joined #openstack-infra08:12
*** Alexei_987 has joined #openstack-infra08:12
*** Ryan_Lane has joined #openstack-infra08:12
*** mattymo has joined #openstack-infra08:12
*** LarsN has joined #openstack-infra08:12
*** amotoki has joined #openstack-infra08:12
*** wayneeseguin has joined #openstack-infra08:12
*** bradm1 has joined #openstack-infra08:12
*** Kiall has joined #openstack-infra08:12
*** blkperl has joined #openstack-infra08:12
*** dkehn has joined #openstack-infra08:12
*** nibalize1 has joined #openstack-infra08:12
*** beekneemech has joined #openstack-infra08:12
*** cyeoh has joined #openstack-infra08:12
*** krotscheck has joined #openstack-infra08:12
*** Mithrandir has joined #openstack-infra08:12
*** NobodyCam has joined #openstack-infra08:12
*** tru_tru_ has joined #openstack-infra08:12
*** dguerri has joined #openstack-infra08:12
*** greghaynes has joined #openstack-infra08:12
*** gnuoy` has joined #openstack-infra08:12
*** michchap has joined #openstack-infra08:12
*** mestery has joined #openstack-infra08:12
*** sdake has joined #openstack-infra08:12
*** hdd has joined #openstack-infra08:12
*** dstanek has joined #openstack-infra08:12
*** dkehnx has joined #openstack-infra08:12
*** bogdando has joined #openstack-infra08:12
*** miarmak has joined #openstack-infra08:12
*** afazekas has joined #openstack-infra08:12
*** mwagner_lap has joined #openstack-infra08:12
*** sdague has joined #openstack-infra08:12
*** gabriel-bezerra has joined #openstack-infra08:12
*** dripton has joined #openstack-infra08:12
*** med_ has joined #openstack-infra08:12
*** grantbow has joined #openstack-infra08:12
*** plars has joined #openstack-infra08:12
*** proffalken has joined #openstack-infra08:12
*** medieval1 has joined #openstack-infra08:12
*** ekarlso has joined #openstack-infra08:12
*** Daviey has joined #openstack-infra08:12
*** zul has joined #openstack-infra08:12
*** kashyap has joined #openstack-infra08:12
*** ptoohill has joined #openstack-infra08:12
*** stevebaker has joined #openstack-infra08:12
*** morgabra has joined #openstack-infra08:12
*** dosaboy has joined #openstack-infra08:12
*** jlk has joined #openstack-infra08:12
*** sabari has joined #openstack-infra08:12
*** wendar has joined #openstack-infra08:12
*** blamar has joined #openstack-infra08:12
*** mnaser has joined #openstack-infra08:12
*** xchu has joined #openstack-infra08:12
*** jamespage has joined #openstack-infra08:12
*** psedlak has joined #openstack-infra08:12
*** loquacities has joined #openstack-infra08:12
*** jamespd has joined #openstack-infra08:12
*** sahid has joined #openstack-infra08:12
*** dangers_away has joined #openstack-infra08:12
*** exz has joined #openstack-infra08:12
*** tristanC has joined #openstack-infra08:12
*** akscram has joined #openstack-infra08:12
*** tchaypo has joined #openstack-infra08:12
*** mattoliverau has joined #openstack-infra08:12
*** paul-- has joined #openstack-infra08:12
*** thingee has joined #openstack-infra08:12
*** kevinbenton has joined #openstack-infra08:12
*** EmilienM has joined #openstack-infra08:12
*** StevenK has joined #openstack-infra08:12
*** johnthetubaguy has joined #openstack-infra08:12
*** mancdaz has joined #openstack-infra08:12
*** nijaba has joined #openstack-infra08:12
*** yjiang5_away has joined #openstack-infra08:12
*** lifeless has joined #openstack-infra08:12
*** odyi has joined #openstack-infra08:12
*** clarkb has joined #openstack-infra08:12
*** pfallenop has joined #openstack-infra08:12
*** hartsocks has joined #openstack-infra08:12
*** gothicmindfood has joined #openstack-infra08:12
*** adarazs has joined #openstack-infra08:12
*** Clabbe has joined #openstack-infra08:12
*** yamahata_ has joined #openstack-infra08:12
*** harlowja_away has joined #openstack-infra08:12
*** zhiyan_ has joined #openstack-infra08:12
*** primeministerp has joined #openstack-infra08:12
*** jerryz_ has joined #openstack-infra08:12
*** mugsie has joined #openstack-infra08:12
*** lxsli has joined #openstack-infra08:12
*** nithya_g has joined #openstack-infra08:12
*** ilyashakhat has joined #openstack-infra08:12
*** locke105 has joined #openstack-infra08:12
*** BobBall has joined #openstack-infra08:12
*** sahumada has joined #openstack-infra08:12
*** maurosr has joined #openstack-infra08:12
*** ogelbukh has joined #openstack-infra08:12
*** cp16net has joined #openstack-infra08:12
*** portante has joined #openstack-infra08:12
*** dteselkin_ has joined #openstack-infra08:12
*** ewindisch has joined #openstack-infra08:12
*** mgagne has joined #openstack-infra08:12
*** YorikSar has joined #openstack-infra08:12
*** jamielennox|away has joined #openstack-infra08:12
*** boris-42 has joined #openstack-infra08:12
*** mtreinish has joined #openstack-infra08:12
*** Vivek has joined #openstack-infra08:12
*** jomara has joined #openstack-infra08:12
*** spredzy has joined #openstack-infra08:12
*** ryanpetrello has joined #openstack-infra08:12
*** rossella_s has joined #openstack-infra08:12
*** jeremyb has joined #openstack-infra08:12
*** soren has joined #openstack-infra08:12
*** adam_g has joined #openstack-infra08:12
*** SlickNik has joined #openstack-infra08:12
*** devananda has joined #openstack-infra08:12
*** therve has joined #openstack-infra08:12
*** zaro has joined #openstack-infra08:12
*** bodepd has joined #openstack-infra08:12
*** Hunner has joined #openstack-infra08:12
*** sbadia has joined #openstack-infra08:12
*** Ng has joined #openstack-infra08:12
*** shardy has joined #openstack-infra08:12
*** vipul has joined #openstack-infra08:12
*** spiffxp has joined #openstack-infra08:12
*** gaelL has joined #openstack-infra08:12
*** NikitaKonovalov has joined #openstack-infra08:12
*** SergeyLukjanov has joined #openstack-infra08:12
*** superdan has joined #openstack-infra08:12
*** hughsaunders has joined #openstack-infra08:12
*** chmouel has joined #openstack-infra08:12
*** notmyname has joined #openstack-infra08:12
*** gpocentek has joined #openstack-infra08:12
*** plomakin has joined #openstack-infra08:12
*** jd__ has joined #openstack-infra08:12
*** pabelanger has joined #openstack-infra08:12
*** roaet_ has joined #openstack-infra08:12
*** daenney has joined #openstack-infra08:12
*** esmute has joined #openstack-infra08:12
*** jeblair has joined #openstack-infra08:12
*** phschwartz has joined #openstack-infra08:12
*** bearhands has joined #openstack-infra08:12
*** russell_h has joined #openstack-infra08:12
*** antonym has joined #openstack-infra08:12
*** alaski has joined #openstack-infra08:12
*** zz_gondoi has joined #openstack-infra08:12
*** pvo has joined #openstack-infra08:12
*** Guest37432 has joined #openstack-infra08:12
*** jbryce has joined #openstack-infra08:12
*** msuriar has joined #openstack-infra08:12
*** davidlenwell has joined #openstack-infra08:12
*** dkliban has joined #openstack-infra08:12
*** ruhe has joined #openstack-infra08:12
*** DinaBelova has joined #openstack-infra08:12
*** SpamapS has joined #openstack-infra08:12
*** anteaya has joined #openstack-infra08:12
*** jgriffith has joined #openstack-infra08:12
*** mburned has joined #openstack-infra08:12
*** briancline has joined #openstack-infra08:12
*** ChanServ has joined #openstack-infra08:12
*** mika has joined #openstack-infra08:12
*** uvirtbot has joined #openstack-infra08:12
*** ttx has joined #openstack-infra08:12
*** pbelanyi has joined #openstack-infra08:12
*** koolhead17 has joined #openstack-infra08:12
*** dragondm has joined #openstack-infra08:12
*** dickson.freenode.net sets mode: +oo jeblair ChanServ08:12
*** tnurlygayanov has joined #openstack-infra08:13
*** morganfainberg_Z has joined #openstack-infra08:13
*** talluri has joined #openstack-infra08:14
*** _nadya_ has joined #openstack-infra08:15
*** jeblair has quit IRC08:17
*** jamespd has quit IRC08:17
*** jamespd has joined #openstack-infra08:18
*** jeblair has joined #openstack-infra08:19
*** talluri has quit IRC08:33
*** talluri has joined #openstack-infra08:35
*** praneshp has quit IRC08:35
openstackgerritA change was merged to stackforge/python-jenkins: Add .gitignore  https://review.openstack.org/9018808:37
*** yamahata has quit IRC08:40
*** yamahata has joined #openstack-infra08:41
*** _nadya_ has quit IRC09:00
*** talluri has quit IRC09:02
*** alexpilotti has joined #openstack-infra09:02
*** talluri has joined #openstack-infra09:02
*** talluri has quit IRC09:03
*** talluri has joined #openstack-infra09:03
*** talluri has quit IRC09:03
*** talluri has joined #openstack-infra09:03
*** talluri has quit IRC09:04
*** talluri has joined #openstack-infra09:04
*** talluri has quit IRC09:09
*** talluri has joined #openstack-infra09:12
*** _nadya_ has joined #openstack-infra09:21
*** _nadya_ has quit IRC09:26
*** zhiyan_ is now known as zhiyan09:26
*** talluri has quit IRC09:34
*** zhiyan is now known as zhiyan_09:36
*** oomichi has quit IRC09:36
*** _nadya_ has joined #openstack-infra09:38
*** zhiyan_ is now known as zhiyan09:42
*** wendle has joined #openstack-infra09:42
*** _nadya_ has quit IRC09:43
*** mdenny has quit IRC10:16
*** kmartin has quit IRC10:16
*** jerryz_ has quit IRC10:19
*** SumitNaiksatam has quit IRC10:21
*** zhiyan is now known as zhiyan_10:24
*** _nadya_ has joined #openstack-infra10:25
openstackgerritSean Dague proposed a change to openstack-infra/os-loganalyze: fix highlighting on console.html files  https://review.openstack.org/9195310:28
*** rcarrill` has joined #openstack-infra10:37
*** rcarrillocruz has quit IRC10:39
*** jooools has joined #openstack-infra10:51
*** _nadya_ has quit IRC11:00
*** _nadya_ has joined #openstack-infra11:02
*** _nadya_ has quit IRC11:05
*** chandan_kumar has quit IRC11:15
*** dizquierdo has joined #openstack-infra11:16
*** giustoXricordarl has joined #openstack-infra11:25
Adri2000I'm not familiar with selenium logs, this one is timing out: http://logs.openstack.org/34/89534/1/check/gate-horizon-selenium/4c53078/console.html.gz any idea?11:26
*** giustoXricordarl has quit IRC11:28
*** giustoXricordarl has joined #openstack-infra11:29
*** jooools has quit IRC11:29
*** ociuhandu has quit IRC11:30
*** giustoXricordarl has quit IRC11:32
*** giustoXricordarl has joined #openstack-infra11:33
*** ihrachyshka has joined #openstack-infra11:37
*** alexpilotti has quit IRC11:52
*** rcarrillocruz has joined #openstack-infra12:16
*** rcarrill` has quit IRC12:17
*** ihrachyshka has quit IRC12:21
*** _nadya_ has joined #openstack-infra12:25
*** ihrachyshka has joined #openstack-infra12:27
*** _nadya_ has quit IRC12:27
*** flaper87|afk is now known as flaper8712:31
*** mriedem has joined #openstack-infra12:36
*** dizquierdo has quit IRC12:40
*** pblaho has joined #openstack-infra12:51
*** dims has joined #openstack-infra12:53
*** pblaho has quit IRC12:53
openstackgerritMatt Riedemann proposed a change to openstack-infra/elastic-recheck: Add query for nova bug 1315668  https://review.openstack.org/9195813:01
uvirtbotLaunchpad bug 1315668 in nova "test_security_group_rules_create_with_optional_arguments fails: This result object does not return rows. It has been closed automatically." [Undecided,New] https://launchpad.net/bugs/131566813:01
*** dims has quit IRC13:06
openstackgerritA change was merged to openstack-infra/elastic-recheck: Add query for nova bug 1315668  https://review.openstack.org/9195813:09
uvirtbotLaunchpad bug 1315668 in nova "test_security_group_rules_create_with_optional_arguments fails: This result object does not return rows. It has been closed automatically." [Undecided,New] https://launchpad.net/bugs/131566813:09
*** otherwiseguy has joined #openstack-infra13:16
*** ihrachyshka has quit IRC13:38
*** mengxd has joined #openstack-infra13:46
openstackgerritDarragh Bailey proposed a change to openstack-infra/jenkins-job-builder: Test creation of multiple jobs from templates  https://review.openstack.org/9196013:48
*** mengxd has quit IRC13:49
*** andreykurilin_ has quit IRC14:03
*** andreykurilin_ has joined #openstack-infra14:04
*** wenlock has joined #openstack-infra14:24
*** plars has quit IRC14:27
*** plars has joined #openstack-infra14:28
*** mfer has joined #openstack-infra14:39
*** ramashri has joined #openstack-infra14:43
*** otherwiseguy has quit IRC14:45
*** ramashri has quit IRC14:47
*** mfer has quit IRC14:58
*** mfer has joined #openstack-infra15:02
*** wenlock has quit IRC15:10
*** blamar has quit IRC15:11
*** mfer has quit IRC15:11
*** blamar has joined #openstack-infra15:16
*** _nadya_ has joined #openstack-infra15:28
*** wenlock has joined #openstack-infra15:30
*** ociuhandu has joined #openstack-infra15:41
*** wenlock has quit IRC15:42
*** wenlock has joined #openstack-infra15:42
*** mriedem has quit IRC15:46
*** rhsu has joined #openstack-infra15:48
*** wenlock has quit IRC15:55
*** _nadya_ has quit IRC16:05
*** wenlock has joined #openstack-infra16:18
*** rhsu has quit IRC16:24
*** rhsu has joined #openstack-infra16:24
*** zns has joined #openstack-infra16:26
*** zns has quit IRC16:27
*** zns has joined #openstack-infra16:27
*** giustoXricordarl has quit IRC16:27
*** e0ne has joined #openstack-infra16:31
*** zns has quit IRC16:40
*** e0ne has quit IRC16:42
*** imcsk8 has quit IRC16:43
*** imcsk8 has joined #openstack-infra16:44
*** pcrews_ has joined #openstack-infra16:46
*** zns has joined #openstack-infra16:47
*** e0ne has joined #openstack-infra16:48
*** _nadya_ has joined #openstack-infra16:50
*** pcrews_ has quit IRC16:51
*** rcarrill` has joined #openstack-infra16:58
*** moted has joined #openstack-infra16:59
*** rcarrillocruz has quit IRC17:01
*** moted has quit IRC17:01
*** yfried has joined #openstack-infra17:04
*** wenlock has quit IRC17:11
openstackgerritMatthew Treinish proposed a change to openstack-infra/devstack-gate: Capture *.failure logs from $BASE/status/stack  https://review.openstack.org/9196517:14
fungitest volume seems minimal, so i'm taking this opportunity to resize nodepool.o.o from a 2gb instance to 8gb. once it restarts i'll probably have to bump nodepoold again on it to get reporting to graphite to resume (based on prior experiences) and do a little cleanup on lost nodes, but in general it should all pass unnoticed unless you're staring at graphs17:17
*** rhsu has quit IRC17:21
*** _nadya_ has quit IRC17:21
*** rcarrillocruz has joined #openstack-infra17:21
ildikov_fungi: thanks for approving the netifaces patch and replying on the bug report17:22
*** rcarrill` has quit IRC17:23
fungiildikov_: yw17:32
*** wenlock has joined #openstack-infra17:33
ildikov_fungi: BTW: the patch is failing because of this error on the gate now: error: Namespace package problem: sphinxcontrib ... :(17:41
fungiildikov_: oh, fun!17:42
ildikov_fungi: log: https://jenkins03.openstack.org/job/gate-requirements-integration-dsvm/143/console17:42
fungiyep, was already looking at the error... i wonder if we've hit something else newly releasing brokenness now17:43
fungiin unrelated news, the nodepool.o.o resize stopped a few minutes in and left the instance in an error state (at least nodepool is still up and running!). i've opened a support case with rackspace so they can look into it17:44
ildikov_thanks fo rthe news, we have a bit bit too much for a Saturday or I'm just new to infra insides17:48
funginah, this is a "slow" saturday ;)17:49
openstackgerritJoshua Harlow proposed a change to stackforge/gertty: Add a pbr compatible setup  https://review.openstack.org/9196717:49
fungimordred: dhellmann: if either of you are around, this mysterious namespace package error may be of interest... http://logs.openstack.org/15/91815/4/gate/gate-requirements-integration-dsvm/44d6cdf/console.html17:50
ildikov_nice :)17:50
fungi"error: Namespace package problem: sphinxcontrib is a namespace package, but its __init__.py does not call declare_namespace()! Please fix it."17:50
ildikov_that sphinxcontrib issue seems to be pretty new and sphinxcontrib-docbookrestapi was not updated nowadays as I saw17:52
fungiyeah, not since december17:53
fungii have a theroy...17:53
fungitheory too17:53
funginope, already disproved what i was suspecting17:53
fungiback to the drawing board17:53
*** zns has quit IRC17:55
fungiaha!17:56
fungisetuptools strikes again!17:56
fungisetuptools 3.5 released today17:56
fungihttps://pypi.python.org/pypi/setuptools17:56
ildikov_well, it was included in the error message that check setuptools doc..., so I could have thought immediately17:57
*** wenlock has quit IRC17:57
fungiyeah, but they've had so many releases recently i guess i secretly hoped they'd have settled down finally for a while17:57
ildikov_that pypy gate problem was also a setuptools issue, right? or something close to it17:58
*** etoews_ has joined #openstack-infra17:59
ildikov_as for netifaces it was finally set as <=0.8 to be sure that we allow installing the latest version if it finally seems stable...17:59
*** wenlock has joined #openstack-infra17:59
fungiildikov_: it seemed like it at first, but later turned out to be different setuptools releases causing ordering differences which were sometimes either exposing or hiding the issue. the actual problem we had with pypy testing had to do with some py3k patches backported to pypy in the debian/ubuntu packaging17:59
*** etoews has quit IRC18:00
openstackgerritJoshua Harlow proposed a change to stackforge/gertty: Add a pbr compatible setup  https://review.openstack.org/9196718:01
ildikov_a-ha, I see, I did not follow closely the news about it after the job was set to be non-voting18:02
yfriedfungi: jesusaurus: clarkb: I have some more logstash questions. anyone here to answer?18:04
fungiyfried: maybe. the others grok it a little better than i do, but i may be the only one around18:08
*** mriedem has joined #openstack-infra18:10
fungithat was quick. rackspace got the nodepool.o.o resize back on track18:11
fungifanatical ;)18:11
yfriedfungi: better you. I'm looking for some more details to what you explained befoer18:11
fungilooks like it's rebooting now18:11
ildikov_fungi: \o/ :)18:12
fungiildikov_: oh, it's also possible this is slightly older setuptools differences being exposed by new pip/virtualenv (also released today)18:15
fungiso it may take some more digging to untangle which of those releases (if any) is exposing the issue in sphinxcontrib-docbookrestapi18:16
ildikov_and I naively thought that this tiny little ptach will finally get landed soon...18:17
*** mrodden has joined #openstack-infra18:21
*** etoews_ has quit IRC18:22
*** _nadya_ has joined #openstack-infra18:24
*** andreykurilin_ has quit IRC18:27
*** harlowja_at_home has joined #openstack-infra18:37
harlowja_at_homejeblair, https://review.openstack.org/#/c/91967/ should be much easier to install now18:37
jeblairharlowja_at_home: thanks!  that's great.  i left a couple of suggestions about some imports inline18:44
harlowja_at_homekk18:44
*** _nadya_ has quit IRC18:44
*** bearhands is now known as comstud18:53
*** mfer has joined #openstack-infra18:54
openstackgerritJoshua Harlow proposed a change to stackforge/gertty: Add a pbr compatible setup  https://review.openstack.org/9196718:55
*** mfer has quit IRC18:56
openstackgerritA change was merged to stackforge/gertty: Add a pbr compatible setup  https://review.openstack.org/9196718:58
jeblairharlowja_at_home: woot18:58
harlowja_at_homethx, there u go18:59
harlowja_at_homegood deed for today, ha18:59
jeblairharlowja_at_home: it installs AND can exit!  it's starting to look like a real app!18:59
harlowja_at_homejeblair, btw i noticed u have jeblair@openstack.org as email, how do i get such an email :-P18:59
jeblairharlowja_at_home: well, i work for the foundation19:00
harlowja_at_homehmmm19:00
fungiildikov_: found the fix for https://bitbucket.org/al45tair/netifaces/issue/1/gcc-fails-while-installing-0100-0101 so hopefully if the maintainer agrees it'll show up in netifaces 0.10.219:00
harlowja_at_homedid mark mclain or any others bug u guys about DMARC again, seems to be causing probelms for some (at least at yahoo)19:01
ildikov_fungi: I've just checked my mails a minute ago, nice catch19:01
fungiharlowja_at_home: yeah, a bit. general consensus is that you should not post to technical mailing lists from addresses at corporate mtas or mass hosting grinders which implement strong dmarc enforcement19:03
*** superdan is now known as dansmith19:03
harlowja_at_homefungi,  boo, lol19:03
fungiharlowja_at_home: an incorrect dkim signature is supposed to be treated no differently than a missing one, per the rfc19:04
fungiharlowja_at_home: so while we could consider stripping dkim headers entirely from messages, or munging the sender address to be the listserv, or a number of other unsavory workarounds, i'm unconvinced it's in the best interests of the project to do so19:05
harlowja_at_homefungi,  understood, to u know what other mailing lists are doing (it would seem to be a common issue thats popping up nowadays)19:05
harlowja_at_home*do u know19:05
ildikov_fungi: it seems that the netifaces fix can be ready before getting the quickfix patch landed...19:06
fungiharlowja_at_home: i'd have to go back and pull some specific examples of which lists were doing what to address it, but those were the basic options chosen among them19:07
harlowja_at_homefungi,  np (more just curious)19:07
fungiharlowja_at_home: the dmarc faq has some suggestions... http://dmarc.org/faq.html#s_3 (we could frame any more formal discussion around those if there's interest)19:10
fungibasically it serves as a concise list of the various compromises you, as a list operator, can engage in to cripple your mailing list features in one way or another19:11
harlowja_at_homeintersting19:11
harlowja_at_homefungi, ya, it seems like that :)19:11
*** rhsu has joined #openstack-infra19:11
*** rhsu has quit IRC19:13
harlowja_at_homealthough 3.C there seems the least problematic/intrusive (i guess)19:13
fungiyeah, though the cons are such that i'm not sure i want to have to maintain that solution :/19:14
clarkbuse a gmail address ;)19:14
fungii suppose if there's a plugin for mailman somewhere which takes care of that behind the scenes, then it could be considered19:14
*** rhsu has joined #openstack-infra19:14
harlowja_at_homeclarkb, ya i know, its just a pita to have to do all that :-P19:14
harlowja_at_homebut i guess its a pita all the ways19:16
fungicompanies which implement dmarc and enforce it on their mail gateways are basically making a statement that they don't want to participate in the public e-mail network any longer, and want to stick to using it solely for internal, b2b or mass advertising19:17
*** mriedem has quit IRC19:19
harlowja_at_homefungi, i reason its a little to early to tell; i think it has somewhat good intentions (sender verification and such), but might need a few more iterations to become truely 'correct'19:20
harlowja_at_homebut idk, i'm not really an expert :-P19:21
fungiwell, it's not really verifying senders, it's verifying mailservers, which i think is part of my problem with the whole idea19:22
harlowja_at_homeah, good point, true19:22
fungifrom the earliest vestiges of domainkeys and spf, they were being pushed by the mass-mail hosters to reduce the volume of undeliverable bounces they were getting flooded with because of spoofed spam and joe-jobs19:23
fungidmarc effectively consists of solutions engineered to save mass mail hosters money19:23
*** _nadya_ has joined #openstack-infra19:29
ildikov_fungi: your suggested netifaces fix was just approved by the author so one problem will be solved with a new release soon19:29
fungiildikov_: i saw! though we still need to work out what's doing on with sphinxcontrib-docbookrestapi and the namespace package error. i'll try to recreate that with a more refined test case momentarily19:32
ildikov_fungi: yes, I know, the Murphy factor in this that a new patch should be uploaded for netifaces too as the current one on the gate contains <=0.819:34
*** _nadya_ has quit IRC19:34
fungiyeah, options there are to either ignore that there were a couple of broken netifaces releases the first two days of may, or explicitly append ,!=0.10.0,!=0.10.1 just in case someone ever tries to use those for some reason19:36
ildikov_fungi: you mean checking which latest version can be the cause of that issue?19:37
*** lnxnut has joined #openstack-infra19:37
fungiildikov_: well, first trying to reproduce it simply (could be as easy as trying to install sphinxcontrib-docbookrestapi in a fresh virtualenv)19:38
ildikov_fungi: I would go for the latter one, just to be sure, it does not worth another bug report19:38
fungisounds fine to me19:39
ildikov_fungi: the new version is released, on Monday I can propose a new patch with these limitations19:42
fungiildikov_: the reason i'm somewhat indifferent to those two options is that this wasn't really a "openstack doesn't work with those versions" bug, it was a "those versions are broken and uninstallable on some common platforms" bug19:42
ildikov_fungi: is that requirements gate job the only one that tries to install sphinxcontrib-docbookrestapi?19:43
fungiso i'm fine with whatever option gets picked19:43
fungiildikov_: i'm not sure. that job may be an early warning in this case because it bypasses our pypi mirror, so it's potentially running into behaviors in new releases of things (setuptools, pip, virtualenv) which we aren't running in other jobs (yet)19:44
ildikov_fungi: that sounds reasonable19:45
*** harlowja_at_home has quit IRC19:47
ildikov_fungi: I've just wanted to ask that is there any chance to "filter out" these new version issues somehow :)19:47
*** ArxCruz has joined #openstack-infra19:47
fungiildikov_: we've discussed that at a few summits now, and the consensus has been that by doing that we potentially blind ourselves to waiting problems19:48
fungithe best suggestion i've heard, though nobody's implemented it yet, is to have a reactionary periodic job which can find breakage like this on the already merged (and presumed working) state of projects, automatically opening bugs to alert us19:49
fungiand if possible, diffing the installed package list against previous runs to identify contenders (perhaps with further iterations downgrading one or more of those until the actual culprit is confirmed)19:50
ildikov_fungi: yeap, I was thinking about something similar, but I'm not surprised that nobody has implemented it yet19:52
fungiildikov_: and the pain that we endure from testing the latest releases of so many popular python modules on multiple platforms is actually a great benefit to the wider community19:53
fungibugs get reported upstream in a timely manner, and fixes get implemented hopefully before it actually impacts anyone in a production situation19:54
ildikov_fungi: yes, I was smiling on it today, when you said that not just setuptools was updated recently that there is an already reported bug on a newly released package, now the new release is out19:57
ildikov_fungi: and also there are the new issues already on the gate  on the day of the new release19:58
ildikov_fungi: so our gate does not only test OpenStack itself, which thing I knew, I just wasn't aware that how big the impact is19:59
fungiildikov_: pretty much20:00
fungiildikov_: so on the sphinxcontrib-docbookrestapi front, it's not setuptools 3.5 complaining20:00
*** Ryan_Lane has quit IRC20:00
fungiit's setuptools 3.4.4 (brought in by the new pip 1.5.5) complaining20:00
fungijust confirmed by playing around with a couple of virtualenvs20:01
ildikov_fungi: I saw that version number in the doc, at least setuptools itself was a good guess20:03
fungialso, i've confirmed the nodepool.o.o resize, everything is back up and running cleanly. i'll remove any cruft nodes later once i see which are sticking around and not deleting on their own20:03
*** Ryan_Lane has joined #openstack-infra20:03
*** lnxnut has quit IRC20:04
*** markwash has joined #openstack-infra20:05
ildikov_sounds good :)20:06
fungiand yep, confirmed that earlier setuptools (2.2) was complaining about this for sphinxcontrib-docbookrestapi... http://paste.openstack.org/show/78623/20:08
*** rcarrill` has joined #openstack-infra20:08
fungii wonder if cyril hangs out in any openstack irc channels20:09
ildikov_fungi: nice...20:09
*** luisg_ has quit IRC20:14
ildikov_fungi: I do not know, I had some fixes in another sphinxcontrib extension and discussed the details with dhellmann then20:15
*** rcarrillocruz has quit IRC20:16
fungiildikov_: yeah, i'm just going to take a stab at fixing it and propose a patch, then hunt down cyril since he's the only one who can officially approve patches on that stackforge project (its core reviewer group has but one lonely entry)20:17
ildikov_fungi: yeap, I've just checked it20:19
ildikov_fungi: and here I'm giving it up for today :)20:21
fungi__import__('pkg_resources').declare_namespace(__name__)20:21
fungiin sphinxcontrib/__init__.py20:21
fungithat's all it needed20:21
fungiproposing now20:21
fungihave a good weekend ildikov_!20:21
ildikov_fungi: pretty easy fix :)20:23
ildikov_fungi: have a nice weekend too!20:23
*** rhsu1 has joined #openstack-infra20:24
*** rhsu has quit IRC20:24
fungiso easy, there was already a fix proposed to it over a month ago. perhaps the latest breakage will spur cyril into reviewing/approving it20:27
ildikov_uh, well it seems to be the result of that lonely entry, hopefully it will be extended with at least one more20:33
*** luisg_ has joined #openstack-infra20:33
fungii'll make sure to drum up some noise and get someone at enovance to bring it to his attention20:33
*** andreykurilin_ has joined #openstack-infra20:34
ildikov_fair enough as it blocks the gate now too20:37
openstackgerritMatthew Treinish proposed a change to openstack-infra/devstack-gate: Capture *.failure logs from $BASE/status/stack  https://review.openstack.org/9196520:38
*** ildikov has joined #openstack-infra20:52
*** ildikov_ has quit IRC20:55
sdagueman, it is way too much scrollback here for a saturday21:06
*** markwash_ has joined #openstack-infra21:09
*** markwash has quit IRC21:09
*** markwash_ is now known as markwash21:09
*** mriedem has joined #openstack-infra21:17
*** wenlock has quit IRC21:30
*** ArxCruz has quit IRC21:31
*** ArxCruz has joined #openstack-infra21:37
*** ArxCruz has quit IRC21:37
*** praneshp has joined #openstack-infra21:40
*** markwash has quit IRC21:41
openstackgerritMatthew Treinish proposed a change to openstack-infra/devstack-gate: Capture *.failure logs from $BASE/status/stack  https://review.openstack.org/9196521:57
*** yamahata has quit IRC22:13
*** yamahata has joined #openstack-infra22:15
*** wenlock has joined #openstack-infra22:29
*** _nadya_ has joined #openstack-infra22:35
*** andreykurilin_ has quit IRC22:38
*** _nadya_ has quit IRC22:39
*** andreykurilin_ has joined #openstack-infra22:39
jeblairfungi: ping22:42
jeblairfungi: i see you have already resized nodepool.  thanks!22:44
*** dripton has quit IRC22:48
fungijeblair: i have--anything else? travel going well?22:49
jeblairnope, just checking in to see if i could help with that22:49
fungimostly been beating my head on gate bugs today, not really infra-related22:49
jeblair(i'm traveling on monday)22:50
fungioh, cool. well, enjoy your weekend in that case!22:50
jeblairthanks, you too (but if you're working on gate bugs, i'm starting to wonder... ;)22:51
funginah, about to hack some more on evacuating virtual machines from my basement to a service provider so i don't have to take all this beat-up old hardware with me to the outer banks in a month22:53
*** sweston has quit IRC22:57
*** ArxCruz has joined #openstack-infra23:03
*** sweston has joined #openstack-infra23:04
*** andreykurilin_ has quit IRC23:05
*** changbl has quit IRC23:05
*** zhiyan_ is now known as zhiyan23:07
*** ArxCruz has quit IRC23:08
*** ArxCruz has joined #openstack-infra23:09
*** rhsu1 has quit IRC23:12
*** andreykurilin_ has joined #openstack-infra23:13
*** praneshp has quit IRC23:14
*** dripton has joined #openstack-infra23:19
*** changbl has joined #openstack-infra23:24
*** morganfainberg_Z is now known as morganfainberg23:28
*** zhiyan is now known as zhiyan_23:28
*** Ryan_Lane1 has joined #openstack-infra23:40
*** andreykurilin_ has quit IRC23:44

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