=== thumper-afk is now known as thumper [01:42] wallyworld_: I can't use logger as there is already a package level logger called "logger" [01:42] wallyworld_: and go doesn't give us a way to have file-local variables [01:43] davecheney: does it? [01:47] thumper: no, there are no file local variables [01:47] only package, func and block scopes [01:47] what are you trying to do [01:47] davecheney: don't suppose there could be? [01:47] ? [01:48] davecheney: idiomatic usage, at least in other languages, is to have a file local "logger" variable [01:48] this allows different files in one package to have different loggers [01:48] thumper: you already know what i'm going to say [01:48] in my example... [01:48] I have the lxc provisioner / broker in the worker/provisioner package [01:49] davecheney: you are going to say "put them in a different package?" [01:49] however, I have the tests for them share some common suite info [01:49] and there doesn't seem to be a way to import _test declared stuff from another package [01:50] so suites need exported stuff [01:50] exported stuff in export_test only available in local package tests [01:50] shared suites then impossible [01:50] across other packages [01:51] that is part of the problem [01:59] thumper: i am confused [02:00] have you moved on from file scopes vars ? [02:00] davecheney: don't worry... [02:00] I was talking myself through the problem of moving them to different packages [02:00] ok [02:12] davecheney: I've been asked to ping you [02:12] davecheney: about a problem that I have just fixed [02:12] davecheney: JujuConnSuite wasn't closing the API connections, and fwereade was wondering if this may be related to the races you were looking into [02:12] davecheney: the branch I'm about to land fixes this [02:13] related to the mgo stuff [02:13] could be [02:13] let me find my notes [02:13] land it and lets see [02:22] * thumper nods [02:23] davecheney: what is the difference between %v and %s in a sprintf? [02:25] %v chooses the %s,%f,%d or %b depending on the type of the thing [02:25] it's pretty much the default unless you absolutely know you want a string [02:26] thumper: thanks for extending the comment. i didn't make the connection that embedded = nested. makes more sense now [02:26] wallyworld_: np [02:27] wallyworld_: just did a local test run [02:27] * thumper approves the mp [02:27] yay [02:27] * thumper does a little dance [02:27] bigger dance coming when it is actually landed [02:28] wallyworld_: this gives automatic provisioning of lxc containers [02:28] non-addressable containers, but containers none the less [02:28] yeah i know :-) will be good [02:44] * thumper had forgotten to set a commit msg [03:46] oh arse [03:51] damn local dependencies... [03:57] arosales: ping me when you're ready [04:01] davecheney, ping [04:02] two secs === tasdomas_afk is now known as tasdomas [04:16] davecheney: how do I build the tests without running them? [04:17] go test -c is one way [04:17] that will produce $PKG.test [04:18] hmm... don't really want anything created [04:19] it should be in $CWD [04:19] if it complets then your tests work fine [04:19] this is a way to check that your tests compile on other os's [04:19] GOOS=windows go test -c launchpad.net/juju-core/cmd/juju [04:19] eg [04:20] thumper: oh, you donn't want it crated [04:20] we.... cd $(mktemp -d) && go test -c $PKG [04:20] ^ try that [04:20] * thumper cocks his head [04:37] * thumper sighs... [04:37] import cycles [04:45] * thumper beats the codebase into submission [04:54] ok, trying to land again [05:46] thumper: sorry, was on da phone [05:46] i may have another way to builkd, but not run tests ... [05:46] actaully ... no [05:46] what i was thinking of didn't work at all [05:46] bummer [06:06] thumper: i've got a script that builds all the tests but doesn't run them [06:07] thumper: but it uses some of my local stuff - you'd probably want to translate it into a shell you've got installed [06:08] thumper: http://paste.ubuntu.com/5803790/ [06:08] thumper: i call it "gotest-c" [06:09] mornin' all, BTW [06:12] davecheney: you reviewed https://codereview.appspot.com/10465043/ but didn't LGTM. I don't quite understand what more you are asking for. [06:14] thumper: the idiom we've used in juju-core is to create a 'testing' package when we need test-related stuff shared between other packages. We've got a small number of them in the source tree already. [06:14] thumper: otherwise, why is the package level logger the wrong one? [06:20] jam: that is correct, i was confused about the whole passing back a *string [06:21] davecheney: well it works just fine. I suppose I could pass it back via a buffered channel if it makes you feel happier [06:28] davecheney, thumper: here's a bash version of my "gotest-c" script: http://paste.ubuntu.com/5803813/ [06:29] davecheney, thumper: you'll have to go get code.google.com/p/rog-go/cmd/pxargs first though [06:29] davecheney, thumper: then you can do "gotest-c ./..." build all tests without running them. i use it a lot === thumper is now known as thumper-afk [06:31] rogpeppe: ta [06:32] thumper-afk: you might want to adjust the "5" constant, which should really be dependent on the number of cpus you've got [06:38] thumper-afk: actually, i fell foul of the usual bourne shell quoting gotchas. this is slightly better: http://paste.ubuntu.com/5803829/ === thumper-afk is now known as thumper === ChanServ changed the topic of #juju-dev to: https://juju.ubuntu.com | On-call reviewer: dimitern | Bugs: 6 Critical, 83 High - https://bugs.launchpad.net/juju-core/ [08:46] rogpeppe: merge conflict on submitting your patch again. I got my patch landed which resolved some of the previous Resource changes. [08:47] jam: darn, ok thanks [08:47] jam: it had a transitory error when i landed it before (must fix those tests!) [08:47] rogpeppe: yeah, I haven't seen that failure before, so I wasn't sure. [09:06] * thumper afk until the meeting in 2 hours === thumper is now known as thumper-afk [09:13] mgz_: ping [09:30] jam: re-approved. let's see if it lands this time. [09:32] Probably a beginner's question... when export_test.go exports something from a package, is there anything else that needs to be done to make it available to tests outside the package? [09:32] I tried importing launchpad.net/juju-core/environs/local, and then using local.Listen in my test — but the compiler insisted that local.Listen was undefined. [09:33] But the local provider's own tests can do the same thing and not have that problem. [09:35] https://codereview.appspot.com/10617043/ [09:40] dimitern: is that an answer for me or are you asking for a review? [09:40] jtv: for review :) [09:40] Ah :( [09:40] Trade you? [09:41] jtv: sorry wasn't paying attention - will read the backlog [09:41] Thanks. [09:41] jtv: so export_test makes package internals available to tests, but only inside the same package [09:42] ...But the export_test.go is in the "local" package, and the test that makes use of it is in the "local_test" package. How does that work? [09:42] jtv: go magic :) [09:42] * jtv screams at heavens [09:43] jtv: anything with packagename_test is accessible in tests, including stuff in export_test [09:43] jtv: if you need something from a tests package in more than one place, it's best to factor it out in a common testing package [09:43] Damn. [09:44] wallyworld_: bug 1195223 [09:44] <_mup_> Bug #1195223: juju all-machines.log is repetitive and grows unbounded [09:44] Deeper and deeper into the rabbit hole for a single job... :( [09:44] jtv: what do you need? [09:44] I need to invoke local.Listen, for purposes related to the local package, in my test. [09:44] * rogpeppe goes for breakfast [09:45] * dimitern looks at local.Listen [09:46] jtv: and you need to invoke it where? [09:46] In a test for the azure provider, where I use the local provider's storage implementation as a test double. [09:46] jtv: that's probably a bad idea [09:47] jtv: the local provider's storage is overengineered and probably needs to be simplified [09:47] Oh great. I was using the dummy provider's one, but fwereade preferred me to use the local provider's storage. [09:47] jtv: if you just need a simple http server, why not create one and handle a specific url? [09:47] jtv: why not just export local.listen? [09:48] rogpeppe: that's what I did to get it working, but now I'm trying to find out what the "proper" way would have been! [09:48] dimitern: I do not want a simple http server! [09:48] I don't want any http at all. [09:48] jtv, dimitern: i think it's perfectly reasonable to have a working local storage provider from local that other things can use [09:48] I just need a test double for a storage object. [09:48] jtv: yeah, that's another option - just export local.listen and NewStorage and get rid of export_test [09:49] That's what I did, actually — but I figured since *another* package used the export_test trick, it looked as if I ought to be able to as well. [09:49] jtv: nah.. it only works inside the same package [09:50] Well it's exported from package "local" and imported into package "local_test" [09:50] And I do mean package, not source file. [09:51] jtv: yeah, but the azure provider is in a different package, hence it's not visible, even if you import it [09:51] Oh God don't tell me the rule is "exported exactly 1 package up, but no more"! [09:52] rogpeppe: care for a review after breakfast? https://codereview.appspot.com/10617043/ [09:52] dimitern: I was already looking at yours actually. My end of the implied bargain. :) [09:52] jtv: sweet! [09:58] jtv, dimitern: I suggested the local provider's storage because it's independent and it works [09:58] jtv, dimitern: and if we make it simpler, then great [09:59] fwereade: it has to be exported to work like that [09:59] Not in this branch though. Gotta manage the scope of a branch or things will get waaaay out of hand. :) [09:59] dimitern, I'm fine exporting it somewhere -- tying storage implementations to providers is kinda dumb in the first place [10:00] jtv: i suggest that you change environs/local to export an interface like this: http://paste.ubuntu.com/5804251/ [10:00] fwereade: does that seem reasonable to you? [10:00] rogpeppe: +1 [10:00] rogpeppe, looks sane [10:00] actually, NewStorage should probably be func NewStorage(addr string) environs.Storage [10:01] rogpeppe, better yet [10:01] unless there were some fancy introspection methods we'd want to put on it [10:01] but i can't think of any [10:01] jtv: the changes to environs/local to do that should be pretty trivial [10:02] rogpeppe, it would still be best if it were actually outside local [10:02] fwereade: environs/localstorage ? [10:02] rogpeppe, sounds reasonable [10:02] filestorage? [10:03] localstorage.New(addr string) environs.Storage [10:03] or Client [10:03] rogpeppe, TrivialStorage :/ [10:04] fwereade: nah - it's actually potentially useful and not *entirely* trivial [10:04] rogpeppe, as you like :) [10:06] jtv, fwereade, dimitern: i think this is a bit better actually: http://paste.ubuntu.com/5804267/ [10:07] rogpeppe: sgtm [10:13] dimitern: done with your review [10:13] * jtv catches up on backscroll [10:13] jtv: thanks [10:16] jtv: helpful comments, cheers [10:16] np [10:16] Deal's a deal. :) [10:17] fwereade: you happy with https://codereview.appspot.com/10447045/ now? [10:18] rogpeppe, fwereade: it's never *entirely* trivial — if you don't mind I'll just make that a separate branch, and first get this never-landing branch saga to a conclusion. [10:22] mgz_: ping [10:23] wallyworld_, helldamn I have drafts [10:24] wallyworld_, let me see what I said, just a mo [10:25] wallyworld_, sent; give it a quick read and let me know what you think [10:26] fwereade: also, on introducing a new DeploymentValue constraint embedding Value - to make this viable, I'll need to introduce a new Constraints interface [10:26] and use that throughout the codebase where feasible [10:26] given Go lacks polymorphism and other useful inheritance constructs [10:27] wallyworld_, I lean towards keeping it a single type until we've seen how the actual usage patterns end up [10:27] fwereade: so this would mean adding checks to other places where container constraint is not valid [10:28] besides add-machine [10:28] wallyworld_, I think that's more than we need actually -- just an understanding that different bits of the system pay attention to different parts of the constraints [10:29] fwereade: i'd rather code defensively and fail if people try and pass in the wrong thing [10:29] the system should fail if given invalid inputs [10:29] as people might have certain expectations and winder why stuff didn;t behave as expected [10:30] wallyworld_, agreed re *inputs* -- so I think what you did originally was fine -- but internally I think it's ok that different components pay attention to different parts of the structure [10:30] wallyworld_, if I knew for sure which parts handled what I'd be keener on splitting the type [10:30] fwereade: right, that's indeed how i coded it [10:30] wallyworld_, but I don't think we know enough to get it right there [10:31] wallyworld_, sorry for all the hassles [10:31] s/right there/right yet/ [10:31] fwereade: i'm happy to defer the work, i just seem to recall you were unhappy with what i did but now it seems you agree? [10:31] i'm saying that from memory [10:31] will have to re-read the comments [10:31] wallyworld_, yeah, I was a bit more paranoid than I think I needed to be -- sorry about that [10:32] np [10:34] fwereade: just read the comments on the instance data branch. all good, i'll make the tweaks suggested. thanks for pointing out the checker, i didn't know we had one [10:35] wallyworld_, I think it's very new [10:35] fwereade: i'll try to get it done before bed, but if not first thing tomorrow [10:36] fwereade: can we get rid of WatchPrincipalUnits and WatchSubordinateUnits now after I land this? [10:37] fwereade: no one else is using them [10:41] jtv: if you don't mind I'll do the loggo and if/else if/else changes in follow-ups [10:50] fwereade: ping [10:50] dimitern, pong, quickly, meeting in 10 :) [10:50] fwereade: ^^ [10:50] dimitern, ah sorry missed that [10:50] dimitern, hmm [10:50] dimitern, let's not just yet [10:50] fwereade: I mean in a follow-up [10:51] fwereade: or you think it's useful to keep them for now? [10:51] dimitern, yeah, I'm just not sure I want to drop them yet [10:51] fwereade: ok then [10:53] rogpeppe: so do we have API connection for all agents now? [10:54] dimitern: no, the unit agent doesn't have an API connection yet [10:54] dimitern: it needs the uniter facade first [10:54] rogpeppe: but openState now opens an API connection in agent.go? [10:54] dimitern: fine with me! [10:54] dimitern: yes [10:55] * jtv stalks off to get a stiff drink [10:55] rogpeppe: my question is: once I implement the deployer facade, can I start replacing state calls for api calls and have a connection? [10:55] dimitern: yes [10:55] rogpeppe: sweet! [10:57] dimitern: we also need the agent-alive mechanism in place [10:58] rogpeppe: yeah, but not for the deployer at least [10:59] dimitern: the deployer isn't its own agent, is it? [10:59] dimitern: ah, it's just a worker alongside the machiner [10:59] dimitern: cool [10:59] rogpeppe: no, but it has its own facade [10:59] dimitern: that sounds good [10:59] dimitern: when you do the deployer facade, please follow the example of apiserver/client [11:00] rogpeppe: that at least haven't changed while i was gone, right? a facade per worker/agent [11:00] rogpeppe: you mean with root replacement after login? [11:00] dimitern: i.e. a top level API type with a single method: Deployer(id string) (*Deployer, error) [11:00] dimitern: currently there's still only a single root type after login [11:00] rogpeppe: ok, will follow it [11:01] dimitern: when all the facades are factored out into their own packages, we'll do a switch on the user name after login and choose a facade to present [11:01] dimitern: each kind of client will have its own package (e.g. machine, unit, client) which will have an API type that presents the whole API for that client, integrating in all the facades as necessary [11:01] rogpeppe: i'd like to see that [11:01] dimitern: if that seems ok to you [11:02] dimitern: i'm knocking up a spike proof of concept [11:02] rogpeppe: cool [11:04] * dimitern waiting impatiently for tarmac (hopefully not to kick me in the teeth :) [11:11] jtv, fwereade, dimitern: https://codereview.appspot.com/10678043/ (only slightly less trivial than i thought) [11:11] rogpeppe: on it [11:14] * rogpeppe wants a "wait for tarmac" command that waits for a branch and prints tarmac's final judgement on it [11:15] juju wait-tarmac --retry-intermittent-failures ? :) [11:16] * TheMue -> lunchtime [11:17] \o/ Merged! [11:18] rogpeppe: you've got a review [11:18] dimitern: ta! [11:20] TheMue: i'd appreciate a review from you too, as it was your code originally, i believe: https://codereview.appspot.com/10678043/ [11:26] so are we all now doing the standup/meeting now instead of kanban? [11:29] hmm, trunk is broken live: 2013-06-27 11:28:30 ERROR juju runner.go:198 worker: fatal "lxc-provisioner": error executing "lxc-ls": exec: "lxc-ls": executable file not found in $PATH [11:33] mgz_, dimitern, danilos, wallyworld_: i'm in the manager meeting, but we'll likely wrapup quickly [11:34] rogpeppe: thumper's fault! [11:34] wallyworld_: yeah, but actually it's doubly broken. i have also broken it :-( [11:35] wallyworld_: am working on a fix for the other issue now [11:35] the more the merrier :-) [11:35] wallyworld_: well, i'll incorporate a fix for apt-get lxc too [11:35] \o/ [11:38] rogpeppe: eh? === thumper-afk is now known as thumper [11:38] d [11:38] dimitern: https://code.launchpad.net/~jameinel/goose/transfer-content-length-1124561/+merge/170976 [11:38] rogpeppe: no, trunk is good [11:38] thumper: ah! [11:38] it landed [11:38] thumper: i've just realised why it happened [11:38] thumper: i upgraded [11:38] thumper: and upgrading just gets the binaries [11:38] thumper: it doesn't install new dependencies [11:38] rogpeppe: oh, and the machines don't have lxc [11:38] thumper: yeah [11:38] that seems like it could be a problem [11:39] do we have a plan for that? [11:39] thumper: not yet :) [11:39] ok, and with that, I'm off [11:39] thumper: i think it could be quite simple though; we'll see [11:39] * thumper nods [11:39] night everyone [11:48] * rogpeppe goes for some lunch and packing [11:48] i might be a couple of hours, but i will be back [11:49] fwereade, do you know if anyone is doing https://bugs.launchpad.net/juju-core/+bug/1191066? I thought I might give it a go to help me get setup on contributing to core [11:49] <_mup_> Bug #1191066: ssh command line help incorrect [11:49] rogpeppe: back from lunch, let me just propose my code (test is done) and then you'll get the review [11:49] mattyw, not that I'm aware of [11:50] jtv, rogpeppe, fwereade: almost trivial https://codereview.appspot.com/10681044 [11:50] mattyw, fwiw I am doing another pass through the bugs and have started to tag "easy" as well as "bitesize" [11:50] fwereade, ok cool, I'll keep any eye out for that [11:50] mattyw, where "bitesize" implies few lines of code to fix, and "easy" also implies that you shouldn't need to know too much arcane junk [11:51] to identify which lines [11:52] fwereade: with bug 1130051 you pointed out in your review, it is implicitly fixed by the new implementation :-) [11:52] <_mup_> Bug #1130051: juju ssh doesn't wait properly for instance id [11:52] wallyworld_, hmm, doesn't it short-circuit to checking the doc id? maybe I misremembered [11:53] wallyworld_, I probably did [11:53] fwereade: only for old machines, where the instance id should be set already [11:53] mramm: there is no hangout for API meeting in 10 minutes. Are we just doing it on IRC? [11:53] fwereade: new ones will have the instance id in the new doc [11:54] jam: that is fine with me [11:54] wallyworld_, ok, and you always check for a doc first? cool [11:54] fwereade: yes [11:54] or I can add one in quickly [11:54] whatever is most efficient ;) [11:54] added one to the invite in case we want it [11:55] I *think* we can go more quickly this week, and probably don't need an hour. [12:00] mramm: I'm on the hangount [12:02] fwereade: care to join us for a fast API overview? https://plus.google.com/hangouts/_/91b92a337684b97321e7521463a14ec318401052 [12:13] just made my first attempt at fixing a small bug: https://codereview.appspot.com/10683043/ [12:59] hey guys, I'm trying to file bugs on the documentation, but they seem to show up on juju-core, not juju-core/docs [12:59] I submitted via https://bugs.launchpad.net/juju-core/docs [12:59] jcastro: there is no 'juju-core/docs' package, just a branch [13:00] jcastro: if you want them to show up in that series... just a sec [13:00] jcastro: can you link a bug? [13:01] jcastro: I just did something here: https://bugs.launchpad.net/juju-core/+bug/1195293 [13:01] <_mup_> Bug #1195293: Docs need workflow contribution examples [13:01] you can use the "Target to series" link undernead the bug tasks [13:06] jcastro: I now see stuff in https://bugs.launchpad.net/juju-core/docs so hopefully its doing what you want [13:06] ok got it! === BradCrittenden is now known as bac [13:12] jam: so there's no way for me to report doc bugs without spamming you guys? [13:14] jcastro: 'juju-core/docs' is configured as a juju-core series, not as a separate project. So you have to target bugs to the series [13:14] yeah so nick just landed new docs, so there might be a buncha little bugs coming in [13:15] jcastro: when submitting a new bug, it is possible to target a milestone immediately, but for a series you have to submit the bug, then come back and set a target [13:15] * jcastro nods [13:16] jcastro: it is a bit of an misuse of launchpad to have a branch called lp:juju-core/docs that isn't actually a branch of juju-core source code [13:16] Arguably it should be called lp:juju-core-docs [13:16] we were inside of core before, and then we moved out, and now we're moving back in [13:16] lol [13:16] jcastro: we can live with what you have, but it doesn't fit the LP model. [13:17] not my decision, and I don't even know why or how [13:17] jcastro: as in there will be a juju-core/docs subdirectory with the website ? [13:17] or just we are sharing the project name ? [13:17] the html docs are in there [13:18] and they went live this morning, and I just wanted to fix a
 tag. :)
