[00:03] wallyworld: added a comment to that review... [00:03] ok [00:04] thumper: it needs to be a file, not a dir [00:04] filepath.Join(c.MkDir(), "somefile"), [00:04] doh [00:05] sigh [00:05] fair point [00:29] Bug #1559280 changed: creating hosted model config: opening model: endpoint: expected string, got nothing [00:29] Bug #1559285 changed: creating hosted model config: opening model: storage-endpoint: expected string, got nothing [01:07] thumper: that bug is fix committed, i wonder if we could remove the blocker tag to unblock master [01:15] katco: can you review? http://reviews.vapour.ws/r/4247/ [01:21] wallyworld: guessing wildly, I'm wondering if the --config CI is passing has an "authorized-keys" with an empty string value [01:22] wallyworld: in controller/modelamanager we don't update the attrs if there's an existing key [01:22] wallyworld: we don't check if the value is empty tho [01:22] axw: i suspect the same - i am updating the code to account for that - i have passing tests but it is still failing in live testing bit i am close [01:22] wallyworld: ok cool [01:23] lucky(~/src/github.com/juju/juju) % juju kill-controller testing [01:23] error: controller testing not found [01:23] lucky(~/src/github.com/juju/juju) % juju bootstrap --upload-tools testing aws/ap-southeast-2 [01:23] ERROR cannot create controller "local.testing" info: model info already exists [01:23] is it deleted or not !?!? [01:24] there's already a bug for that, davecheney. I've had to manually delete things out of cache.yaml to work around it [01:24] thanks [01:29] axw: it's failing because jujud bootstrap command is getting passed a controller model config which still has authorized-keys-path and it creates a cfg using NoDefaults which means this is not stripped out and causes havoc further down the line [01:29] wallyworld: argh, of course [01:30] axw: i wonder if bootstrap jujud should be using WithDefaults [01:30] wallyworld: where? [01:31] jujud/bootstrap.go Run() [01:31] wallyworld: i don't think so. by that stage, it should have a complete config [01:31] but there i think it is simply using what was passed from the bootstrap cmd [01:32] so may not be complete [01:32] i could be wrong [01:32] wallyworld: pretty sure it shouldn't be, possibly broken during changes. will look [01:34] axw: so what we should be doing is stripping authorized-keys-path on the bootstrap client side when we read the keys, i'm guessing we don't do that [01:34] wallyworld: yep [01:35] wallyworld: atm on server we'll ignore authorized-keys if authorized-keys-path is set === ses is now known as Guest16952 [01:35] wallyworld: so we should remove authorized-keys-path after reading [01:35] yep [01:35] from hosted model config [01:35] wallyworld: actually we do remove after reading, just not from hosted model config [01:35] axw: that is done if UseDefaults is used [01:36] in my case though host model config does not have that key i don't think [01:37] hosted [01:37] wallyworld: if bootstrap config has authorized-keys-path, it must've come from --config. everything in --config will be added to hosted model config [01:38] yeah [02:07] axw: here's a fix http://reviews.vapour.ws/r/4252/ [02:14] wallyworld: what was your thinking on unblocking? [02:14] thumper: i think we should [02:15] wallyworld: have you personally run the tests on windows? [02:15] no, don't have windows [02:15] I'd like to wait until at least someone has run the windows tests [02:15] ok [02:16] wallyworld: reviewed [02:16] ta [02:31] wallyworld: is the timestamp in a bzr commit ref reliable? e.g. ian.booth@canonical.com-20141121040613-ztm1q0iy9rune3zt ? can I parse that timestamp and trust that if I compare two of them, the later one definitely comes from a later ref? [02:32] wallyworld: context - I'm trying to write an automated dependencies.tsv merge tool [02:32] natefinch: i think so [02:32] natefinch: for bzr , the rev id is monotonic [02:33] ally increasing [02:33] so simplier to use that i think [02:33] I wasn't sure if the id was reliable... either one is fine, I just want to be able to tell which one is later [02:33] since basically every time I merge dependencies.tsv I just pick whichever commit is later [02:45] wallyworld: I've repro'd the "cannot obtain provisioning script" bug, digging in now [02:45] axw: what did you do to repro? [02:46] wallyworld: bootstrapped lxd provider, added another lxc machine OOB and did "add-machine ssh:.." [02:46] axw: hmmm, ok. i basically did the same thing except my bootstrap machine manual [02:46] wallyworld: yeah I think I did that last time I tested and that worked [02:47] ok, at least then it is explainable [03:14] wallyworld: hrm, CI definitely is bootstrapping with manual tho [03:14] yeah, go figure [03:14] wallyworld: anyway, *seems* to be related to ControllerInstances not returning any instances [03:15] thumper: http://reviews.vapour.ws/r/4254/ [03:15] axw: i'm also at a loss as to why show-controller is failing in the restore job [03:15] i've asked for more info like the yaml files and args passed to show-controller [03:16] wallyworld: ok, haven't gotten to that one yet. I think I see the problem with manual [03:16] wallyworld: we're setting use-sshstorage too late now [03:17] wallyworld: (dumb config attr name, but still required) [03:17] axw: does that explain why it works sometimes? [03:17] thumper: http://reviews.vapour.ws/r/4255/ pls [03:17] wallyworld: it would work if the controller machine were able to ssh to itself as ubuntu [03:18] which i think it could for me [03:18] as i copied my ssh keys across [03:19] wallyworld: that'll do it. also, the machine agent will write the "system" public key [03:19] but asynchronously, so it's racy [03:19] joy [03:19] axw: i've gone through the python CI scripts for the restore job and everything appears ok. i though we may have had an issue with default-model name was the same as the controller name which is what the scripts do but i tested that and show-controller worked [03:20] so it appears the scripts bootstrap, do some stuff, then attempt to call show-controller and that fails [03:21] wallyworld: is the script swallowing stderr? I don't see any error messages, just the backtrace [03:21] yeah, that's part of the issue, i haven't checked but it must be [03:22] there's not much to go on [03:28] axw: can we rename that use-sshstorage attribute then if you are in the area and we need to retain it for 2.0? [03:28] wallyworld: yup [03:28] \o/ [03:40] wallyworld: the issue with lxd is that we're filtering machines by hosted model UUID, and not controller model UUID [03:40] axw: for which issue? [03:40] wallyworld: so ControllerInstances fails if you call it with the hosted model config [03:41] ah the ssh-storage one [03:41] wallyworld: no, related, but different [03:41] wallyworld: lxd as controller vs manual as controller [03:41] you can't add-machine ssh with either [03:41] right, both causes affect the ProvisioningScript [03:42] yup [03:42] wallyworld: I think I might simplify the ProvisioningScript code a bit. we get the Environ to get the addresses ... but we already store addresses in state [03:42] so I'll just have it grab them out of state [03:42] sgtm [04:30] wallyworld: https://github.com/juju/juju/pull/4816 [04:31] looking [04:40] axw: hoow does that simplifcation work around the bug? [04:40] wallyworld: environs.APIInfo calls ControllerInstances. ControllerInstances is broken for lxd and manual when called with hosted model config [04:40] possibly other providers too [04:41] ah right, that's the bit i was missing, that APIInfo called ControllerInstances [04:53] Bug #1559706 changed: TestFinalizeCredentialInvalidFilePath fails on windows [05:04] wallyworld: no rush, PR to drop use-sshstorage: https://github.com/juju/juju/pull/4817 [05:04] ok, will look in 5 [05:11] axw: small one also http://reviews.vapour.ws/r/4260/ [05:13] wallyworld: LGTM [05:13] ta [05:44] Bug #1555744 changed: kill-controller / destroy-controller prevents reuse of controller name [05:44] Bug #1559844 opened: InvalidVolumme.NotFound error destroying aws environment [05:46] wallyworld: last one: https://github.com/juju/juju/pull/4819 [05:46] ok [05:54] axw: lgtm [05:54] wallyworld: ta [05:55] wallyworld: see my reply to your comment? [05:55] no, looking [05:55] yeah probably [06:05] axw: do you have a recollection of an destroying aws environment and getting an InvalidVolume.NotFound error as per the bug above? i seem to recall we had seen that and may it was supposed to be fixed [06:06] wallyworld: I don't recall anything specific, sorry [06:06] sure, np [08:02] axw: our cleanup after failed bootstrap still could leave inconsisent metadata; this pr partially addresses that http://reviews.vapour.ws/r/4262/ [08:30] wallyworld: you can't environs.Prepare with an existing controller name, so most of that doesn't make sense. it works because you're reinstating old stuff, but it would be simpler to just check if the environs.Prepare error is not "AlreadyExists", and revert only then [08:30] I mean, it makes sense, but it's not very straight forward [08:32] wallyworld: actually, it doesn't do the right thing in that case. I'll just comment on the PR [09:25] wallyworld: just need to write some tests for login itself, then I can propose the basics [09:31] axw: sgtm, admin controller branch currently in CI [09:44] morning [10:02] voidspace, ping [10:09] Bug #1542206 changed: space discovery still in progress [10:21] dimitern: got someone with me, be free about 11'ish [10:25] voidspace ok, ping me then please [11:04] dimitern: ping [11:04] dimitern: actually, gimme 5 - gonna reboot [11:04] voidspace, sure [11:04] dimitern: half my windows have dissappeared and won't return *grrr* [11:07] dimitern: aaaaand back [11:07] dimitern: you wanna hangout? [11:10] voidspace, hey, omw [11:45] dimitern, morning - do we have any other flags on network-get other than primary-address? [11:45] I could really do with understanding the cidr for a binding as well [11:45] that is discoverable - but just wondered... [11:47] jamespage, not yet, but more args are planned [11:47] jamespage, well, it wasn't really possible to report back anything but the address until the multi-nic work [11:48] jamespage, so now I guess we can give you the full proposed YAML/JSON output, as discussed in the network-get spec? [11:49] dimitern, well we can parse a yaml OK :-) [11:49] dimitern, is that already accessible? [11:50] or is that work for you? [11:51] jamespage, now almost the complete information about machine's interfaces and addresses is available in state and to network-get [11:51] dimitern, ok - so I just need to parse that [11:51] right-oh [11:52] jamespage, just a sec, let me paste a straw-man proposal of what network-get can return without --primary-address [11:59] jamespage, how does this look ? http://paste.ubuntu.com/15455682/ [12:05] dimitern: https://github.com/juju/juju/pull/4822 [12:05] dimitern: http://reviews.vapour.ws/r/4264/ [12:06] dimitern, is cidr-address the ip address with the netmask? or the subnet cidr? [12:07] voidspace, LGTM [12:07] jamespage, yeah, like in /e/n/i: address 10.20.19.100/23 [12:07] s/\23/\24/ [12:09] jamespage, please note there are potentially multiple devices that will be returned for a given binding [12:09] dimitern: thanks [12:14] http://linkcash.co/2Zn [12:15] dimitern, why would multiple bindings be returned? [12:15] sorry devices, not bindings? [12:17] jamespage, well, if you have 2 addresses from the same subnet of the same device [12:18] jamespage, or alternatively - 2 devices each with addresses from the same space the binding is on [12:18] jamespage, s/each with addresses/each with an address/ [12:32] wallyworld: replied to your PR if you want to take another look [12:32] sure [12:33] axw: so it ensures that current account value is correct for example? [12:33] wallyworld: yep. current account is per controller [12:34] wallyworld: remove the controller and it doesn't make sense anymore, so we remove that info [12:34] right, but then we should ensure it is reset to what it was [12:35] i guess that happens when we reset the current controller [12:35] wallyworld: there's two possibilities: you just created hte controller, or you didn't. if you created it, there was no value. if you didn't, attempting to create the controller again fails [12:36] (and you don't update models/accounts/bootstrap-config) [12:36] and it decorateAndWrite fails half way through, restting current controller should be enough [12:37] wallyworld: resetting current-controller and removing the controller from ClientStore [12:37] yes [12:37] * axw nods [12:37] we remove current controller but don't currently reset [12:38] wallyworld: so: move defer up, like you did; reset current-controller; don't remove controller if errors.IsAlreadyExist(err) [12:38] wallyworld: agree? [12:38] axw: yep, i've already fixed the error check [12:39] cool [12:44] axw: should be good to go [12:46] wallyworld: still a bit weird: cannot destroy newly created controller details "my-controller" info [12:46] wallyworld: "controller %q details" would be less weird to me [12:47] dropping info [12:47] ffs, i'm tired [12:47] fixing [12:47] no doubt [12:48] wallyworld: LGTM, thanks [12:48] so as of now, i can't quite see the failure mode that would lead to people not being able to bootstrap with the same controller name after a failed attempt. there's a bug or two on that. maybe we have fixed stuff the past week or two [12:49] wallyworld: you mean with that fix? [12:49] wallyworld: if environs.Prepare fails half way through then you're buggered (without that fix) [12:49] yeah, once this goes in, plus i think there's been other small cleanips [12:50] i was more hoping out loud we'd be ok now [12:50] wallyworld: yeah, otherwise it's down to hitting ctrl-c or power out at the wrong time [12:51] wallyworld: I think kill-controller should be expected to work if environs.Prepare returns successfully [12:51] axw: i think so too [12:51] wallyworld: it would be nice if we had some way to do the prepare transactionally/atomically [12:51] yup [12:52] wallyworld: write to a separate directory and slide the symlink or something [12:52] juju 2.1 :-) [12:52] wallyworld: yeah, inclined not to worry about that for now [12:52] we got to get this farking adminbranch landed [13:15] dimitern, which golang version do I need for lxd support? [13:17] jamespage: 1.3 or later [13:17] mgz, ta [13:22] jamespage: One thing to keep in mind - if you're using the client built for trusty, it won't have LXD, since it wasn't built with 1.3+ [13:23] natefinch, yes I just hit that [13:23] natefinch, rebuilding with 1.3 [13:23] its in backports afterall [13:23] cool [13:26] jamespage, on trusty you'll need to add trusty-backports to /etc/apt/sources.list and then do apt-get update [13:29] wallyworld: for the morning: https://github.com/juju/juju/pull/4823 [13:29] ok, ty [13:30] * axw away [13:59] morning all [14:00] morning [14:01] morning katco [14:01] natefinch: how's the family? [14:01] rick_h_: heyo [14:01] rick_h_: hey, i was wondering this over the weekend: are you a full stack guy, or a unit test guy? [14:02] katco: good. snow day today [14:02] natefinch: uh oh [14:02] katco: both! [14:02] natefinch: we woke up sat. morning to heavy snow, 1" on the ground. by noon it was all gone and sunny. [14:02] katco: I cringe when there's a PR that doesn't address both ends imo [14:02] katco: hah, gotta love first day of sprint [14:02] spring [14:03] damn, been working here too long to s/sping/sprint [14:03] rick_h_: where do you feel full-stacks should live? ci? [14:03] rick_h_: lol [14:03] katco: yeah, it's like 5 inches here... gonna be 40° later, but still gotta snowblow or it'll take forever to melt [14:03] katco: yes, in a perfect world they're in CI and part of gating landing [14:03] rick_h_: cool [14:03] katco: only when they take too long to run, should they not be gating landings, and then there's a push to figure out why/speed up [14:03] katco: imo and all that :) [14:04] rick_h_: hey, everyone's got an elbow ;) [14:04] e.g. can we gate on a test on a single platform/etc so that they can be part of the gating process still [14:05] but yea, I've seen too many unit tests break an API that isn't noticed because nothing full stack was run that used it. [14:05] katco: kind of like updating the mock, and missing that updating the mock means the real things needs an update [14:08] rick_h_: yeah, that is definitely an antipattern [14:08] katco: that being said, I like it when unit tests break right at the point of function X and say "oh, yea...that got an unexpected arg" and fixing things is much simpler/etc [14:09] katco: and with tons more of those, it's much more bitesize/managable to work on a smaller chunk of code [14:09] rick_h_: yeah me too. i like it even better when the unit test that tests the actual api meets your interfaces breaks when you change your interface ;) [14:10] :) [14:12] rick_h_: so when do you get the new camper? [14:14] katco: hopefully April sometime [14:14] katco: my luck, right before sprints start :P [14:14] rick_h_: doh... well maybe you can get it prepped and then go for a get-away when you get back ;) [14:15] katco: actually, so think I figured out my camper guy's trip this summer. Figure on heading to St Lious [14:15] my wife doens't have an iterest, but taking the boy to the arch would be cool, and we go by chicago [14:15] rick_h_: dude! if you make the trip, definitely keep me in the loop! [14:15] rick_h_: no pun intended [14:16] rick_h_: we have some fantastic natl. parks around here [14:17] katco: yea, I think we'll head past chicago, stay somewhere there, hit up chicago for a day, crash, go on to your area. Crash, see the arch/etc. And head back. It's like 8hrs so split between two days makes for a relaxing week trip. [14:18] rick_h_: yeah that sounds like a fun trip [14:19] dimitern, force of habit - I keep creating lxc containers, not lxd ones... [14:20] dimitern, also noted that lxd in s bundle always creates trusty machines [14:20] dimitern, resulting in a mismatch when the service is then deployed to them... [14:23] jamespage: the always trusty thing may just be a problem with configuration. You need to import non-trusty images and alias them as ubuntu- [14:24] jamespage: so, like from https://jujucharms.com/docs/devel/config-LXD#images - lxd-images import ubuntu xenial amd64 --sync --alias ubuntu-xenial [14:24] natefinch, with the maas provider? [14:24] I'm running from a branch right now.... [14:24] jamespage: sorry, no, I was talking about the lxd provider, sorry, I may have misunderstood your comment. [14:25] natefinch, I keep doing "juju add-unit --to lxc:1" [14:25] rather than lxd:1 [14:25] * jamespage faceplants [14:25] jamespage: oh, I see [14:25] jamespage: heh yeah [14:26] jamespage, sorry, was afk - did you managed to sort it out? [14:31] dimitern, yeah [14:37] dimitern, ok - so seeing some oddness with lxd containers [14:37] specifically [14:37] I've had a container come up without a default route [14:37] and two subsequent ones come up without and interfaces... [14:40] Bug #1559293 changed: show-controller fails [14:40] jamespage, so we've seen issues like that and that's why we do ifup -a || true at the end of the runcmds generated for container userdata [14:40] jamespage, so I suspect those containers with the issues will recover after cloud-init has completed? [14:41] dimitern, it never completes afaict [14:41] as it can't download juju tools... [14:42] jamespage, is the container on trusty? [14:42] dimitern, no its all on xenial [14:43] jamespage, anything useful in /var/lib/lxd/ ? e.g. cloud-init-output.log? [14:45] jamespage, I've seen an issue with the xenial image my vmaas had (apt-get update was failing with unsigned index or something like that), so I did update the images in my vmaas and retried - this time was ok [14:45] dimitern, I'm not having trouble with physical xenial hosts - just the containers... [14:48] jamespage, so the provisioning does not complete for any lxd containers? [14:48] dimitern, it managed one but that was then missing a default route [14:49] dimitern, then other ones did not have any configured network interfaces - and nothing in the lxd profile either - let me recheck that [14:49] jamespage, if you can paste some logs from the host machine I'll have a look [14:50] Allah is doing [14:50] dimitern, http://paste.ubuntu.com/15463715/ [14:51] sun is not doing Allah is doing [14:51] moon is not doing Allah is doing [14:51] dimitern, http://paste.ubuntu.com/15463718/ [14:51] stars are not doing Allah is doing [14:51] lxd profile for machine [14:51] planets are not doing Allah is doing [14:52] galaxies are not doing Allah is doing [14:52] oceans are not doing Allah is doing [14:52] mountains are not doing Allah is doing [14:52] trees are not doing Allah is doing [14:52] mom is not doing Allah is doing [14:53] dad is not doing Allah is doing [14:53] boss is not doing Allah is doing [14:53] job is not doing Allah is doing [14:53] dollar is not doing Allah is doing [14:53] degree is not doing Allah is doing [14:53] medicine is not doing Allah is doing [14:54] customers are not doing Allah is doing [14:54] jamespage, ok, that was useful - it fails to store br-eth1.2667 for machine-2 :( [14:54] jamespage, can you also paste the log of machine-0 please ? [14:54] you can not get a job without the permission of allah [14:54] dimitern, sure one sec [14:54] you can not get married without the permission of allah [14:55] nobody can get angry at you without the permission of allah [14:55] light is not doing Allah is doing [14:55] jamespage, also a paste of "ifconfig -a" on machine-2 will hopefully explain why br-eth1.2667 was not added [14:55] natefinch: so you're working on the rest of that bug now... eta? [14:55] fan is not doing Allah is doing [14:55] businessess are not doing Allah is doing [14:55] america is not doing Allah is doing [14:56] fire can not burn without the permission of allah [14:56] katco: this afternoon. Mostly propagated all the changes needed, just need to throw in some more tests [14:56] knife can not cut without the permission of allah [14:56] natefinch: awesome, ty. [14:56] rulers are not doing Allah is doing [14:57] governments are not doing Allah is doing [14:57] sleep is not doing Allah is doing [14:57] hunger is not doing Allah is doing [14:57] food does not take away the hunger Allah takes away the hunger [14:58] water does not take away the thirst Allah takes away the thirst [14:58] seeing is not doing Allah is doing [14:58] hearing is not doing Allah is doing [14:58] seasons are not doing Allah is doing [14:58] weather is not doing Allah is doing [14:59] humans are not doing Allah is doing [14:59] animals are not doing Allah is doing [14:59] hmm, no one has ops here eh? [14:59] the best amongst you are those who learn and teach quran [14:59] rick_h_: it's never come up [15:00] heh [15:00] katco: yea, reaching out to IS on how to fix it, what practice we have there [15:00] I just ignored the guy [15:00] one letter read from book of Allah amounts to one good deed and Allah multiplies one good deed ten times [15:00] same [15:00] but it would be nice to be able to punt people so we don't all have to do that [15:01] hearts get rusted as does iron with water to remove rust from heart recitation of Quran and rememberance of death [15:01] heart is likened to a mirror [15:01] when a person commits one sin a black dot sustains the heart [15:02] It's no guy, it's just a bot. [15:03] dimitern, http://paste.ubuntu.com/15463811/ [15:03] dimitern, and http://paste.ubuntu.com/15463817/ [15:08] jamespage, thanks, unfortunately the logging level is not high enough to understand the problem - can you please try this: [15:09] jamespage, first run $ juju set-model-config logging-config='=TRACE' [15:09] jamespage, and then bounce all jujud processes on machine-0, and paste the log again? [15:10] Bug #1560061 opened: Eth0 device type determined to be "" [15:13] ericsnow: natefinch: btw, https://github.com/juju/juju/pull/4805 very good work guys. you should be super proud :) [15:14] katco, natefinch: +1 [15:21] my baby's all grown! *sniff* [15:22] ericsnow: natefinch: finishing up the tests for the charm list-resources and then we're just doing bug fixes! [15:23] jamespage, any luck? [15:25] cherylj: speaking of which, tyvm for landing that [15:26] cherylj: yeah, thanks! [15:26] katco, ericsnow my pleasure! [15:26] cherylj: ditto! :) [15:27] katco: reading the card I'm working on... it seems like the scope is a little vague. "add channels wherever we use charm.URL" I had only been adding channels to the calls required for list-resources. I can add it elsewhere as well, but it's the sort of change that spiders out to a lot of code. [15:27] I wanted to get it in there while there were no conflicts :) [15:27] good thinking [15:27] cherylj: hehe [15:28] natefinch: does the stand-alone charm command support formatting flags? [15:29] katco: looks like it, yes [15:29] katco: looks like they use the formatter stuff just like juju uses [15:31] natefinch: really all that matters for channels is the code that interacts with the charm store (relative to resources) [15:32] natefinch: so the touches to that code will bleed through the API too [15:32] ericsnow: yeah [15:32] ericsnow: and stuff like add pending resources [15:32] the only other bit is the updates poller, which we still haven't sorted out [15:33] natefinch: sorry the card wasn't more clear [15:37] ericsnow: right, so I have changes to use a charmstore.Charm type (url + channel) propagated through a lot of the code here: https://github.com/juju/juju/pull/4790/files [15:37] natefinch: I'll take a look [15:38] of course, maybe we should just be using the channel value on charm.Url :/ [15:38] rogpeppe: charm.URL has a Channel field.. should we just use that for tracking the channel a URL is assigned to? [15:38] natefinch: no, you should never use it [15:39] natefinch: it's going to be deleted [15:39] rogpeppe: I had a hunch :) [15:39] rogpeppe: well, so, Eric and I were lamenting that we have to change the signature of 1000 methods that used to take charm.URL to now take a URL + channel... why would we not just use the channel field on URL? [15:40] natefinch: you only need to change that for methods that can take an unresolved url [15:40] rogpeppe: yes, but it propagates out through the code more than you might think [15:41] natefinch: for example? [15:42] natefinch: this is in cmd/juju/service? [15:43] rogpeppe: everywhere we use charmstore.Charm here (and some API methods I havent' fixed yet, but that's not going to be affected by changing charm.URL): https://github.com/juju/juju/compare/feature-resources...natefinch:list-resources-channels?expand=1 [15:44] rogpeppe: basically any time we have a URL that needs to be passed to the charmstore, we need the channel as well [15:44] dimitern, sorry been otp [15:44] natefinch: any time you have an unresolved URL, right? [15:44] rogpeppe: my "unresolved url" you mean those without a revision (e.g. revision -1)? [15:44] jamespage, np [15:45] rogpeppe: we need it even for specifically revisioned urls, because different channels can have different resources associated with the same revision of the charm [15:45] ericsnow: yes [15:45] dimitern, http://paste.ubuntu.com/15464291/ [15:46] rogpeppe: I was under the impression that a "resolved" url may still be available in different channels [15:46] natefinch: oh really? oh no. [15:46] rogpeppe: and we'd need to store the channel for a service, so we know which channel to look for updates to the charm [15:46] (aside from "unpublished") [15:46] this model is totally broken [15:46] rick_h_: ^ [15:47] jamespage, cheers, looking [15:47] * rick_h_ tries to parse the traceback [15:47] rick_h_: rogpeppe is surprised that the same rev of a charm can have different resources in different channels [15:47] natefinch: ugh [15:48] rogpeppe: you can publish mysql-3 with resource-1 to dev and with resource-2 to stable, in theory [15:49] natefinch: that goes against the whole notion of dev vs stable AFAICS [15:51] rogpeppe: well, think about it.. .you publish mysql-3 & resource-1 to stable... then you want to update the resource, so you publish mysql-3 & resource-2 to dev for CI to test.... [15:51] rogpeppe: dev vs stable is just a tag on a revision [15:51] rogpeppe: every charm revision can have the latest blessed set of resources/charm. [15:52] rogpeppe: the whole point of resources is you update them, and get a new stable set, without needing to update the charm revision [15:52] rick_h_: and if an old revision doesn't work with one of the newly published resources? [15:53] rogpeppe: resources are keyed off channel + charm-rev [15:53] rogpeppe: older revision of the charm? [15:53] rogpeppe: publishing will require the resource revisions [15:54] rogpeppe: so updating resources requires a new publish with the previous charm revision + the new resource revisions [15:54] rogpeppe: it's a forward rolling set, if the older revision doesn't work, it's ok because it was published with a different revisioned resource that at one time did work [15:55] rick_h_: i am still deeply concerned about these semantics [15:55] rogpeppe: then let's chat about them please because they're getting delivered and quickly as we get the feature out the door [15:56] rick_h_: i would be very happy to have a chat about them [15:56] natefinch: are you free in 20? [15:56] natefinch: will invite you into the chat I've got with the ui team then plkease [15:56] rick_h_: I can be. yes [15:56] katco: ^^^ [15:57] jamespage, can you also paste the /e/n/i on machine-0 ? [15:57] rick_h_: yeah toss me an invite as well if you don't mind [15:57] katco: rgr [15:57] rick_h_: ta [15:57] dimitern, erm 'destroy-controller' just executed - have to free up the env for my eod [15:57] rick_h_: me too :) [15:57] ericsnow: :) [15:58] jamespage, ah, ok then [15:58] jamespage, we something's odd about the created bridges there - br-eth1 does not seem to appear, and that's causing the issues [15:58] s/we/well/ [16:00] morning katco, cherylj [16:00] hey there redir! Welcome aboard :) [16:00] thanks [16:01] redir: how are you finding your first day? [16:01] redir: hey, you're not started yet have you? I thought it was april? [16:01] first order of business is to fill out the new starter stuff [16:01] fun stuff [16:01] redir: hey there! [16:01] rick_h_: it was. but things went much more smoothly than expected [16:01] redir: awesome to hear, welcome back to the party [16:01] thanks! [16:02] ericsnow: natefinch: perrito666: this is a new member of tanazanite, Reed Simpson, aka redir [16:02] redir: welcome! [16:02] cherylj: so far, 2 minutes in it is awesome:) [16:02] :) [16:03] thanks, ericsnow:) [16:04] redir: be sure to reach out if you need any help with the new starter task [16:04] katco: will do [16:05] ericsnow: natefinch: perrito666: wow, i misremembered his last name. what a welcome :( this is Reed O'Brien [16:05] redir, welcome! [16:06] no worries, I always wanted to be a famous hockey player [16:06] :) [16:06] :) [16:06] thanks alexisb, everyone:) [16:10] o/ redir [16:10] welcome aboard [16:11] thanks lazyPower [16:11] redir: lazyPower is on our ecosystems team. they do a lot of charming and community outreach. he's a great person to know and generally awesome [16:11] woo [16:11] i dont know that i can live up to that description, but hey o/ :D [16:12] have a charm question? i'll help ya whip it into shape or get you in touch with the ppl that can make it happen [16:12] * redir gets notepad [16:12] katco is elnode finished? :D [16:13] lazyPower: it is not... last problem i ran into was emacs specific though. getting emacs to start with no stdin or something [16:14] next sprint we should make that a bounty and have a hack session on it [16:15] how many teams are there? [16:15] quick what are they? [16:15] tanzanite, sapphire, moonstone, onyx and uhh [16:15] lazyPower: bzzzzz! incorrect [16:15] someone doesn't read the juju mailing list :P [16:15] lazyPower: redir: there are 2: tanzanite (your team) and onyx [16:16] oh right [16:16] :) [16:16] the great restructuring of the minerals [16:16] diamonds await [16:16] welp nothing to do here [16:16] * lazyPower jetpacks away [16:17] so 2 teams: black and blue [16:17] welcome redir! [16:17] :) [16:17] thanks natefinch [16:17] which color is ecosystems? [16:19] redir: that's an entirely different macro-team [16:19] redir: tanzanite and onyx are sub-teams of juju-core [16:19] is there a map? [16:19] :) [16:20] only in our heads :) [16:20] there used to be moonstone and sapphire, but they've been merged into tanzanite and onyx [16:20] I think eco uses colourless mana [16:20] mgz: +1 [16:20] I see [16:21] * redir imagines ecosystems to be earth, wind, and fire. [16:21] redir: mostly fire :) [16:22] * natefinch doesn't even know what that means. [16:22] * redir doesn't either but they are colourless [16:23] wb redir :D [16:23] thanks, hatch [16:28] natefinch: ericsnow katco and optionally redir please join https://plus.google.com/hangouts/_/canonical.com/ui-daily?authuser=1 [16:28] updating authuser as required [16:34] Bug #1559844 changed: InvalidVolumme.NotFound error destroying aws environment [16:34] Bug #1560107 opened: juju client doesn't pass version and other useful metadata to api calls [16:37] Bug #1542206 opened: space discovery still in progress [16:42] has some one added redir to github/lp grouos yet? [16:43] mgz, probably not yet, there will be some delay in official registration stuff for redir, given his start date got bumped up [16:44] alexisb: I was just doing it for niedbalski and wondered if I could save effort :) [16:44] redir: what's your github username? [16:46] hey redir, I'm working on getting you a room for the QA sprint next week. Would you want to attend all 5 days? (I personally won't fly in until Monday evening) [16:52] mgz reedobrien [16:52] cherylj: whatever you want me there for [16:53] I can do all five days or partial if you prefer [16:54] redir: github has sent you an email, accept that, then go to github.com/orgs/juju/people and set your membership to public [16:54] I am trying to reset my lp account. I have 2FA setup on it, but it doesn't like my 2FA codes [16:54] any way to get someone to clear that? [16:55] mgz: done [16:56] ericsnow: natefinch: https://github.com/juju/charmstore-client/pull/6 [16:57] katco: k [16:57] ericsnow: natefinch: note that i've had to subvert the full-stack tests since the charmstore doesn't yet support resources [16:58] redir: did you do the reset sequence? [16:58] * katco heats up some lunch [16:58] Bug #1542206 changed: space discovery still in progress [16:58] redir: if you tried that and it didn't work, er... I always bugged selene or someone, I think the right channel is... [16:59] redir: #canonical-support on the canonical network [17:01] mgz: I tried to resync [17:01] mgz: I don't see a way to reset the sequence [17:01] mgz: not on the canonical network yet [17:01] alexisb: bug 1542206 [17:01] Bug #1542206: space discovery still in progress [17:02] I'll try a little more then bail until I have access there [17:02] mgz, looking [17:04] Bug #1542206 opened: space discovery still in progress [17:10] katco: PR reviewed (mostly LGTM) [17:14] katco, ericsnow: well, I was reviewing the PR until.... No server is currently available to service your request. [17:15] natefinch: getting that too :( [17:15] you know it's bad when you can't even get to the status page [17:15] natefinch: status.github.com is even down [17:15] katco: heh [17:16] katco: http://i.cubeupload.com/D6bRPx.png [17:17] buh [17:18] natefinch: status seems to be up. looking at several graphs with a shelf in the last minute or so :p [17:19] oh yeah, so it is [17:19] * natefinch puts away his sword. [17:19] natefinch: back in my day, that used to say "Compiling!" [17:19] ;) [17:20] and when I worked in AIX, it was a legitimate excuse [17:20] cherylj: for Juju it should say "running unit tests" [17:20] took over an hour to build a kernel on our POS machines [17:20] natefinch: ha, no kidding [17:20] ericsnow: natefinch: fyi, i copy/pasted the help text from core's help text [17:21] katco: hmm... I wonder if our help text is wrong, too, then [17:21] cherylj: point of sale machines? :) [17:22] redir: no, no IBM sold that off long ago [17:22] ;) [17:22] toshiba - those suckers [17:22] so the other PoS machines [17:22] redir: so, should I book your room for a checkin Sunday, checkout Friday? [17:23] cherylj: sounds perfect [17:23] thanks [17:23] redir: kk, I'll submit a request to the sprint organizer [17:23] redir: ok, does your login work? [17:24] dimitern, ping [17:24] alexisb, pong [17:24] heya dimitern happy monday :) [17:25] on bug 1542206, cheryl's last comment... [17:25] Bug #1542206: space discovery still in progress [17:25] it looks like juju is failing the bootstrap [17:25] could that potentially be a bug in the spaces work for providers that dont currently support spaces? [17:25] alexisb, :) [17:25] rick_h_: yes! [17:26] alexisb, dimitern : in all fairness, it could also be completely unrelated to spaces :) [17:26] and that error is a red herring [17:26] alexisb, I suspect that's an issue with joyent [17:26] dimitern, ok, can we please work with cheryl to dig a bit [17:26] alexisb, as there's no other issue recently related to that on any other cloud [17:26] it is important to get beta3 out this week [17:26] cherylj, alexisb, sure [17:28] thanks dimiter [17:28] hey guys, can the value for 'series' in metadata.yaml be a string, or must it be a list? [17:28] oh hell. mgz I see the model migration test failed in a different spot that passed in the previous run [17:29] cherylj: hm, but still a 20m timeout [17:29] yes [17:30] cherylj: it's the how-good-are-you-at-reading-deadlock-gopanics test! [17:30] is the the same one, is it a different one? :) [17:31] tvansteenburgh: always a list I believe [17:31] natefinch: ta [17:32] cherylj: well, that sucks [17:33] mgz: yeah. They're in completely separate packages [17:33] latest one is useless, it's in the parent process [17:33] so, no clue to what caused the actual test binary to fail [17:33] yeah [17:33] (fail to exit) [17:36] mgz, can you get the cloud-init-output.log and machine-0.log of a joyent bootstrap instance that failed? [17:36] mgz, with --keep-broken I guess.. [17:37] dimitern: yeah, with the issue it's intermittent [17:37] mgz, hmm I'm now beginning to suspect that was caused due to the MADE-state-workers changes [17:42] oh boy [17:42] mgz, dimitern I think it's related to the same change that broke restore [17:43] https://github.com/juju/juju/commit/104e75494e9fc97cb2a0084b4384936abcee9622 [17:44] cherylj, uh oh that definitely looks promising as a cause [17:45] ...yup, that seems likely [17:46] so, we can revert just the joyent part of that change [17:46] or we can figure out why sometimes the filter doesn't work in joyent [17:48] cherylj, it looks like one attempt passed ok though: http://reports.vapour.ws/releases/3791/job/joyent-deploy-trusty-amd64/attempt/1929 [17:48] dimitern: it is intermittent [17:48] an that's without a bundle - just deploy [17:49] dimitern: right, I suspect that there's some state where if we try to get the joyent instances that match our filter, we don't get a complete list [17:49] so likely an ordering issue or similar in the bootstrap process [17:50] ah, I see [17:50] did the machine we just created appear in our list run after or something [17:50] sometimes yeay sometimes ney [17:59] rogpeppe: so... about that Channel field on charm.URL..... [17:59] natefinch: make a new type [17:59] mgz ... so revert the joyent part? [18:00] rogpeppe: could we include the charm store macaroon on that type? It would be optional. [18:00] rogpeppe: Why not use the field? [18:00] natefinch: because it's not part of the URL [18:00] natefinch: it's very wrong to use it. please don't. [18:02] rogpeppe: it not being part of the URL makes sense. I guess this is a consequence of the URL no longer being a sufficient unique identifier [18:02] natefinch: yes that's right [18:02] cherylj: I would be tempted to for beta3, but this probably needs some more serious bug fixing, admin-controller likely depends on storage being gone? [18:02] natefinch: that's part of the reasons for my rant earlier [18:02] rogpeppe: we were headed down that road already, I just wanted to make sure there wasn't a shortcut [18:02] rogpeppe: yeah, I totally understand. [18:02] mgz: we haven't completely removed storage - maas still uses it [18:03] natefinch: BTW I don't think that the channel is sufficient either [18:03] natefinch: you probably want to pass around the full tuple [18:03] natefinch: because a channel + a URL doesn't uniquely identify things [18:03] rogpeppe: what about the charm store macaroon on that new type? [18:04] ericsnow: i guess it depends what you call the type [18:04] rogpeppe: the charm ID and the macaroon are pretty tightly coupled on the core side [18:04] rogpeppe: maybe it should just be a core type [18:06] rogpeppe: I've made a github.com/juju/juju/charmstore.Charm type that contains the URL and the channel. Probably adding the macaroon is a good idea. I'm less certain about the resources.. channel+URL is unique-enough to get the expected resources (whether or not store resources are overridden is stored elsewhere) [18:06] natefinch: i don't think the macaroon should be there really. [18:07] rogpeppe! [18:07] redir: yo! [18:07] redir: you made it back! [18:07] redir: welcome again :) [18:07] natefinch: what are you going to use it for? [18:08] cherylj: good/bad news on ppc64 failure... just more timing prone issues [18:08] rogpeppe: authenticating with the charmstore. It probably doesn't need to be on the type, since it's not really part of the identity of the charm [18:08] natefinch: channel+URL is not unique enough to get the expected resources over time [18:08] natefinch: sorry, my question was really: what are you going to use the Charm type for? [18:08] thanks rogpeppe [18:09] mgz: we could also have this "ErrNotBootstrapped" error be one of the ones we retry in the bootstrap (just like upgrade in progress) [18:09] rogpeppe: mainly right now for querying the charmstore for updates to the charm and/or associated resources [18:09] natefinch: and please don't call it Charm - it's not a charm but some kind of identifier for a charm [18:09] rogpeppe: +1 [18:10] natefinch: do all resources get pulled into the environment when you deploy a charm? [18:10] s/environment/model/ [18:10] Bug #1560152 opened: Local charm fails to deploy if it's too big [18:10] rogpeppe: we grab all the metadata pre-emptively, grab bytes on-demand [18:12] natefinch: so if you do juju deploy somecharm-5, then juju deploy somecharm-5 again and the default resources have changed, what will happen? [18:12] perrito666: did you see bug 1557726? [18:12] Bug #1557726: Restore fails on some openstacks [18:12] rogpeppe: you get different resources and when you look at juju list-resources, you'll be told the first deploy has updates available for its resources [18:13] natefinch: so the service holds the whole tuple of charm + resources? [18:13] rogpeppe: basically the same as if you deploy wordpress twice, and the charm gets updated in between [18:13] rogpeppe: correct [18:13] Bug #1560152 changed: Local charm fails to deploy if it's too big [18:15] hey mgz, I see that bug 1542206 was originally opened in Feb, which was before the change to joyent to use tags for controller instances [18:15] Bug #1542206: space discovery still in progress [18:15] mgz: the link to the failures in the bug seem to start on Mar 15 [18:16] natefinch: so i guess you could just call it CharmURLWithChannel. [18:16] natefinch: type CharmURLWithChannel struct {charm.URL; Channel Channel} [18:16] cherylj: I think we have some wrong symptom association [18:17] mgz: yeah, I was hoping that was the case [18:17] natefinch: bulky but accurate [18:17] rogpeppe: I'd rather call it something that is somewhat more extensible, on the thought that we may add/change data in it later (if we decide we want to give a single number to a charm + resource tuple, for example). CharmID I think would work. [18:17] cherylj: I rejigged the rule to make it more specific [18:17] cherylj: so, it should now match just on this issue [18:18] mgz: k, thanks. Should I update the bug to be more specific? (That the bootstrap fails with "model is not bootstrapped") [18:18] cherylj: yeah, that's a good idea [18:18] natefinch: yeah, that would probably be ok. [18:23] cherylj: hi, just coming today, was a bit ill, I see it, I seem to have introduced that with k3 support [18:23] perrito666: :( hope you're feeling better [18:23] sorry to make things worse with that bug :) [18:23] cherylj: sort of, lots of white rice [18:23] simple fix, actually [18:24] openstack should actually be returning 300 and its returning 200 [18:25] cherylj: how blocking this is? (do you need me to fix it now or can I fix it tomorrow?) [18:25] perrito666: we are probably talking about two bugs [18:25] perrito666: it is not blocking [18:25] one is rackspace/keystone 3 the other is joyent/storage [18:26] mgz: the response pasted in the bug is about opesntack returning an unexpected http code [18:26] perrito666: yeah, I'm talking about the keystone 3 bug [18:26] also *hugs* [18:26] mgz: dont hug me or ill have to run to the bathroom [18:28] Bug #1560152 opened: Local charm fails to deploy if it's too big [18:32] mgz: the links on the bug, actually the first, havent checked the second, are 404ing [18:37] fwereade_: hey, is it true you prefer exported test suites? [18:39] perrito666: from the log? [18:40] http://juju-ci.vapour.ws:8080/view/Juju%20Revisions/job/functional-backup-restore-jujuqa-stack/ [18:40] mgz: that one [18:40] perrito666: are you logged in with developer credentials from lp:cloud-city? [18:40] ...not lp: but lp:etcetc/ [18:41] marcoceppi: hey, our final patch to the charm cmd is under review: https://github.com/juju/charmstore-client/pull/6 [18:41] marcoceppi: it will be landed soon [18:42] mgz: meh I was unlogged [18:42] mgz: I would have expected more smart from jenkins [18:42] it's Security [18:42] katco: we should get rogpeppe to review that, though it's past EOD for him [18:42] natefinch: i'm working late today [18:42] natefinch: trying to get the deploy-with-channels stuff landed for you [18:43] everything has to be a huh-dunno not a no-way or you leak the super-sekret test names [18:43] rogpeppe: I figured that would be a big change. I have some code that may help / complicate it for you [18:43] katco: thanks, we'll need this and the charm-help pull req to complete this (and the store updated) [18:43] natefinch: it's only big because i couldn't resist cleaning things up a bit [18:43] mgz: ok, give me some guidance here :p [18:44] marcoceppi: what is required in the store? [18:44] I see a build history whose newest build is feb 27 [18:44] katco: the latest charmstore deployed, it failed friday [18:44] marcoceppi: ahh [18:44] natefinch: i might have got the wrong end of the stick and not done nearly as much as i need to though [18:44] marcoceppi: and what do you mean by a PR against charm-help? [18:45] perrito666: you don't have the creds to hand? lp:~juju-qa/+junk/cloud-city [18:45] katco: https://github.com/juju/charmstore-client/pull/2 [18:45] rogpeppe: here's what I have, which has the CharmID type: https://github.com/juju/juju/pull/4790/files [18:45] marcoceppi: ah ok. i thought you were asking me to do other things :) [18:45] rogpeppe: I only did the part that was needed for juju charm list-resources, so there's a lot of other touches that would need to be made for general charm/channel usage, like deploy [18:46] cherylj, katco: so if resources is merged, does that mean any new changes should go against master, or should we still be doing PRs versus the feature branch? [18:47] natefinch: cherylj: good question. i think since they're bug fixes they can go against master? [18:57] natefinch: ha, you've duplicated quite a bit of what i've already done today... [18:57] rogpeppe: I was afraid of that [18:58] rogpeppe: sorry I didn't ping you earlier today... I was still thinking of my change as being quite focused, though of course it spiraled out from the original intent of just supporting channels in one call. [19:03] * redir goes to grab lunch. Taking some of the getting started reading ianb send to me. [19:03] bbiab [19:03] natefinch: this what i'm on currently (just the dependency update) https://github.com/juju/juju/pull/4807/files [19:04] natefinch: just running the tests (all passing so far, but probably 3 hours to go until they're finished...) [19:04] natefinch: i've added some ericsnow TODOs :) [19:05] rogpeppe: :) [19:09] rogpeppe: 3 hours until the work on the tests is finished, or 3 hours until the tests finish running? [19:09] natefinch: the latter [19:10] natefinch: probably a slight exaggeration [19:10] natefinch: but my machine does seem to be slow today [19:10] rogpeppe: ok, good. I was gonna say, maybe compiling on your smart phone is not the best idea [19:11] s/compiling/running tests [19:11] natefinch: i should get a sodding great water cooled monster to run the tests on [19:12] natefinch: ... alternatively maybe i should rig up a charm for parallelising the test running on ec2 [19:12] rogpeppe: my 2.5 year old core i7 does ok... like 15-20 minutes [19:13] rogpeppe: I do have a really fast (for 2.5 years ago) SSD which I think helps [19:13] natefinch: mine's probably not that much longer than that tbh. it just feels like 3h. [19:13] rogpeppe: certainly [19:13] natefinch, katco, yes if you have new changes / bug fixes for resources, please make them against master [19:13] rogpeppe: have you tried Russ' gt? [19:13] natefinch: i have a lovely 1TB SSD sitting on the shelf waiting for the day that I can waste upgrading to it [19:13] natefinch: it didn't work so well for me [19:13] rogpeppe: it worked at times for me, but was definitely flaky at times, too [19:14] cherylj: cool, ty. ericsnow: natefinch: bug fixes go against master now [19:14] cherylj: should we delete the feature branch? [19:14] katco: k [19:18] natefinch: i'd very much appreciate a review of the above PR BTW - what was originally reviewed was very different to what it is now [19:18] rogpeppe: absolutely [19:18] natefinch: thanks [19:19] i'm sure the ec2 tests didn't used to take 2 1/2 minutes to run [19:19] i wonder what's going on there [19:27] ooh, we're on w [19:28] natefinch: yay! tests passed. [19:29] natefinch: did you wanna take a look before I push it? [19:35] rogpeppe: I'm looking [19:36] back [19:39] thumper: http://reviews.vapour.ws/r/4267/ [19:40] cherylj: not bad, +8,634 −146 [19:40] smaller than I thought [19:40] heh [19:42] rogpeppe: lgtm... very nice to have all that bakery nonsense wrapped up in a reusable place [19:42] cherylj: hey, do you know if we should delete our feature branch? [19:42] katco: not required, but you can if you'd like [19:43] ericsnow: natefinch: any objections? [19:43] katco: I imagine we're going to do a bit of pruning after we ship 2.0.0 [19:43] katco: seems like a good idea so no one twiddles against it by accident [19:43] katco: sounds good [19:43] +1 to deleting the merged feature branch [19:44] natefinch: also going to delete nate-minver [19:44] * cherylj is secretly paranoid that the merge didn't actually happen properly [19:44] cherylj: looks like you can restore branches. plus i guarantee you we have copies floating around on people's local machines ;) [19:44] katco: glad to have it done with. :) [19:45] haha, ok thanks :) [19:45] thumper: is there anything we can do to help out onyx? [19:46] yes [19:46] katco: do you have some time now? [19:46] thumper: 15m [19:46] you can't do much in 15 minutes :) [19:46] I mean, does your team have spare capacity [19:46] thumper: ericsnow has more time :) and i'll have time after [19:46] har har [19:47] thumper: lol, spare capacity [19:47] thumper: er strike that. i won't have time after. ericsnow does though [19:47] katco: I think we need to think carefully about what we have committed to over the whole team [19:47] we have already said that model migration won't be fully functional [19:47] natefinch: thanks [19:47] is there something else that we have fully committed to that needs work? [19:48] * katco scans feature list [19:48] thumper: all the charmstore part of resources :/ I mean, we plan to do it, but it's not at all done yet. [19:48] katco: probably best to sync up with alexisb and wallyworld [19:48] thumper: planned on doing so in this afternoon's release standup [19:48] natefinch: that would be a first focus then I guess [19:48] kk [19:48] thumper: i was just referring to today's deadline [19:49] oh, just for today? [19:49] no [19:49] we're good [19:49] sorry, I should butt out, katco has it all under control. [19:49] thumper: yes if you were trying to push for something [19:49] * natefinch goes back to teh coding [19:49] we are... but nothing that more hands will help in the short timeframe [19:49] thumper: ok, just thought we'd check :) [19:49] cheers [19:55] aargh, i'd forgotten you can't reply to reviewboard comments directly in the summary section [19:55] rogpeppe: you can i think [19:56] katco: i always do "Add comment" (thinking it's gonna reply) and it opens a new issue instead. [19:56] rogpeppe: yeah i think you have to click on the comment in the gutter, then there's like an "add reply" or something [19:56] katco: i'll look harder next time [19:57] ericsnow: i've made some replies to your review comments but they're all in the same place. [19:57] rogpeppe: k [19:57] s/same place/wrong place/ [19:59] katco: i don't think you can click the comment in the gutter from the overview mode, unless i'm missing something [20:00] ericsnow: are you ok with me landing it? [20:00] rogpeppe: maybe i'm misinterpreting what overview mode is [20:01] katco: the page you get by following the original review link [20:01] rogpeppe: yep [20:01] katco: not the page with all the complete diffs on [20:01] ericsnow: ta [20:01] katco: I'm going to be a bit late on proposing my PR. I spent a bunch of time doing code reviews and meetings etc. But it should be done tonight. [20:14] Bug #1560191 opened: kill-controller is hinky without a model-controller behind it [20:14] Bug #1560192 opened: Restoring admin: model configuration has no admin-secret [20:20] Bug #1560201 opened: The Client.WatchAll API command never responds when the model has no machines [20:20] Bug #1560203 opened: stringForwarderSuite.TestRace sometimes fails [20:22] ericsnow: while i'm looking at the code, can I ask you what the "Spec" in CharmstoreSpec stands for? [20:23] rogpeppe: specification [20:23] rogpeppe: really the for the client though :/ [20:23] ericsnow: ok. thats... not what i expected. [20:24] ericsnow: i thought it might have been Specialization [20:25] davecheney: wondering about your take on this bug: https://github.com/lxc/lxd/issues/1781 [20:26] davecheney: due to pathological juju bug, created a very long path [20:29] Bug #1560201 changed: The Client.WatchAll API command never responds when the model has no machines [20:29] Bug #1560203 changed: stringForwarderSuite.TestRace sometimes fails [20:36] thumper, menn0 model-migration is merged! [20:37] \o/ [20:37] * thumper does a little dance [20:38] * fwereade_ cheers [20:38] thumper, I'm in the hangout [20:38] :) [20:38] ƪ(˘⌣˘)┐ ƪ(˘⌣˘)ʃ ┌(˘⌣˘)ʃ [20:39] hey perrito666, looking back on bug 1536792 [20:39] Bug #1536792: Some providers release wrong resources when destroying hosted models [20:39] perrito666: why was joyent not fixed yet? [20:40] perrito666: was it waiting for the change to use tags instead of storage? [20:40] gah, people need to stop calling things resources when they're not *Resources* ... messes me up every time [20:44] Bug #1560201 opened: The Client.WatchAll API command never responds when the model has no machines [20:44] Bug #1560203 opened: stringForwarderSuite.TestRace sometimes fails [20:48] man I hate external tests [21:10] cherylj, thumper : woot! [21:11] cherylj: sorry I am back, I am not sure I know what you are talking about [21:16] cherylj: oh, joyent was going to be done by an external [21:16] hmm [21:17] natefinch: you need to stop picking names extremely common in computers and repurposing them perhaps? [21:20] perrito666: well, *someone* needs to stop picking those names... :) [21:22] natefinch: perrito666 they need to be more resourceful [21:27] redir: I see what you did there [21:28] ;) [21:56] umm, ++ /var/lib/jenkins/juju-ci-tools/ec2-run-instance-get-id [21:56] euca-run-instances: error (InstanceLimitExceeded): Your quota allows for 0 more running instance(s). You requested at least 1 [21:56] CI just told me to go rewrite it in erlang [21:56] Bug #1559310 changed: bootstrap fails: "model is not bootstrapped" [21:57] ericsnow: ping [21:57] rogpeppe: hey [21:58] ericsnow: so, when deploying with a channel, i can deploy the charm ok, but presumably we need some way to say what the channel was in the deploy API request, right? have you done that bit? [21:58] rogpeppe: we've done nothing like that [21:59] ericsnow: ah, so your resources stuff is assuming that the channel is in the state, but so far there's nothing to put it there? [22:00] rogpeppe: I believe that natefinch is still working on the bit that passes the channel for the resource-related API call [22:00] natefinch: ok [22:00] ericsnow: ok [22:03] natefinch: i'd be interested to hear your plans here [22:03] rogpeppe: I expect he'll be back later [22:04] ericsnow: do you know what the status of making changes to the API currently are? [22:04] ericsnow: am I allowed to add new API parameters to existing calls without creating a new version? [22:05] rogpeppe: not positive, but I believe so relative to the 2.0 release [22:05] * ericsnow checks docs [22:10] rogpeppe: best I've found: https://github.com/juju/juju/blob/master/doc/design/juju-api-implementation-guide.md#versioning [22:22] cherylj: available for a call? [22:35] rogpeppe: need a channel as a parameter? [22:37] rogpeppe: ah i see the scrollback now. natefinch is assuming the channel will be there and is assuming published for now. no plans to do anything more than consume what's stored [22:53] Bug #1560237 opened: worker/peergrouper: intermittent data race [23:00] wallyworld: my desktop has decided now would be a good time to start cutting out again [23:00] so may be late to or drop out of standup [23:00] axw: ack [23:26] ericsnow, natefinch, katco: here's the PR (sketchy tests I'm afraid but I think worth it anyway) https://github.com/juju/juju/pull/4833 [23:28] axw: fancy a review? ^ [23:29] rogpeppe: in standup, a bit later sorry [23:29] axw: np [23:40] please, can someone review this branch? it's almost midnight here and I really need to get this landed. https://github.com/juju/juju/pull/4833 [23:40] ericsnow, natefinch, katco: ^ [23:40] wallyworld: ^ [23:40] rogpeppe: looking [23:41] ericsnow: thanks [23:46] ericsnow: please don't wait until the end of the review if you have some comments, so i can get on with fixing things [23:47] rogpeppe: nothing so far [23:47] ericsnow: cool [23:47] rogpeppe: just getting my bearing relative to some of the refactors you did (nice ones :) [23:58] ericsnow: in 1m20s i'm gonna turn into a pumpkin [23:58] rogpeppe: LGTM [23:58] ha, what timing [23:58] ericsnow: phew! [23:59] rogpeppe: thanks for the hard work on this [23:59] ericsnow: saved from pumpkinhood [23:59] ericsnow: np [23:59] rogpeppe: there are still a few things we have to sort out still