=== daker_ is now known as daker [12:01] g'morning [12:50] Good morning! [13:01] niemeyer, g'morning [13:02] hazmat: Hey man [13:45] hazmat: How did reviews go yesterday? [13:45] I'll dive in myself now [13:45] Beautiful queue [14:19] fwereade: So [14:20] fwereade: The problem we have in the schema issue is error reporting [14:20] fwereade: and it happens because all of the cases in the OneOf fail to match [14:20] fwereade: So it just picks the last one randomly [14:20] niemeyer: yep [14:20] fwereade: Which is bad [14:20] fwereade: I think we can do something much better, and very simple too [14:20] fwereade: I suggest we introduce a new kind of "case selection" [14:20] niemeyer: cool [14:21] fwereade: Which is based on picking an entry from the enclosed dictionary [14:22] niemeyer: yep, sounds sensible, I think [14:22] fwereade: Let me come up with an example to make it clear.. just looking at the code [14:23] fwereade: SelectDict("type", {"ec2": subschema, "orchestra": otherschema}) [14:24] niemeyer: was doing almost exactly the same as you :) [14:25] fwereade: well then, I'll roll that in with the boot-only branch and hopefully sumbit shortly [14:25] fwereade: Support for that in schema is a nice independent branch (hint! hint! ;_) [14:25] niemeyer: I was attempting to talk to you there :/ [14:25] niemeyer: ah-ha [14:25] niemeyer: sounds like a plan [14:26] niemeyer: and the other one just waits on that? [14:26] fwereade: Doesn't have to wait [14:26] fwereade: Merge it into the new branch [14:26] fwereade: I mean, merge the pre-requisite into the follow up [14:27] niemeyer: ...and then the followup's diff-with-trunk just gets smaller once the prerequisite is in? [14:30] fwereade: Precisely [14:31] niemeyer: cool, so long as nobody ends up spending time reviewing the bits of the followup that come from the prerequisite before the prerequisite gets merged [14:31] niemeyer: thanks :) [14:31] fwereade: _If_ the pre-requisite hasn't been merged, you can point out in the merge proposal that there is a pre-requsite branch [14:31] fwereade: There's a special field for it [14:32] niemeyer: I saw that, I wasn't clear what actual effect it had [14:33] fwereade: It's informational, and gets the diff correctly [14:33] niemeyer: the implication seemed to me to be that prereq *wasn't* merged into followup, but that it wouldn't make sense to merge followup into trunk until prereq was in [14:33] (in Launchpad) [14:33] niemeyer: awesome [14:33] Absolutely [14:33] niemeyer: thanks again :) [14:33] Merging the follow up into trunk without the pre-req being reviewed would be awkward [14:33] fwereade: No problem [15:10] niemeyer: a thought [15:12] niemeyer: a SelectDict demands that the values in the initialisation dict actually be dict-like schemas [15:12] fwereade: Yeah [15:13] niemeyer: I'm inclined to create a SchemaMakesNoSenseError (or something) [15:13] fwereade: That's why it's called SelectDict (select which dict schema) [15:13] fwereade: That MakesNoSenseError to me as well :-) [15:14] niemeyer: but I'm not sure it fits with the existing style, which seems to let you put anything in and just blow up on coerce [15:14] fwereade: Sorry, I don't actually get your original point [15:14] fwereade, an explicit validate method might be nice [15:15] fwereade: coerce() is a fine place to validate that they are dictionaries for SelectDict as well? [15:15] fwereade: Not sure if that's your question [15:15] hmm is_valid i guess [15:16] niemeyer: not quite -- it's that the schema itself can be broken if we SelectDict("name", Int()) [15:16] hazmat: Changing the way validation works in schema is an unrelated issue to what fwereade is trying to address [15:16] Nicke, not validation, but validity of the schema [15:16] er. niemeyer ^ [15:16] niemeyer: (for example), but I don't think we'd detect that made no sense until we tried to parse an actual schema [15:16] niemeyer: just as hazmat says [15:17] fwereade: Tons of things will break if we pass arbitrary garbage in [15:17] niemeyer: true :) [15:17] niemeyer: which I guess is why I sought guidance before following my initial instinct to validate on schema creation [15:18] fwereade: Yeah, don't worry about it [15:18] niemeyer, hazmat: I do still quite like the idea of schema validation but -- if nothing else -- I'll skip it in the interest of keeping the branch small ;) [15:18] fwereade: Schemas are static [15:18] fwereade: If you create a bad schema, testing will catch it [15:19] niemeyer: cool [15:19] niemeyer: thanks :) [15:19] fwereade: The whole point of schema.py is schema validation [15:19] fwereade: It does that through coerce [15:19] fwereade: Which is elegant,IMO, as it does both things at once [15:20] hi guys: quick question re: open-port/close-port new hook commands.... can they be executed from the install/start/stop scripts ( I am more interested in the install script )? [15:20] niemeyer: true :) [15:20] fwereade: Well, I guess validating that the schema validator is valid [15:20] fwereade: SchemaSchema? ;-) [15:20] niemeyer: haha [15:20] niemeyer: that's what I was trying to get at ;) [15:21] fwereade: That's only a good idea if you also implement SchemaSchemaSchema [15:21] * niemeyer runs [15:21] negronjl: Yes, that must work [15:21] negronjl: If it doesn't, we're very interested on it [15:21] I'd like for schema validation to be more flexible [15:22] niemeyer: yeah, I've been meaning to ask, where are the tests for our tests, hmm? :p [15:22] niemeyer: perfect! I'll start modifying formulas and will provide feedback :) [15:22] while working on different providers, one can't use the same environments.yaml because the sections are invalid [15:22] it should just ignore these invalid sections [15:25] SpamapS: Not really.. it should validate these different providers [15:25] negronjl: Thanks! [15:27] niemeyer: but lxc and orchestra don't exist in trunk.. so I have to mv environments.yaml to environments.yaml.lxc .. mv environments.yaml.ec2 environments.yaml .. every time I switch [15:28] SpamapS: I see what you mean, yeah, that's painful [15:28] Whereas its really of no concern.. so I could see a warning, but a complete failure seems like coarse error handling. [15:29] SpamapS: This is pretty easy to sort out, though.. we just need a small branch being committed to trunk early on, which adds validation [15:29] What about people who want to write plugins? [15:29] SpamapS: That's a separate problem.. plugins are not supported right now [15:30] * SpamapS intends to change that soon if it pleases the court. ;) [15:30] Have a friend who wants to write a jclouds provider to enable rackspace. [15:31] SpamapS: That's not a plugin.. we can very happily take contributions that implement new providers [15:31] He's been watching dev and isn't really interested in going through the song and dance to get it into Ensemble.. he just wants to *use* it. [15:31] And throw it up on github somewhere [15:32] I'm sure we could then suck it into Ensemble at some point.. [15:32] but de-coupling his dev process from ours should create a vibrant ecosystem of plugins [15:33] SpamapS: We certainly want to support plugins at some point, but right now that's not a priority [15:33] SpamapS: Plugins isn't just "you can throw stuff in" [15:33] I'm also interested in maintaining my LXC provider outside of Ensemble if its at all possible. [15:33] SpamapS: We need a stable API that people can trust [15:33] SpamapS: Otherwise next week his plugin is broken [15:34] Yeah, hard to write plugins w/o releases :) [15:34] SpamapS: Heh [15:34] SpamapS: Having a release is not the same as having a stable API plugin [15:35] An API release I mean. [15:36] And releases help w/ that too.. Wordpress plugins work that way.. they simply list the [15:36] releases of wordpress that they work with [15:36] when new releases come out.. people try it, and verify it, and add it to the metadata in their plugin repo [15:36] SpamapS: No, they don't, really.. [15:36] SpamapS: Ask the bzr guys [15:37] Are you suggesting wordpress plugins don't work? [15:37] SpamapS: I'm suggesting they actually care about the API for plugins, rather than simply having releases [15:37] * SpamapS has to run.. but will think on that. :) [15:49] fwereade: ping [15:49] RoAkSoAx: pong [15:49] fwereade: howdy! How's it going today? [15:49] RoAkSoAx: not too bad, once I figured out squid-deb-proxy was the source of my woes :) [15:50] fwereade: hehe yeah!! So anyways, I';m gonna start working on the deploying machine stuff [15:50] fwereade: but before, I wanted to see if you wanted to work on getting the bootstrap validatiosn working first [15:50] RoAkSoAx: I'll want to grab you later to figure out a couple of things but I'm focusing on something else atm [15:50] fwereade: or shall we leave that for later [15:50] fwereade: The new changes you pushed into the tweaks branch look awesome! [15:51] So much cleaner overall [15:52] SpamapS, cli plugins are easy.. server side plugins need a bit of work [15:52] RoAkSoAx: sorry, expand "bootstrap validation" [15:52] RoAkSoAx: thanks, all credit due to hazmat :) [15:52] er, that should have been "niemeyer: thanks" [15:52] :D [15:52] fwereade: This is ready for merging [15:52] fwereade: checking if there's another zoopeeker running and things like that [15:53] fwereade: Yeah, hazmat's idea of putting bootstrap within LaunchMachine itself was great [15:53] I'll have lunch [15:53] Had a meeting with Robbie, but he's not around [15:54] RoAkSoAx: ah, cool [15:54] (and I was the one screwing our original timing..) [15:54] RoAkSoAx: that sounds great [15:54] niemeyer: sweet :D [15:59] fwereade: I mean if we should work on that before I start working on getting machines deployed [15:59] RoAkSoAx: ah I see [15:59] * fwereade thinks [16:00] RoAkSoAx: yeah, please work on the bootstrap validation -- I think that will be most helpful to me [16:01] RoAkSoAx: thanks :) [16:06] fwereade: ok, I'll look into it ;) but wanna test what will happen if I try to deploy first [16:06] fwereade: because, as I can recall, we discussing on setting a global variable to obtain the zookeeper instance [16:06] and stuff like that [16:07] fwereade: so that will probably involved re-doing part of the start machine code. But anyways, let me look at it first [16:07] RoAkSoAx: as you like -- they're fundamentally independent, but keeping the actual deployment broken will prevent me from indulging my tendency to grow branches further than I should ;) [16:08] RoAkSoAx: I'll just have to maintain my own discipline :p [16:09] fwereade: hehe ok gonna start working on testing some stuff first as I need it before continue with the coding [16:22] robbiew: any feedback on those graphs? [16:23] jcastro: which ones...only saw the PDF you added [16:23] are there more [16:23] three graphs in one PDF. [16:23] which style should I go with and is the content in each circle right? [16:24] (I was thinking the concentric circles) [16:25] jcastro: oh, heh [16:25] let me look again [16:39] jcastro: man...these are nice [16:39] I know. :) [16:39] total time, 10 minutes. [16:39] I kinda like #2 [16:39] I just need the details you would want in each box, I made it kind of generic [16:39] dunno if you want it that generic or not [16:40] yeah each view has a nice feel for it [16:40] jcastro: so I converted #1 into an odp format [16:40] for editing [16:40] can also do #2 [16:40] then folks can adjust as needed [16:40] that would be swell, I couldn't figure out the conversion [16:42] fwereade: is everything on tweak-launch-machine already approved into trunk? [16:43] jcastro: no worries...I'll sort that while on this call...multitask [16:43] RoAkSoAx: just merged it recently [16:43] ;) [16:43] fwereade: nice.. did you do any further changes to what's in ensemble-bootstrap branch? [16:44] RoAkSoAx: I have another branch which is basically a copy, but uses twisted's xmlrpc instead of xmlrpclib [16:44] RoAkSoAx: ...and has a failed translation of the deployment stuff we had so far [16:45] I won't get it to a mergeable state today, but it should be ready earlyish tomorrow [16:46] RoAkSoAx: and, in fact, I think I'll be proposing a merge of just enough to launch a machine, without expecting it to run or even necessarily complete an install [16:46] fwereade: for cobbler/orchestra stuff? [16:46] RoAkSoAx: yep [16:46] fwereade: ok, well I think we should be in sync on this [16:46] as I dont really wanna do stuff [16:46] that is later gonna be changed :) [16:47] RoAkSoAx: I can understand that [16:47] RoAkSoAx: but my understanding was that niemeyer was asking me to take your stuff, in small pieces, and integrate those individually [16:47] fwereade: I mean, as I understand, you are gonna require to do changes to get the API interaction with twisted xmlrpc instead of xmlrpclib right? [16:48] RoAkSoAx: yes, changes, but I think not really serious changes [16:49] RoAkSoAx: I still absolutely depend on your stuff to show me how to do the right thing [16:49] RoAkSoAx: I just need to put it in a different coat [16:49] RoAkSoAx: ...as it were ;) [16:50] fwereade: right, so what I'm syaing is instead of you doing that, why didn't we do that from the beginning :) [16:50] as in get things working with twisted xmlrpc directly [16:51] RoAkSoAx: heh [16:52] :) [16:52] RoAkSoAx: I think niemeyer's reading of the situation was that your skills were better spent on the actual interaction, while I'd be best placed wrapping it in tests and, er, local flavour [16:52] fwereade: alright, I guess we can continue like that for now then ;) [16:52] RoAkSoAx: to be fair, the actual interaction is non-trivial [16:53] trunk is broken: http://paste.ubuntu.com/648385/ [16:53] jimbaker: curses, odds are that's me... I swear I tested :/ [16:53] jimbaker: ah, no, I think you have a stale .pyc [16:53] fwereade: fair enough, let's just keep things as is until I finish merging all the stuff then ;) [16:53] fwereade, no worries. just wanted to try out your refactoring against some branches [16:54] fwereade, ahh, thanks for that reminder [16:54] phew :) [16:54] let me try again [16:54] * fwereade retracts the "phew" until he hears the tests have *actually* passed ;) [16:54] i should have bzr merge always do a clean code [16:55] the pyc problem only bites frequently enough that i remember it after the fact ;) [16:57] RoAkSoAx: Yeah, the point about xmlrpclib vs. Twisted's xmlrpc is that SpamapS's code was already using xmlrpclib, so it was trivial to move forward that way, and boring to refactor just to learn about the interaction [16:58] RoAkSoAx: fwereade can now easily port things over into Twisted lingo while doing the integration [16:58] fwereade, not looking good: http://paste.ubuntu.com/648389/ [16:58] i wonder if the previous error was a pyc problem that was not allowing this bad cascade [16:59] fwereade: Have you run tests during merge? [16:59] fwereade: s/during/before/ [16:59] niemeyer: yes I did [17:00] niemeyer: ...but I can't swear that my *trunk* didn't have its own stale pycs [17:00] fwereade: Doesn't look like import errors now [17:01] niemeyer: they look a bit like transient errors I *think* I've seen on fresh code before [17:01] hmm.. odd i ran the full suite against it [17:01] niemeyer, fwereade - not certain what's going on. i'm seeing a lack of repeatibility [17:01] niemeyer: fair enough [17:02] niemeyer: I am well aware that suites should be green 100% of the time but I felt I should hold off on fixing that sort of thing until I had a clearer idea how everything works together [17:02] never mind, it does come up with -u looping [17:02] fwereade: As long as it's not your branch introducing the issues [17:02] niemeyer, jimbaker: ...and it's green for me on a clean trunk [17:02] ./test -u ensemble.providers.ec2.tests.test_bootstrap will eventually fail it seems [17:03] jimbaker: Can you reproduce that on trunk? [17:03] niemeyer, that's against trunk [17:03] jimbaker: Sorry, on trunk before the branch [17:03] niemeyer, yeah, i will do that now [17:03] jimbaker: Thanks [17:03] jimbaker: ooh, I didn't know about -u [17:04] that's really cool :) [17:05] fwereade, no it's not [17:05] :) [17:05] jimbaker: heh :) [17:05] jimbaker: I am past 180 successful runs here [17:06] the fact that we need to test with it is a very good reason for golang [17:07] jimbaker: sorry, expand please [17:08] fwereade, this is the arg that niemeyer made to convince me why golang was a good direction for this project [17:09] to summarize: deterministic tests are good [17:09] jimbaker: oh yes indeed -- I didn't realise go would give us that [17:10] It doesn't come for free.. it's just easier to get there [17:10] niemeyer: would you look at http://paste.ubuntu.com/648398/ and tell me if the assertion against the str of the error makes sense to you? [17:10] fwereade, niemeyer - i'm running a test now against trunk, but i can't obviously loop ensemble.providers.ec2.tests.test_bootstrap now, since that's new [17:10] sorry trunk as of r277 [17:10] and that just passed fine [17:11] jimbaker: The bootstrap logic isn't changing significantly [17:11] jimbaker: Can you loop on ec2.tests? [17:11] niemeyer: SAMPLE_ENV in http://paste.ubuntu.com/648405/ [17:11] jimbaker: Also, you have some experience debugging this sort of issue.. would you mind to give fwereade a hand on it? [17:12] niemeyer, yeah, i'm seeing the failure now in r277 too. so test_bootstrap is a refactoring of code in launch, as i now recall [17:12] fwereade: Not really, that doesn't make much sense to me [17:13] fwereade: It should say something like environments.myfirstenv has no type [17:13] niemeyer, i can help out fwereade on this [17:14] jimbaker: THanks a lot [17:14] niemeyer: cool, I'll make it do something like that :) [17:14] fwereade: Thanks [17:14] niemeyer: also: am I right in thinking that "still running after 5.0 seconds" was code you wrote with me on the sprint? [17:15] fwereade: Huh!? [17:16] niemeyer: perhaps not then, I didn't quite follow what you did but it was tangential and I didn't want to crash my stack with a new discussion [17:16] http://spamaps.org/files/mediawiki-plus-slave.svg [17:16] fwereade: That's an error message from a runaway test, in general [17:17] niemeyer: ...and a closer look reveals that it can't possibly be [17:17] We need to work on this so it has a more suitable orientation.. way too wide [17:17] niemeyer: so I just saw ;) [17:17] fwereade: So not code.. are you seeing this when you run tests? [17:17] niemeyer: I have seen similar things cropping up, very rarely, in random tests at random times [17:17] haproxy is providing something to demo-wiki .. so I don't think it should be on the same level as things demo-wiki is consuming.. would be good if providers went above consumers [17:17] probably once every couple of days [17:17] err [17:17] SpamapS: That's really dot generating it.. if you have a patch to the formatter, we can easily put it in [17:18] demo-wiki is providing something to haproxy I mean [17:18] fwereade, first thing, need to ensure that we are both getting these random failures [17:18] fwereade: Ok, that's not something to be taken lightly [17:18] fwereade: It's usually a big warning that there is uncontrolled logic running [17:18] fwereade: and hooks into the determinism comments jimbaker made earlier [17:19] niemeyer: indeed, but I didn't feel competent to investigate that in my first few days [17:19] fwereade: Again, you don't have to, as long as it's not your branch introducing it [17:19] fwereade: If it's your branch, you can ask for a hand to understand what is going on and someone else can dive in with you [17:20] fwereade: But don't just let it go through unnoticed, or we'll figure it's broken much later, and will be much harder to debug [17:20] niemeyer: I'm 90% sure I've seen it elsewhere, but that 10% makes me want to take responsibility for now ;) [17:21] niemeyer: besides, I can think of few more effective baptisms by fire :p [17:21] fwereade: You may have seen it elsewhere, but it may be a new issue [17:21] fwereade: If you want to be sure, it's easy [17:21] fwereade: Get the original test in trunk, run it in a loop with -u [17:21] fwereade: If it's already broken, you don't have to stop what you're doing to fix it [17:21] fwereade: If you don't see it breaking in trunk, heads up [17:22] niemeyer: assuming there's no pollution between tests ;) [17:22] fwereade: The advice is the same [17:22] niemeyer: but, yep, I'll get that running now [17:22] niemeyer: and leave it overnight... I need to be off very shortly, I'm afraid [17:23] fwereade: Cool, thanks for today [17:23] niemeyer: a pleasure, as always :) [17:23] fwereade: jimbaker will give you a hand on this one [17:24] niemeyer, jimbaker: awesome, if I get a chance to talk tonight I will: otherwise I look forward to figuring it out tomorrow [17:34] nn all :) [17:39] niemeyer: clear me a doubt... does ensemble need to be installed in the zookeeper? [17:39] RoAkSoAx: You mean the zk machine, right? [17:40] niemeyer: yes, the zk machine [17:40] RoAkSoAx: If so, yes, some of its bits get installed there [17:40] niemeyer: how? [17:40] bzr? [17:40] RoAkSoAx: cloud-init :-) [17:40] RoAkSoAx: bzr/apt, depending on conf [17:41] niemeyer: right but I mean how does cloud-init install those bits that needs for ensemble (such as the provider stuff) [17:41] RoAkSoAx: bzr/apt, depending on conf [17:42] niemeyer: so how can I tell it to install those bits from an specific branch? [17:42] RoAkSoAx: You add an option to your environments.conf file under ~/.ensemble [17:42] RoAkSoAx: Named ... [17:43] RoAkSoAx: ensemble-branch [17:43] RoAkSoAx: next to type: orchestra [17:43] RoAkSoAx: ensemble-branch: lp:~RoAkSoAx/ensemble/... [17:45] niemeyer: cool thanks!! [17:46] RoAkSoAx: You're welcome [17:56] http://spamaps.org/files/mediawiki-circo.svg [17:56] zoom *way* out ;) [17:57] + dot.set_prog('circo') [17:57] one line patch FTW ;) [17:58] SpamapS: Why is it so spread out> [17:58] ? [17:59] dot graphs usually look a lot nicer than both versions [17:59] It's not clear to me what we're doing wrong there [18:00] not sure, you could definitely shorten some of the lines. :) [18:00] SpamapS: I'm used to reading performance graphs with dozens of edges and nodes [18:00] SpamapS: and it's tight, easier to follow [18:00] SpamapS: We must be using some crazy setting that puts things aside that way [18:04] SpamapS: http://labix.org/tmp/pprof.svg [18:05] ahh, with the circo layout, it specifies a minimum distance of 1.0 .. which is rather far I think [18:05] SpamapS: The concept of using a circumference looks like a good idea for that sort of map indeed [18:06] SpamapS: If we can make that tighter, it will look quite nice [18:06] SpamapS: Can we just disable the minimum distance and let it sort it out by itself? [18:06] niemeyer: and circo naturally pushes the more connected nodes to the center [18:07] SpamapS: Exactly [18:07] niemeyer: thats what I'm looking at doing [18:07] SpamapS: It's an awesome idea === daker is now known as daker_ [18:35] i'm having problems with the networking card on my laptop [18:36] unfortunately today i also have my car being repaired... anyway, i should have my MBP in use as a spare shortly [18:42] jimbaker, i noticed that those provider tests fail badly if your not connected [18:42] the mocks for the image query aren't in place [18:42] * hazmat curses his isp for dropping the connection every 20m [19:12] Any bash scripting masters around? [19:48] niemeyer: ideas? http://pastebin.ubuntu.com/648521/ [19:48] RoAkSoAx: Are you using the webdav hack? [19:48] RoAkSoAx: Or is it S3? [19:49] niemeyer: webdav [19:49] RoAkSoAx: It's refusing the PUT [19:50] niemeyer: cool, will look into it further [20:01] niemeyer: google+? [20:06] niemeyer: i've been known to write a script or two - what you need? [20:06] dannf: Oh neat [20:06] dannf: A review.. [20:06] dannf: Let me send you the link [20:06] dannf: https://code.launchpad.net/~bcsaller/ensemble/bash-completion/+merge/68124 [20:23] niemeyer: so i tend to stick to posix sh, so i'm unlikely to spot issues w/ bashisms like arrays. agreed spacing needs cleanup, though i don't personally have an issue with the [[ ]] && [[ ]] construct or the lack of ';;' in the case - though the latter is internally inconsistent, and a a single switch in a case seems odd [20:25] <_mup_> ensemble/security-policy-rules r275 committed by kapil.thangavelu@canonical.com [20:25] <_mup_> security policy rules for formula, machine, and relations. [20:25] dannf: Cool, does it look good to you overall [20:26] ? [20:29] <_mup_> ensemble/security-policy-rules r276 committed by kapil.thangavelu@canonical.com [20:29] <_mup_> additional peer relation test for relation security rule. [20:31] <_mup_> Bug #813773 was filed: Ensemble should have security rules/acls for every path in zk < https://launchpad.net/bugs/813773 > [20:37] niemeyer_: i'd suggest quoting around $cur $curOpt references to be more liberal wrt user input [20:37] other than that, yeah - i think its fine [20:37] dannf: Would you mind to note that in the review, and mark it as Approve? [20:37] niemeyer_: sure [20:38] dannf: Under the comment box, that is [20:38] right [20:38] dannf: Thanks a lot for your help [20:41] np [21:23] aha! [21:23] fdp FTW [21:24] http://spamaps.org/files/mediawiki-slave-fdp.svg [21:24] nice *3 tier architecture* :-D [21:25] cool man [21:29] I think that makes sense as a default output [21:29] Also I think we should actually not call .create when outputting the dot format.. since that adds the positioning.. [21:29] we should just write out the 'to_string()' [21:36] <_mup_> Bug #813794 was filed: ensemble status fails with "ERROR unhashable type: 'list' " when scope is passed < https://launchpad.net/bugs/813794 > [21:45] SpamapS, do you have any ideas how to reproduce that status bug? [21:46] hazmat: pushing a fix now ;) [21:46] SpamapS, even better :-) [21:46] w/ a test case [21:46] hazmat: but basically .. 'ensemble status service-name' .. [21:46] ugh [21:47] that should have had a test [21:47] sad if not [21:50] state = yield status.collect( [21:50] "wordpress", self.provider, self.client, None) [21:50] it does.. not sure why that is passing [22:00] ahh [22:00] the tests are only *simulating* what they think argparse passes to collect() [22:00] argparse actually passes a list [22:04] the things I do to get a good graph for my presentation.. sheesh [22:18] jcastro: who did the DevOps grows up picture...that's great...T-shirt worthy [22:21] robbiew: that was me [22:21] jcastro and I were chatting about message stuff and I remembered the classic "evolution" pic [22:22] I've tossed it in the preso folder [22:22] yeah...sweet [22:22] the last guy should have an arnold-head though [22:22] * robbiew might play around with this concept a bit...I'm known for cool t-shirts ;) [22:22] jcastro STILL wants a foundations shirt [22:22] lol [22:23] I'll upload the xcf [22:23] * robbiew heads out to cloud camp.... [22:23] * jcastro heads off to florida [22:23] catch you guys on tuesday! [22:27] <_mup_> ensemble/security-policy-rules r277 committed by kapil.thangavelu@canonical.com [22:27] <_mup_> services and units security rules [22:57] <_mup_> Bug #813831 was filed: errors can be misleading when environments are specified incorrectly < https://launchpad.net/bugs/813831 > [23:03] smoser: hm, the jaunty ec2 image. i can't ssh into it. known? [23:07] <_mup_> ensemble/security-policy-rules r278 committed by kapil.thangavelu@canonical.com [23:07] <_mup_> additional unit and service subtree nodes [23:12] <_mup_> ensemble/security-connection r280 committed by kapil.thangavelu@canonical.com [23:12] <_mup_> add service and unit rules to the default security rules list [23:13] <_mup_> ensemble/security-policy-rules r280 committed by kapil.thangavelu@canonical.com [23:13] <_mup_> add service and unit rules to the default security rules list [23:20] <_mup_> ensemble/security-connection r281 committed by kapil.thangavelu@canonical.com [23:20] <_mup_> security policy connection integration [23:45] niemeyer_: ping? [23:48] <_mup_> Bug #813847 was filed: status format "dot" should not actually call 'create' so users can process the graph with dot < https://launchpad.net/bugs/813847 >