[13:18]  jcastro: I mean, when I do "bzr branch lp:juju-core" today, I don't get docs
[13:18]  is the intent that the html docs will share the same source tree as the code
[13:18]  ?
[13:19]  I belive so
[13:19]  let me get evilnick for you.
[13:19]  jcastro: if so, then it makes sense to have them in one project, and eventually lp:juju-core/docs will be merged into lp:juju-core
[13:19]  If they are intended to be developed "independently" then it would make more sense to have them as separate LP projects.
[13:19]  * dimitern lunch
[13:20]  I think the intent was together so like we can maintain docs for stable vs. trunk, etc.
[13:20]  jcastro, hey
[13:20]  jcastro: well, you could do that anyway, though you'd have to take care to branch when we branch.
[13:20]  we could share the https://launchpad.net/juju-project
[13:20]  as for ownership, bug visibilicty, etc.
[13:20]  we already have several projects there related to dependent code that we are also maintaining
[13:21]  evilnickveitch: hey so jam thinks he can help organize this better
[13:22]  but all I wanted to do is drive by fix some docs with no other responsibilities. :)
[13:22]  jcastro :)
[13:22]  jam, so what's the plan?
[13:22]  * jcastro slowly tiptoes away from the conversation
[13:23]  evilnickveitch: I'm just trying to get a feel for how we are wanting to use Launchpad to manage the thing currently called "juju-core/docs"
[13:24]  LP has the idea that everything underneath a given project shares the same source code and bugs
[13:24]  So having a "juju-core/docs" as a series (rather than a related-but-independent project) confuses things like bug triage
[13:24]  jam, uhuh. I was following the model from the previous juju + juju/docs model. but yes, I have noticed that
[13:25]  jam should we just have it as a standalone project then?
[13:25]  evilnickveitch: that is how I would do it
[13:25]  called juju-core-docs
[13:25]  or juju-docs
[13:25]  It can be part of the 'juju-project' if we want to be clear about the affiliation
[13:25]  and make it easy to share bug maintainers, etc.
[13:26]  evilnickveitch, fwiw, I just this morning tagged a couple of juju-core bugs as "doc" because I *think* they stem from inadequate communication
[13:26]  But otherwise, when people make a change to docs, it is going to show up as a branch against juju-core itself, etc.
[13:26]  fwereade, thanks!
[13:26]  evilnickveitch, there will surely be more :)
[13:26]  jam, yes, it is a bit confusing - I am not sure how it used to work with the old juju project.
[13:27]  jam, but it will be painful for me to trawl through bugs and target them to docs series all the time
[13:28]  evilnickveitch: right, and if we really want a 'juju-core' bug to also be a 'juju-core-docs' bug, we can still target both projects
[13:28]  jam, sure. I think that will happen!
[13:29]  evilnickveitch: I'm pretty sure having a separate project will just fit LP's model better, and still let us do everything we want.
[13:30]  jam, cool. I will sort it out
=== BradCrittenden is now known as bac
[13:31]  teknico: I'll take it
[13:31]  pfft; wrong channel
=== benji__ is now known as benji
=== benji is now known as Guest32120
[13:40]  jam, although, another option might be to host the docs with the juju-core code.
[13:42]  evilnickveitch: I could live with either, but I think either would be better than what we have today.
[13:43]  jam, okay, will discuss with arosales et al.
[13:44]  evilnickveitch: I probably slightly lean towards separate projects, mostly because I don't think people will want the raw HTML who are developing the source code (because the target audience is different), but I'm not strongly that way.
[13:45]  jam, to be honest, in some ways it would be easier for me if it was a separate project too. But there are advantages to it being contained alongside the main code.
[13:46]  it makes versioning a lot simpler for one thing, and maybe it isn't a bad idea that coders also realise that docs exist :)
[13:50]  jam, hey, about the upgrader -- for maximum simplicity, I think we should be able to just EntityWatcher the env config, and then have an api method taking series/arch and returning a *Tools
[13:50]  jam, we can still pass series/arch in for smarter watching in future
[14:01]  fwereade: could you take a peek at my comments on https://codereview.appspot.com/10534043/ and if my thinking is aligned with yours, i'll polish off the branch tomorrow. in particular the bit on env vs deployment constraints and general usage
=== wedgwood_away is now known as wedgwood
[14:02]  wallyworld_, will do
[14:04]  hi, is there a way to get the environment UUID through the juju-core API?
[14:15]  ackk, ...apparently not? this is slightly surprising, but maybe the GUI hasn't wanted to use it yet
[14:15]  ackk, that's been the primary driver for the public API
[14:16]  fwereade, right. It'd be nice to have it in the EnvironmentInfo, though
[14:17]  ackk, yeah, agreed, that should be a nice easy fix and it should kinda obviously be there
[14:20]  fwereade, I just opened a bug for it, FIY: #1195344
[14:25]  ackk: if you type "bug 1195344" _mup_ will print a link to it
[14:25] <_mup_> Bug #1195344: Add the environment UUID to EnvironmentInfo response  
[14:26]  dimitern, thanks
[14:27]  ackk, tyvm
[14:34]  dimitern: thx for review
[14:34]  TheMue: yw
[14:35]  dimitern: will add a comment, assert is just to ensure, that at least two runs have been done so that times could be compared
[14:35]  TheMue: my comment was not specifically for the assert, but for the for loop mostly
[14:35]  TheMue: thanks
[14:39]  dimitern: ah, ic
[14:39]  dimitern: ok, will find some words. it's based on a discussion we had during kanban ;)
[14:41]  TheMue: yeah, but you can see how it can be confusing - if it's hard to describe in a couple of sentences it might not be a good idea :)
[14:45]  can somebody join the cross-team juju call?
[14:45]  fwereade: ^^^
=== tasdomas is now known as tasdomas_afk
[15:20]  dimitern, linking an MP to the bug, do I still just do that as I normally would do in launchpad or is there something I need to do in rietveld?
[15:20]  mattyw: you can pass -bug="" in lbox or just link it in LP
[15:23]  dimitern, ok thanks
[15:32]  TheMue: can you take a look at this mostly trivial CL? https://codereview.appspot.com/10681044/
[15:33]  dimitern: sure
[15:33]  mramm, hell, sorry, I was having a very late lunch
[15:33]  TheMue: thanks
[15:35]  dimitern: you've got a +1
[15:36]  TheMue: cheers
[17:43]  fwereade_: ping
[18:57]  fwereade_: ping
[20:47]  fwereade_: you around?
[21:27]  morning
[22:35]  wallyworld_, heyhey, I'm around if it's quick :)
[22:38]  wallyworld_, I'm still not sure there's a firm distinction between provisioning and deployment constraints
[22:39]  fwereade_: hi, was just pinging you to hopefully +1 that instance metadata branch
[22:39]  wallyworld_, but it did just cross my mind that we probably don't want to use "" to mean "no containerization", because the current meaning of "" elsewhere is "I don't care"
[22:40]  wallyworld_, "none" might work better
[22:40]  fwereade_: ok, so i can introduce a new value
[22:40]  wallyworld_, I'll take a look sorry about that
[22:40]  none sounds good
[22:40]  if you +1 it, i'll then nag thumper :-)
[22:46]  thumper: could you look at this one (display hardware info in status)? https://codereview.appspot.com/10667043/
[22:46]  ok
[23:08]  thumper: thanks. as a matter of consistency, i prefer not to name variables the same as packages irrespective of if the package is accessed in the scope of the variable. just easier to read the code etc
[23:15]  wallyworld_, reviewed
[23:15]  * fwereade_ bed
[23:22]  fwereade_: thanks
=== wedgwood is now known as wedgwood_away