/srv/irclogs.ubuntu.com/2010/09/21/#launchpad-reviews.txt

=== matsubara is now known as matsubara-afk
stublifeless: You might be interested in reviewing https://code.edge.https://code.edge.launchpad.net/~stub/launchpad/cronscripts/+merge/36005 -- cronscript oops stuff we discussed and some delinting noise.03:38
lifelesswhat was  LibrarianFormatter for ?03:39
stublifeless: Instead of spitting out exceptions to stderr, it stored them in the Librarian and spat out a URL. For a while some of the batch jobs where insanely noisy and this made them slightly more readable.03:49
lifelesskk03:50
lifelessCrashScript has huge vertical whitespace03:51
lifelesscould you compact it a little?03:52
stubk03:53
lifelessI only ask cause I couldn't really read it without my eyes rolling back in their sockets03:55
thumperlifeless: there is also https://code.edge.launchpad.net/~thumper/launchpad/branch-distro-set-old-mature/+merge/36095 if you'd like to approve another trivial branch04:18
lifelessline 30, the extra vws weirds me04:20
lifelessup to you04:20
thumperlifeless: are you vws phobic?04:31
* wgrant likes LibrarianFormatter.04:32
wgrantIt's handy until Soyuz gets fixed.04:32
lifelessthumper: no, but it often makes things harder to read04:32
lifelessthumper: my rule of thumb is that if I need vws I need a new function04:32
lifelessthumper: but its a shallow thing - I don't fundamentally care; I'll make it look how I prefer when I touch something, but really, anything goes.04:32
=== Ursinha is now known as Ursinha-zzz
thumper:)04:40
stubwgrant: I can leave it if it is useful. I didn't think anyone liked it any more.04:52
wgrantstub: It's still useful for people to see it in Soyuz upload logs.04:53
wgrantSince Soyuz can be a bit harsh sometimes.04:53
stubhttps://bugs.edge.launchpad.net/launchpad-foundations/+bug/64110304:55
_mup_Bug #641103: LibrarianFormatter should die <Launchpad Foundations:Triaged> <https://launchpad.net/bugs/641103>04:55
thumpermwhudson: interested in the branch-distro script change to avoid the scan/06:14
thumper?06:14
thumpermwhudson: it is surprisingly small06:14
mwhudsonthumper: sure06:15
* thumper gets it ready06:16
* thumper sighs06:17
thumperother test failures06:17
thumperdue to my groovey new code06:17
thumperwhich now assumes real database data06:17
mwhudsonheh06:18
mwhudsonthere are some rather extreme fakes in the tests for branch-distro iirc06:18
* thumper is rerunning the tests06:19
* thumper forgot -v06:19
thumperit is snowing again06:20
mwhudson!06:20
mwhudsonvery pleasant day in wellington today06:20
thumperw00t06:20
thumperall passing again06:20
thumpermwhudson: https://code.edge.launchpad.net/~thumper/launchpad/branch-distro-avoid-scan/+merge/3610306:24
thumpermwhudson: I'm going to help with dinner, feel free to leave comments, and I'll look later06:26
mwhudsonthumper: ok06:27
=== StevenK changed the topic of #launchpad-reviews to: On call: - || Reviewing: - || queue: [StevenK] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== noodles775 changed the topic of #launchpad-reviews to: On call: - || Reviewing: - || queue: [StevenK, noodles775] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== bigjools is now known as bigjools-afk
=== gmb changed the topic of #launchpad-reviews to: On call: gmb || Reviewing: - || queue: [StevenK, noodles775] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== gmb changed the topic of #launchpad-reviews to: On call: gmb || Reviewing: noodles775 || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
bryceh On call: gmb || Reviewing: noodles775 || queue: [bryceharrington]  || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews10:43
=== bryceh changed the topic of #launchpad-reviews to: On call: gmb || Reviewing: noodles775 || queue: [bryceharrington] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
noodles775Thanks gmb10:47
gmbnoodles775, r=me; one change needed and one slight refactoring requested.10:48
noodles775Thanks gmb, I'll take a look.10:48
=== gmb changed the topic of #launchpad-reviews to: On call: gmb || Reviewing: bryceh || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
gmbbryceh, lp-617679-code, right?10:49
noodles775gmb: with makeLaunchpadService(), why not just put it in TestCaseWithFactory? (ie. is there a reason why I should have to think about a separate subclass etc. when adding an API test?)11:11
gmbnoodles775, Well, if you added a WebServiceTestCase, you could also set its layer to AppServiceLayer by default. Other than that, though, there's no reason not to just put it in *WithFactory.11:12
lifelessgmb: why do you need a WebServiceTestCase11:12
gmblifeless, You don't. It would save people from having to re-do what noodles775 did in one of his test cases for the webservice, but it was just an idea. As noodles775 said, might as well add his makeLaunchpadService() method to TestCaseWithFactory,.11:13
lifelessI haven't seen the code, but unless it also uses factory methods, why not just have it standalone ?11:14
gmbThat would also work. noodles775, can you confirm that that's doable?11:16
noodles775It does use factory.makePerson currently.11:17
noodles775But sure, it could go in lp.testing._webservice.py11:20
lifelessif its using factory.makePerson it should be on the factory11:20
gmbD'OH.11:23
gmbI blame lack of caffeine for my not spotting the blindingly obvious.11:24
=== gmb changed the topic of #launchpad-reviews to: On call: gmb || Reviewing: - || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
gmbnoodles775, So, as has been said, that method should be on the factory, not on some other TestCase.11:37
noodles775Yep, I'll move it to the factory.11:37
gmbCool.11:39
* gmb grabs a drink; bbiab11:39
=== gmb changed the topic of #launchpad-reviews to: On call: gmb || Reviewing: thumper || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== gmb changed the topic of #launchpad-reviews to: On call: gmb || Reviewing: - || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== mrevell is now known as mrevell-lunch
=== gmb changed the topic of #launchpad-reviews to: On call: gmb || Reviewing: lunch || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== mars changed the topic of #launchpad-reviews to: On call: gmb, mars || Reviewing: lunch, Ursinha || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== bigjools-afk is now known as bigjools
=== mrevell-lunch is now known as mrevell
=== gmb changed the topic of #launchpad-reviews to: On call: gmb, mars || Reviewing: -, Ursinha || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
gmbMorning mars14:00
marsMorning gmb!14:00
gmbmars, I have one for your queue. https://code.edge.launchpad.net/~gmb/launchpad/bug-644346/+merge/3614314:38
=== gmb changed the topic of #launchpad-reviews to: On call: gmb, mars || Reviewing: -, Ursinha || queue: [gmb] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
gmbNice and small.14:38
marsgmb, thanks14:38
=== jcsackett changed the topic of #launchpad-reviews to: On call: gmb, mars || Reviewing: -, Ursinha || queue: [gmb, jcsackett] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
jcsacketthello, mars and gmb.14:58
jcsacketthttps://code.edge.launchpad.net/~jcsackett/launchpad/series-need-usage-attributes-643902/+merge/36145 could use a review, when you have time.14:58
gmbjcsackett, I'll take a look shorly.14:59
gmb*shortly14:59
marsjcsackett, I have two in the queue before that14:59
marsthanks gmb14:59
jcsackettgmb, thanks. :-)14:59
=== gmb changed the topic of #launchpad-reviews to: On call: gmb, mars || Reviewing: jcsackett, Ursinha || queue: [gmb] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
* gmb grabs a drink first14:59
gmbjcsackett, On line 177 you say "# If translations_usage is set for the Product, respect it" but then you reference self.distribution.translations_usage. I'm assuming you need to s/Product/Distribution in the comment.15:10
jcsackettgmb: you're correct. making the change.15:11
gmbSame on line 24115:11
gmbjcsackett, You need to add some comments or docstrings to the start of your tests explaining what they test (you should phrase this as a statement of expected behaviour, e.g. "The frobnob goes boing." rather than "Test that the frobnob goes boing."15:12
gmbOther than that, r=me.15:13
=== gmb changed the topic of #launchpad-reviews to: On call: gmb, mars || Reviewing: -, Ursinha || queue: [gmb] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
jcsackettgmb: you got it; i'll make those changes.15:14
jcsackettthanks a lot!15:14
=== leonardr_ is now known as leonardr
abentleyrockstar, could you review https://code.edge.launchpad.net/~abentley/launchpad/incremental-diff-driveby/+merge/36156 please?16:06
rockstarabentley, sure.16:08
abentleyrockstar, thanks.16:08
rockstarabentley, is any of that lint legitimate?16:09
abentleyrockstar, I don't think so, but I'm open to other opinions.16:09
rockstarabentley, it looks like the first one, line 715 of ./lib/lp/code/interfaces/branchmergeproposal.py, might be.16:09
=== gmb changed the topic of #launchpad-reviews to: On call: mars || Reviewing: -, Ursinha || queue: [gmb] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
abentleyrockstar, AFAICT, there are two blank lines above notify_modified.16:11
rockstarabentley, yeah, I looked. WTF.16:11
abentleyrockstar, I think it's because the comment is there, but if that's the reason, it should say "found 0".16:12
=== benji is now known as benji-lunch
henningedanilos: https://code.edge.launchpad.net/~henninge/launchpad/recife-poimport/+merge/3616517:26
daniloshenninge, thanks, can you please find someone else as a reviewer if you are in a hurry to get some rest because I am chasing that nasty bug you filed :)17:27
henningedanilos: ok17:28
henningedanilos: that is a good excuse ;-)17:28
henningeunfortunately it's oversized17:29
=== salgado is now known as salgado-lunch
=== gary_poster is now known as gary-lunch
=== gmb changed the topic of #launchpad-reviews to: On call: mars || Reviewing: Ursinha || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== matsubara is now known as matsubara-lunch
=== Ursinha is now known as Ursinha-lunch
=== sinzui changed the topic of #launchpad-reviews to: On call: mars || Reviewing: Ursinha || queue: [sinzui] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
sinzuimars I added a large branch to your queue. While most the the branch are deletes, It still looks scary. I can get EdwinGrubbs or bac to do it tomorrow if you do not have time18:10
marssinzui, I'll take it18:20
=== benji-lunch is now known as benji
=== mars changed the topic of #launchpad-reviews to: On call: mars || Reviewing: sinzui || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== deryck is now known as deryck[lunch]
marsderyck[lunch], ping when you return19:02
=== gary-lunch is now known as gary_poster
=== matsubara-lunch is now known as matsubara
=== Ursinha-lunch is now known as Ursinha
=== mars changed the topic of #launchpad-reviews to: On call: mars || Reviewing: - || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== salgado-lunch is now known as salgado
=== deryck[lunch] is now known as deryck
deryckhi mars19:40
marshi deryck19:41
marsderyck, I have a review here from mbp where he asks for a careful review and some advice on testing his mail handling code.19:42
marsderyck, I was wondering if someone on your team would have knowledge in that domain that could help Martin out?19:42
marsderyck, it is some work he did on the DKIM code: https://code.edge.launchpad.net/~mbp/launchpad/dkim/+merge/3598519:43
deryckmars, perhaps gmb or allenap.  But the code team should have some expertise there, too. abentley wrote BaseMailer, I believe.19:43
marsderyck, great. thank you for the help19:44
derycknp19:44
=== mars changed the topic of #launchpad-reviews to: On call: mars || Reviewing: - || queue: [jml] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== mars changed the topic of #launchpad-reviews to: On call: mars || Reviewing: - || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
marsStevenK, I am going to save jml's review for you.  It moves code, so no need to balk at the line-count :)19:56
=== mars changed the topic of #launchpad-reviews to: On call: mars || Reviewing: - || queue: [jml] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== mars changed the topic of #launchpad-reviews to: On call: mars || Reviewing: - || queue: [[open],jml] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== mars changed the topic of #launchpad-reviews to: On call: mars || Reviewing: - || queue: [jml] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
abentleyrockstar, could you please review https://code.edge.launchpad.net/~abentley/launchpad/safe-delete-recipe-build/+merge/36195 ?  I think you'll like it.20:08
rockstarabentley, sure.20:42
abentleyrockstar, how about this? https://code.edge.launchpad.net/~abentley/launchpad/upload-failure-email-log/+merge/3620521:09
abentleyrockstar, mercy buckups.21:35
rockstarabentley, no problem.  Thanks for fixing that.21:35
mwhudsonthumper: sorry for not reviewing branch-distro-avoid-scan yesterday, i don't know how i managed to forget about it21:59
thumpermwhudson: np, it isn't super urgent21:59
thumpernot critical that is21:59
abentleythumper, incremental diff screenshot: http://people.canonical.com/~abentley/Screenshot-5.png22:03
thumperabentley: do we record the (from, to) revno pairs/22:04
thumperabentley: it'd be nice to see a heading on that block22:04
thumperperhaps saying something like "Incremental diff from revno 123 - 130"22:05
thumpermaybe22:05
abentleythumper, no, we don't record revnos.  We record the revisions.22:05
thumperyay, another reason for the branch revision table22:05
thumperabentley: skype?22:05
abentleythumper, sure.22:06
thumperabentley: no headphones22:07
=== mars changed the topic of #launchpad-reviews to: On call: - || Reviewing: - || queue: [] || This channel is logged: http://irclogs.ubuntu.com/ || https://code.launchpad.net/launchpad/+activereviews
=== matsubara is now known as matsubara-afk
=== salgado is now known as salgado-afk

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