/srv/irclogs.ubuntu.com/2011/05/12/#launchpad-dev.txt

LPCIBotYippie, build fixed!00:00
LPCIBotProject db-devel build #539: FIXED in 5 hr 15 min: https://lpci.wedontsleep.org/job/db-devel/539/00:00
LPCIBotProject windmill-db-devel build #266: STILL FAILING in 2 min 0 sec: https://lpci.wedontsleep.org/job/windmill-db-devel/266/00:02
wgrantNCommander: SoyuzTestPublisher is deprecated in favour of the factory.00:04
LPCIBotProject db-devel build #540: FAILURE in 2 min 1 sec: https://lpci.wedontsleep.org/job/db-devel/540/00:04
wgrantHmm, db-devel is fairly borked.00:42
lifeless417 /   66  CodeImportSchedulerApplication:CodeImportSchedulerAPI02:38
lifelesshmm02:38
wgrantPossibly related to the network glitches last night.02:39
wgrantNot sure if we know exactly what happened yet.02:39
lifelessnetwork glitches?02:39
lifelessgrrr tsearch2 indices are painful02:40
wgrantWe had unexplained high queue depth and 502s, and other rather suspicious unexplained OOPSes. There was suggestion that unknown network issues were the culprit.02:40
lifelessthats the second time in a fortnight02:40
lifeless4 second queries on codeimportjob02:48
StevenKRight, rabbit sucks.03:01
StevenKI can't get it to start on the Jenkins build slaves03:01
wgrantIt should be happy enough as long as it can resolve its local node name.03:02
wgrantPossibly both ways.03:02
LPCIBotProject windmill-devel build #65: STILL FAILING in 1 hr 7 min: https://lpci.wedontsleep.org/job/windmill-devel/65/03:04
StevenKForcing the hostname to localhost:03:07
StevenKroot@localhost:~# /etc/init.d/rabbitmq-server start03:07
StevenKStarting rabbitmq-server: FAILED - check /var/log/rabbitmq/startup_log, _err03:07
StevenKrabbitmq-server.03:07
=== Ursinha-afk is now known as Ursinha
StevenKwgrant: Did your distinct on branch of awesome land?04:10
wgrantStevenK: Not yet reviewed by Stormers.04:11
StevenKI thought lifeless self-reviewed his last few storm branches, TBH04:11
LPCIBotProject windmill-db-devel build #267: STILL FAILING in 1 hr 7 min: https://lpci.wedontsleep.org/job/windmill-db-devel/267/04:11
lifelessStevenK: no04:30
lifelessStevenK: I'm not in the review group for storm04:30
lifelessStevenK: we're running a fork because the patch for WITH is kindof stalled04:30
=== almaisan-away is now known as al-maisan
=== cinerama_ is now known as cinerama
StevenKBah, my evil plan of using sets isn't working05:44
wgrantOh?05:45
StevenKOh, bah!05:46
StevenKThe overrides return the DAS, but the input is the archtag05:46
wgrantThat may or may not be correct.05:46
wgrantYou'll note that publishBinaries calculates the DAS itself from the old archtag at the moment. Consider how you are going to refactor that area when you decide what you need to return from the overrides.05:47
LPCIBotProject devel build #710: STILL FAILING in 5 hr 28 min: https://lpci.wedontsleep.org/job/devel/710/06:26
jtvDoes a feature flag's default value have to be a string?  Or am I dangerously close to suggesting a full type system for feature flags?06:46
lifelessits a string06:47
lifelessthey have not defaults06:47
lifelessif not present in the system, you will get back None06:47
lifelessthey can be set explicitly to ''06:47
jtvThey have not defaults?06:47
jtvIt'd be nice if I could make more sense of the code + comments.06:48
jtvThere's a suggestion that there are defaults.06:48
jtvIs the "default value" part of flag_info just documentation of what the code will assume you mean if no value is set then?06:49
lifelessyes06:50
lifelessdefault behaviour06:50
lifelessnot default value06:50
jtvI see.  I'll drop that into the comment then.06:50
lifelessall you need to do is06:50
lifelessvalue = get_feature_flag('...')06:50
lifelessif not value: value = '100'06:51
lifelesstry:06:51
lifeless    limit = int(value)06:51
lifelessexcept ValueError:06:51
lifeless    limit = 10006:51
LPCIBotProject windmill-db-devel build #268: STILL FAILING in 1 hr 7 min: https://lpci.wedontsleep.org/job/windmill-db-devel/268/06:51
lifelesshmm, can just drop the if not value: value = '100' from my sketch, its not needed.06:51
jtvlifeless: ironically, I think that is _to the letter_ what I have in my code.06:51
jtvAh no, apart from the ValueError because I wasn't sure about None vs. empty string.06:52
jtvBut variable name: check.  Flag type: check.  Default value: check.  All as in my branch.  Had you been reading it?06:52
lifelessnope :)06:52
jtvHeh06:52
jtvBy the way, I _think_ there's no firm guarantee about whether an unset value is an empty string or a None.  Or at least, that seems to have been a driving consideration in how boolean checks work.06:53
jtvint(None) -> TypeError, in fact06:54
wgrantAn unset value is None. An empty value is ''06:54
jtvwhereas int('') -> ValueError06:54
jtvArgh.06:54
wgrantYes06:54
jtvI am sorely tempted to make these things typed and build defaults into the descriptor mechanism.06:54
jtv(By the way, I'm adding an "int" domain)06:55
lifelessI'd rather we didn't.06:56
lifelessthis is currently very lean; I'd hate for it to become less lean.06:56
lifelessI'd be fine with helper functions to do 'get me an int with a default for missing or invalid of 100'06:57
jtvDoes the default behaviour document only what the code will do if the flag is not specified?  Or what the code will do if the flag is either not specified or given an empty value?06:57
lifelessjtv: not specified06:57
lifelessan empty value is a value06:57
jtvOK... FWIW: just trying to get the assumptions for my comments right, not mapping out a type system. :)06:57
=== al-maisan is now known as almaisan-away
jtvlifeless: would you concur with these documentation updates?  https://dev.launchpad.net/FeatureFlags?action=diff07:09
lifelesss/"not specified" / None07:16
lifelessand drop the then redundant Reading the flag's value will then return None.  sentence07:16
lifelessjtv: other than that its great07:17
jtvI wanted to avoid implying that A Flag Has A Value, when actually the relationship is more complex.07:18
jtvQ: "Are you Johnny (The Fingers) Carlsted" -- A: "Who wants to know?"07:19
wgrantTwo tiny reviews, if anyone is interested: https://code.launchpad.net/~wgrant/launchpad/question-api-fixes/+merge/60465 and https://code.launchpad.net/~wgrant/launchpad/bug-348996/+merge/6061207:19
jtvwgrant: I'll take the first07:19
wgrantThanks jtv.07:20
jtvlifeless: that's right, isn't it?  A flag doesn't so much have a value as produce a value from the rules that apply at the moment you're reading it?07:20
jtvwgrant: by the way there is (was?) a fast way of testing launchpadlib, but it sort of broke down where the type system was concerned.  Or rather, it became object-oriented where the WADL prefers the rigid, compiled-language-style class orientation that the world has moved away from.07:22
lifelessjtv: the value in a particular request is a result of a lookup yes07:24
lifelessjtv: but at any point, get_...('..') does evaluate to one and only one value07:24
lifelesswhich might be None07:24
jtvlifeless: yes, I'm sure that's correct but I didn't want to imply something that will set the wrong expectations once things get more advanced.07:25
wgrantThanks lifeless, jtv.07:25
lifelessjtv: I don't see this changing TBH07:25
jtvlifeless: what changing?07:25
lifeless'once things get more advanced.'07:26
lifelessthe only change I expect to happen vis-a-vis flags is exposing them inernally for codehosting etc to lookup07:26
lifeless(without db access)07:26
jtvYou misunderstand me.07:26
jtvI mean once the discussion of the topic gets more advanced.07:26
lifelessoh07:26
lifelessI'd aim for directness07:27
jtvI don't want to sort-of-imply that there is a simple 1:1 relationship between features and flags if you then need to overcome that misleading impression later on.07:27
lifelessflags and values perhaps07:28
jtvSorry, yes.07:28
lifelessfeatures and flags is a whole other discussion07:28
jtvI meant flags and values.07:28
=== henninge is now known as henninge-bbl
jtvlifeless: hope I didn't miss anything.  Anyway, if I were to say "if the value is not specified," that would slightly confuse the matter of "a value may be specified but not apply."  I'm wide open to more direct phrasings, but I like to avoid that sort of subtle accidental misdirection.07:35
LPCIBotProject db-devel build #541: STILL FAILING in 5 hr 26 min: https://lpci.wedontsleep.org/job/db-devel/541/07:36
LPCIBotProject windmill-devel build #66: STILL FAILING in 1 hr 10 min: https://lpci.wedontsleep.org/job/windmill-devel/66/07:37
lifelessjtv: I don't think thats misdirection07:41
lifelessimplicit in any discussion of value is the flag->rules->value mapping07:41
lifelesswhich should happen first07:41
jtvlifeless: you're right--I'm describing values right after you introduce that concept, so that's not an issue here.07:43
NCommanderwgrant: Ahhh!, now it makes sense, although I'm not seeing a test that uses the factory method07:43
jtvwgrant: you up for a similarly small review?  https://code.launchpad.net/~jtv/launchpad/ff-780319/+merge/6073107:45
jtvlifeless: I'll update it.07:45
wgrantjtv: So the flag already exists and has a default of 100?07:47
jtvwgrant: well... in a branch I'm currently landing.07:47
wgrantSure.07:47
wgrantjtv: Done. StevenK, could you mentor?07:50
jtvwgrant: ah, didn't realize you weren't fully hatched yet.  Thanks though.07:50
StevenKwgrant: Sure.07:51
* wgrant is yet to evolve.07:51
StevenKwgrant, jtv: Done07:52
wgrantThankyou sir.07:52
jtvThanks both!07:52
jtvMy comment: "I considered assimilating them, but I don't believe the display of these domain descriptions gives much of a clue so I thought it'd be nice to have just one verbose description in there.  Two would have been overkill though."07:53
jtvIs that acceptable?07:53
wgrantjtv: I wasn't favouring one over the other. Your reasoning is sound, too.07:54
jtvThanks.07:54
bigjoolsgood morning from Luton airport.  Good job I didn't pack razor blades, I might need to use them on my wrists.08:05
wgrantOh?08:06
bigjoolsLuton is the armpit of the world08:07
=== henninge-bbl is now known as henninge
LPCIBotProject windmill-devel build #67: STILL FAILING in 45 min: https://lpci.wedontsleep.org/job/windmill-devel/67/08:22
=== rvba_ is now known as rvba
adeuringgood morning08:36
henningeHi adeuring!08:55
henningeadeuring: there is the UDS session about translation sharing starting in 5. Do you mind to join?08:55
henningeadeuring: #ubuntu-uds-krudy08:56
henningeadeuring: audio at http://icecast.ubuntu.com:8000/08:56
mrevellGoodly morning09:01
=== almaisan-away is now known as al-maisan
adeuringhenninge: sorry, missed your message...09:46
lifelessstub: can we catch up tomorrow?10:29
stublifeless: sure10:29
lifelesscool10:29
lifelessnn folks10:29
stubsweet dreams10:29
NCommanderafternoon all10:30
lifelessstub: https://dev.launchpad.net/ArchitectureGuide/Services#preview is coming together10:30
* NCommander is really feeling pretty lost w.r.t. to LaunchpadObjectFactory ...10:32
NCommanderCan I do LPCONFIG=testrunner make run to load the database used by tests? I'd like to see the state of the LP database after running through my test10:49
lifelessNCommander: the test db is reset at the end of the test10:53
NCommanderlifeless: would sticking stop() in work?10:53
NCommanderor preventing cleanup? :-/10:53
* NCommander was readinghttps://dev.launchpad.net/Debugging but thats mostly for page tests :-/10:55
=== al-maisan is now known as almaisan-away
stubNCommander: make harness PGDATABASE=launchpad_ftest_playground works. make run PGDATABASE=launchpad_ftest_playground likely works too.11:14
NCommanderstub: I managed to get it working bybreaking into PDB, then running with the same LPCONFIG environment variable used by the test11:14
stub(abusing features of libpq)11:15
* NCommander has a wonderfully generic Distroseries90786 :-)11:15
NCommanderstub: thanks though, that's handy for future refernece11:16
NCommanderlifeless: wgrant: does this look sane so far? http://paste.ubuntu.com/606461/11:38
NCommander(it looks correct in the webui)11:38
LPCIBotProject windmill-devel build #68: STILL FAILING in 1 hr 18 min: https://lpci.wedontsleep.org/job/windmill-devel/68/11:49
jkakarYay, we (Fluidinfo) can view milestone pages again.  Thanks! :)11:53
wgrantjkakar: You use projectgroup milestones?11:53
jkakarwgrant: Yes.11:54
jkakarwgrant: It's probably the most useful bug-related view for me in Launchpad.11:54
jkakarActually, I use an lp:kanban based view much more than I use milestones now... in fact, I rarely look at milestone views now.11:56
wgrantI find project milestone views to be very handy.11:56
wgrantBut we don't use the project group much any more.11:56
jkakarlp:kanban doesn't provide as much detail as the milestone view in some ways, like bug counts by status, milestone due date and some other bits.11:56
wgrantSince the merge.11:57
jkakarYeah, makes sense.11:57
jkakarWe use milestones as a way to have a view of work we are doing (or want to do) during our 4 week iterations.11:57
wgrantIt's just about the closest thing LP has to a dashboard.11:57
jkakarWe have 5 or 6 projects in a project group, so the project group milestone view is important for us.11:58
wgrantRight.11:58
jkakarwgrant: Yep, exactly.11:58
jkakarwgrant: I've thought about adding the missing details from the milestone view to lp:kanban but I try to be very careful about what gets added to the board... I want it to be as simple as possible and to avoid clutter.11:58
wgrantNCommander: I'm not sure why you're explicitly creating ProcessorFamilies, but that looks like a good start.11:58
=== henninge is now known as henninge-lunch
NCommanderwgrant: That's how it was handled in some of the other examples, but I've been ripping apart things so I suspect those can die12:00
NCommanderwgrant: my next challenge is figuring out how to use NascentUpload to put files into my archive12:00
wgrantNCommander: You don't want to use NascentUpload.12:00
wgrantNCommander: The factory provides methods to create the objects directly.12:00
=== almaisan-away is now known as al-maisan
wgrantarchiveuploader is some of the oldest and least pretty code in LP. Avoid it if at all possible -- and it is completely possible here.12:01
NCommanderwgrant: don't tihnk that's going to work the way I want to because I want to have properly arch-all/any dependency info and single source/multiple binaries12:01
wgrantNCommander: NascentUpload is Launchpad code, and it achieves that. Therefore you can do the same thing in a test.12:02
wgrantWithout the abomination.12:02
* NCommander feels the descent into madness12:02
wgrantNCommander: You probably want to makeBinaryPackageBuild, then use makeBinaryPackageRelease to attach your various binaries to it.12:03
NCommanderI'm thinking I need to start with a source package in there somewhere12:03
wgrantmakeBinaryPackageBuild will create a SourcePackageRelease on which to base the build.12:04
wgrantI'm not sure you care about the source, do you?12:04
NCommanderi do12:04
wgrantWhat about it do you care about?12:04
NCommanderI'm caring about dependency relationships here, which is why I want to upload actual packages12:04
NCommanderMaking sure there's a way to retain the arch-any/arch-all bits when half a package gets superseede12:05
wgrantWhy do you think uploading actual packages would be better?12:05
wgrantWhat does that achieve that you cannot do in Python?12:05
NCommanderIt means that I can simply get the data from the package itself instead of feeding out the entire relationships in LP functions. ideally, my test case woudl actually parse the resulting binary-* files to make sure teh skew is avoided, but I've been told thats too resource intesive12:06
wgrantEnd-to-end tests like that are ugly, really slow, difficult to write, difficult to read, difficult to change, unobvious, make the rest of the system inflexible, and provide negligible benefit.12:07
NCommanderwgrant: looking at the makeBinary stuff, I don't have a way to make multiple binaries off a source record sanely12:09
* NCommander is still reading12:09
wgrantNCommander: You can pass one BinaryPackageBuild into multiple makeBinaryPackageRelease calls.12:10
NCommanderIf you say its difficult to do, I'll default to you, but I generally consider a test invalid unless it tests end to end IMHO12:10
wgrantThere need to be some end-to-end tests, but for edge cases like this they are not appropriate.12:11
NCommanderfair enough12:12
* NCommander is not looking forward to setting up soyuz fully locally so I can manually examine the edge case12:12
NCommanderer, output12:12
NCommanderbrain == goo12:12
NCommanderlunch time12:12
wgrantNCommander: There's fairly good instructions for that now :)12:13
LPCIBotProject devel build #711: STILL FAILING in 5 hr 32 min: https://lpci.wedontsleep.org/job/devel/711/12:23
StevenKallenap: O hai. Are you fine to OCR?12:34
allenapStevenK: Yes, but I have to go in a few minutes. I can do it when I get back.12:35
StevenKallenap: https://code.launchpad.net/~stevenk/launchpad/generic-overrides/+merge/60730 when you're ready12:35
allenapStevenK: Cool.12:36
henninge-lunchautTnf-212:53
=== mrevell is now known as mrevell-lunch
LPCIBotProject db-devel build #542: STILL FAILING in 5 hr 29 min: https://lpci.wedontsleep.org/job/db-devel/542/13:05
LPCIBotProject windmill-db-devel build #269: STILL FAILING in 1 hr 15 min: https://lpci.wedontsleep.org/job/windmill-db-devel/269/13:05
benjijcsackett: are you OCR today?13:27
LPCIBotProject windmill-devel build #69: STILL FAILING in 1 hr 7 min: https://lpci.wedontsleep.org/job/windmill-devel/69/13:31
=== mrevell-lunch is now known as mrevell
=== vila is now known as vila-afk
benjiwow, I won a Macbook Air: https://bugs.launchpad.net/launchpad/+bug/123413:55
_mup_Bug #1234: Gina is an unmaintainable mess of command line options, environment variables and shell scripts <lp-foundations> <Launchpad itself:Fix Released by debonzi> < https://launchpad.net/bugs/1234 >13:55
deryckMorning, all.13:59
=== jcsackett changed the topic of #launchpad-dev to: https://dev.launchpad.net/ | On call reviewer: jcsackett | https://code.launchpad.net/launchpad-project/+activereviews
jcsackettbenji: just went on shift. :-)14:01
benjijcsackett: cool, here's a small one to get warmed up: https://code.launchpad.net/~benji/launchpad/fix-generated-html/+merge/6069714:02
jcsackettbenji: r=me. shame we need the hack, but at least it's a well done hack. :-)14:09
LPCIBotProject windmill-devel build #70: STILL FAILING in 45 min: https://lpci.wedontsleep.org/job/windmill-devel/70/14:17
=== vila-afk is now known as vila
adeuringallenap: are ou doing reviews today?14:26
allenapadeuring: Yes, I'll fix the topic.14:27
=== allenap changed the topic of #launchpad-dev to: https://dev.launchpad.net/ | On call reviewer: jcsackett, allenap | https://code.launchpad.net/launchpad-project/+activereviews
adeuringallenap: cool, I have a small mp: https://code.launchpad.net/~adeuring/launchpad/bug-739075-2/+merge/60768 could you habe a look at it?14:27
allenapadeuring: Okay, cool.14:28
adeuringthanks!14:28
adeuringallenap: thanks for your review!14:43
allenapadeuring: Thank you for an easy one :)14:43
=== Ursinha is now known as Ursinha-afk
LPCIBotProject windmill-devel build #71: STILL FAILING in 44 min: https://lpci.wedontsleep.org/job/windmill-devel/71/15:01
deryckgah.  try to fix one critical js bug and I'm sucked into qa blackhole for subscriptions.15:09
jcsackettallenap: can you take a look at https://code.launchpad.net/~jcsackett/launchpad/spam-tech-debt/+merge/60794 ?15:12
jcsackettit's quite a bit shorter than the diff implies--mostly code deletes and replaced in one spot.15:12
benjideryck: anything I can do to help?15:20
deryckbenji, no, it's my own stupidity.  thanks, though.15:20
deryckbenji, if you see bugs against the story about the subscription overlay, it's just me cleaning up my mess.15:20
benjiok :)15:20
deryckI'm really not trying to nosy my way into the Yellow Squad work :-)15:21
allenapjcsackett: Sure.15:24
allenapjcsackett: I'm doing a review for StevenK right now, but after that.15:24
=== fjlacoste is now known as flacoste
jcsackettallenap: no rush. it's just simplifying some tests. meant to get it in for review yesterday but completely forgot about it.15:25
=== al-maisan is now known as almaisan-away
pooliebigjools: hi?15:41
bigjoolspoolie: hey15:41
pooliehi15:42
pooliei'm trying to fix bug 77843715:42
_mup_Bug #778437: Recipe build success sends emails, please stop doing that <email> <recipe> <Launchpad itself:In Progress by mbp> < https://launchpad.net/bugs/778437 >15:42
bigjoolsok15:42
pooliei'm trying to work out how mail gets sent after a successful sprb15:42
pooliethere is an existing test that seems to assert that mail is not sent15:43
pooliein fact it is sent15:43
bigjools!15:43
bigjoolsis the mail as a result of the upload, or the build?15:43
poolieSourcePackageRecipeBuild._handleStatus_OK15:44
bigjoolsIYSWIM15:44
* bigjools looking15:44
poolietries to send mail on status=FULLYBUILT15:44
pooliehowever15:44
poolieafaics that method is only ever reached with the packgae in UPLOADING15:45
poolieistm the mail ought to be sent after the build not the upload15:45
pooliehm15:45
poolieno, the example on the bug shows mail is sent on the source upload too15:46
bigjoolsyou could remove the self.notify() in _handleStatus_OK and see what tests break15:48
bigjoolsI also remember reviewing some code that sent email from the uploads15:48
poolienothing breaks :)15:49
pooliei'd be happy to just delete it,15:49
pooliebut it does seem like there's a gap in test coverage15:50
poolieand perhaps that won't actually suppress the mail15:50
bigjoolshmmm15:50
pooliebut nothing else seems to create that mail template15:50
pooliethe odd thing in the mail this sends is that15:50
poolieit says "state: successfully built" but the log file is about uploading a source pacakge15:50
LPCIBotProject windmill-db-devel build #270: STILL FAILING in 45 min: https://lpci.wedontsleep.org/job/windmill-db-devel/270/16:01
rvbajcsackett: allenap: Could one of you guys have a look at this MP https://code.launchpad.net/~rvb/launchpad/multi-parent-diff-pages2/+merge/60799 ?16:04
jcsackettrvba: sure.16:04
rvbajcsackett: thanks!16:04
pooliebigjools: can you give me any clus?16:10
pooliei'm really puzzled how that code gets hit in production16:11
sinzuijcsackett: mumble?16:26
henningeHi, general Python question.16:27
jcsackettsinzui: sure.16:27
henningeI have the feeling I am missing something very obvious or more pyhtonic here. This implementation looks very C-ish.16:27
henningehttp://paste.ubuntu.com/606529/16:27
jcsacketthenninge: assuming haystack is a sequence, i think haystack.count(needle) works.16:29
jcsackettsinzui: can you hear me?16:29
henningejcsackett: a string16:29
henningesearch a string within a string16:29
* henninge tries that16:29
henningejcsackett: thank you, I was not aware of that (obviously)16:31
jcsacketthenninge: yw.16:31
LPCIBotProject windmill-devel build #72: STILL FAILING in 45 min: https://lpci.wedontsleep.org/job/windmill-devel/72/17:01
pooliejelmer: are you still around?17:02
jelmerpoolie, hey17:04
jelmerpoolie, yep17:04
pooliehi, can i find you somewhere?17:06
pooliei think i need to update your soyuz code17:06
jelmerI'm in Elod, or I can come find you17:06
jelmerWhere are you?17:06
pooliei'm upstairs, i'll work out where elod is17:07
pooliei guess there's a lesson that things that look trivial in soyuz, aren't17:13
jelmer:)17:14
jelmerI'm going to move towards the area near the front desk17:15
rvbajcsackett: I don't know if you need me for the review ... but FYI I'll have to EOD in ~20 min.17:25
jcsackettrvba: yeah, sorry this is taking so long--pretty big diff. i'll leave all comments on the MP.17:25
rvbajcsackett: sure, I know the diff is kinda big.17:26
=== matsubara is now known as matsubara-lunch
=== deryck is now known as deryck[lunch]
jcsackettsinzui: i am finally looking at your project-review MP.18:46
sinzui\o/18:47
jcsackettone question, i see both a license-reviewed and license-approved. shouldn't the first be a project-reviewed widget?18:47
=== matsubara-lunch is now known as matsubara
=== deryck[lunch] is now known as deryck
jcsackettsinzui ^18:51
sinzuijcsackett: The field is license_reviewed. We can rename the field to be project_reviewed18:52
sinzuiWe changed the meaning of the field in 200818:53
jcsackettsinzui: ah, dig. i don't know that it's necessary, i was just somewhat confused.19:00
sinzuiIndeed. engineers think they are approving projects, when they are approving licenses (hence the errors we see when approving a proprietary and I don't know project)19:02
jcsackettsinzui: that makes sense.19:02
jcsackettr=me, sinzui. and i look forwards to seeing this deployed. :-)19:02
sinzuijcsackett: I can change the field name do you want me to do that?19:03
sinzuiI think it is a trivial mechanical change19:03
jcsackettsinzui: actually, i think it's good as is. as you said, we're trying to prevent people thinking they're reviewing/judging the project.19:04
sinzuijcsackett: well we do mean review_project19:07
jcsackettah. so i was still confused. :-P19:08
jcsackettok, then yeah, we probably should update the field, if that's not a pain. i would rather get the improved project review in place then quibble about fields tho. :-)19:08
sinzuiokay. I will make this last change ans land it. Thank you very much19:09
=== Ursinha-afk is now known as Ursinha
jcsackettthank you, sinzui.19:10
jcsacketti must go grab some food, and then i will look at your other branch.19:10
LPCIBotProject db-devel build #543: STILL FAILING in 6 hr 37 min: https://lpci.wedontsleep.org/job/db-devel/543/19:43
LPCIBotProject devel build #712: STILL FAILING in 6 hr 38 min: https://lpci.wedontsleep.org/job/devel/712/19:44
* lifeless stretches19:58
lifelessmorning gary_poster20:07
LPCIBotProject windmill-devel build #73: STILL FAILING in 1 hr 8 min: https://lpci.wedontsleep.org/job/windmill-devel/73/20:22
LPCIBotProject windmill-db-devel build #271: STILL FAILING in 51 min: https://lpci.wedontsleep.org/job/windmill-db-devel/271/20:35
* gary_poster winces at not finishing doc review for lifeless, then runs out the door, to be back soon20:40
lifelessgary_poster: :P21:01
lifelessallenap: hi21:22
lifelessallenap: why is bug 776283 untestable ?21:22
_mup_Bug #776283: PackageCopyJob needs separate archive and series columns for query purposes (db patch) <derivation> <qa-needstesting> <Launchpad itself:Fix Committed by allenap> < https://launchpad.net/bugs/776283 >21:22
lifeless_mup_: you are stale!21:22
lifelessah, I meant bug 77994921:23
_mup_Bug #779949: PackageCopyJob needs separate archive and series columns for query purposes <derivation> <qa-untestable> <Launchpad itself:Fix Committed by allenap> < https://launchpad.net/bugs/779949 >21:23
lifelessnvm21:23
LPCIBotProject windmill-db-devel build #272: STILL FAILING in 51 min: https://lpci.wedontsleep.org/job/windmill-db-devel/272/21:27
abentleyjcsackett or allenap: could you please review https://code.launchpad.net/~abentley/launchpad/translation-packaging-resource/+merge/60832 ?21:36
jcsackettabentley: sure.21:49
abentleyjcsackett: thanks.21:51
jcsackettabentley: that was very to the point. r=me.21:52
abentleyjcsackett: cool, thanks.21:53
jcsackettyou get today's coveted "shortest diff" award. :-)21:53
=== jcsackett changed the topic of #launchpad-dev to: https://dev.launchpad.net/ | On call reviewer: - | https://code.launchpad.net/launchpad-project/+activereviews
LPCIBotProject windmill-devel build #74: STILL FAILING in 49 min: https://lpci.wedontsleep.org/job/windmill-devel/74/22:16

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