/srv/irclogs.ubuntu.com/2015/02/25/#juju-dev.txt

wallyworldsinzui: how soon before we can unblock master by resolving bug 1424777? i think you said dimiter's fix for the cloud-init issue also will address this too00:28
mupBug #1424777: local-provider precise failed to upgrade <ci> <local-provider> <precise> <regression> <upgrade-juju> <juju-core:Fix Committed by dimitern> <juju-core 1.22:Fix Committed by dimitern> <https://launchpad.net/bugs/1424777>00:29
marcoceppijw4: http://juju.fail00:29
jw4marcoceppi: beyootiful00:29
sinzuiwallyworld, I can unblock 1.22 now. we are waiting for master to test, and it is waiting on this to complete and pass http://juju-ci.vapour.ws:8080/view/Juju%20Revisions/job/run-unit-tests-precise-i386/1474/console00:30
wallyworldi get a 404 from that url00:31
sinzuiwallyworld, log in as a developer or admin00:32
jw4sinzui: internal canonical developers only?00:34
sinzuijw4, yes, sorry00:40
jw4sinzui: n/m :)   I think I already asked you so sorry if it feels harassing :-p00:41
sinzuijw4, we are just counting down the i386 tests. the aws failure required us to retest the slowest test in the suite 7 times00:41
jw4sinzui: eeesh.  out of curiousity where are you moving the bulk of the CI infrastructure?00:42
jw4sinzui: I thought I saw you say we were leaving aws for more stuff00:42
sinzuijw4, we aren't moving it. the lxcbr0 bug in 1.21.1 killed our old state server. We had to rebuild00:44
jw4sinzui: oh, I see00:49
anastasiamackatco: thnx for review!01:02
sinzuiand we have a real vivid machine01:20
mattywthumper, ping?01:21
thumpermattyw: hey, whazzup?01:29
=== TheRealMue is now known as TheMue
axwanastasiamac: not sure what you mean by performance of regexp being "not as heavy"? it's a general purpose hammer, it's *definitely* going to be heavier than searching backwards for the last non-digit.02:34
=== johnweldon is now known as jw4|afk
anastasiamacaxw: i would have thought that go is sufficiently mature that performance will be noticably degraded for lasrger volumes of string comparisons... surely comparing 100 strings with regexp split is not a big deal?..02:38
axwanastasiamac: it is not. I pointed out that it's not *currently* a problem, but it could easily become one if someone decides to extract this function. If you can easily (literally the same number of LOC) do it more performantly without loss of readability (I don't think there is any), then I don't see why you wouldn't02:40
axwI won't belabor the point, I just don't like seeing regexps used when there's a much simpler (algorithmically) way of solving the problem02:41
anastasiamacaxw: i have no problem changing the implmentation but m not convinced that there will be any gain as earlier implmentation was written with isdigit logic02:42
anastasiamacaxw: for ur suggestion to work, there would be a additional if- to cater for empty input string02:43
anastasiamacaxw: then traversing the string backwards02:43
anastasiamacaxw: if- last element is digit02:43
anastasiamacaxw: until non-digit is encountered02:43
anastasiamacaxw: then extracting first part of input as prefix02:44
anastasiamacaxw: and then parsing suffix into a number02:44
anastasiamacaxw: logically02:44
anastasiamacaxw: it's easier to read - get this 2 parts from string using regex02:44
anastasiamacaxw: :P02:44
anastasiamacs/this/these02:45
axwand then check if the number is missing... and then parse to a number.. it's almost identical.02:45
anastasiamacaxw: :D except for les lines of code :D02:45
axwanastasiamac: http://paste.ubuntu.com/10400349/02:47
axwanastasiamac: as I said, literally the same # LOC :)02:48
* axw goes back to reviewing tmpfs02:49
anastasiamacaxw: :D02:51
axwwallyworld: reviewed your tmpfs branch02:55
wallyworldty02:55
wallyworldaxw: anastasiamac: i did a benchmark and on 20000 splits, regexp takes 0.06s longer. i'm ok with that :-)03:06
wallyworldim the regexp code is easier to read, but ymmv03:07
anastasiamacwallyworld: i agreee - reg exp is easier to read03:08
anastasiamacwallyworld: howver i have detected a regexp allergy in most go programmers towards regexp on other occasions too03:08
wallyworldthem there is fighting words03:09
anastasiamacwallyworld: since most likely skillset of maintaince (and current dev) team is go, mayb idiomatic go is "the path of less resisitance"?03:09
wallyworldregexp is nit not idiotmatic Go is it?03:09
wallyworldnot not i mean03:09
anastasiamacno, but the snippet axw pasted above is idiomatic03:10
=== urulama_ is now known as urulama
axwanastasiamac: before working with Go, I spent a lot of time working with Java, C, C++ and Python both professionally and non-professionally. this has nothing to do with language choice03:11
anastasiamacwallyworld: m on the fence on that but "when in Rome...", sorry "when in Go.."03:11
axwit may be that there's some correlation :)03:11
axw*I* don't find my version any more difficult to read, but if I'm outnumbered then feel free to revert.03:12
anastasiamacaxw: i personaly have a thing against string examinations, so will always vote for regexp use in complex cases03:12
anastasiamacaxw: hwever, here m not feeling the need to come heavy on either side :D03:13
axwanastasiamac: sure, I agree. I don't think this is a complex case - I guess we have different cutoff points03:13
anastasiamacaxw: it's so trivial that m happy to follow either u or wallyworld03:13
anastasiamacaxw: since u've gone as far as writting a snippet, I thought I;d concur03:13
wallyworldi don't mind either way03:14
anastasiamacaxw: but then wallyworldwen and benchmarked..03:14
wallyworldjust leave it as whatever is there now03:14
anastasiamacaxw: wallyworld now i just need a 3rd party, opinion i think :D03:14
wallyworldopinion is go with the current diff, it works, and there's bigger things to worry about. i only did the benchmark to satisfy my assumption that regexp doesn't cost that much to use03:15
anastasiamacaxw: wallyworld: k... :D since neither of u want to **really*** put ur foot down (m having fun here)...03:16
anastasiamacaxw: wallyworld: and there is more important things to do (thnx ian for executive directive)03:17
anastasiamacaxw: wallyworld: and this PR has my name on it and I like regexp approach03:17
anastasiamacaxw: wallyworld: i'll revert03:17
axwanastasiamac: ok.03:17
anastasiamacaxw: tyvm for showing me a way to do awesome string examination tho :D03:18
wallyworldgawd, we really need to do this over a beer or 603:18
anastasiamacwallyworld: or a cider...? :D03:18
wallyworldi wouldn't revert now, andrew's solution is fine03:18
wallyworldyeah, or a cider03:18
anastasiamacwallyworld: why not? CI is blocked anyway03:20
anastasiamacwallyworld: and looking for flights is killing my buzz - there is no simple route from a ot b03:21
wallyworldyou decide :-)03:21
axwwallyworld: out of interest, what was the input you used to benchmark? :)03:23
axwregexp will be slower with a longer prefix03:23
wallyworldaxw: a shortish string, eg "myservice/12345"03:25
anastasiamacaxw: wallyworld: i think mayb we should upgrade beer and cider to harder liquor (menn0's scotch?)03:25
wallyworldi agree regexp will always be more expensive03:25
wallyworldwith an approx 30 char string and up to a 6 digit number, it's twice as slow, taking 0.6s total for 20000 strings03:27
anastasiamacwallyworld: is this realistic for juju names 30 char string and up to a 6 digit number (m guessing numeric suffix here)03:30
anastasiamacwallyworld: ?03:30
wallyworldi can't recall if there's a length limit on service/unit names03:31
wallyworldmost are shorter than that03:31
wallyworldsinzui: given the i386 test issues/failures are independent of the precise apt issue fix committed to master, should be unblock master if everything else besides the 386 tests is ok?03:47
sinzuiwallyworld, We don't know it is independent. I think I need to report a regression in 1.22 or find a way to mak a test that always passed in 1.22 pass again03:49
sinzuiwallyworld, and master doesn't get unblocked until master passed03:49
sinzuipassed03:49
sinzuiwallyworld, I can start master teasting now, but then I don't release 1.2203:49
wallyworldok, 1.22 is more important. but they are independent as far as i can see. the 386 are failing for the same reasons as always, no new failures03:50
wallyworldi wish we could just drop i386, it's 2015 after all03:51
wallyworldi also wish we had hardware to do more than one series test at a time03:52
wallyworldor i guess we'd need another jenkins set up03:52
beisnerhi wallyworld, ? for ya:   is there a way to destroy an environment but keep the bootstrap node?03:52
wallyworldnot that I know of right now, but that's coming soon03:53
wallyworldthumper: the above will be in 1.23 right?03:53
sinzuiwallyworld, ec2 healed 4 hours ago03:53
wallyworldgood :-)03:54
* thumper looks up03:54
thumperwat?03:54
wallyworldthumper: destroy env but keep state server03:54
beisnerwallyworld,  ack, ty.   i thought i had seen someone somewhere in somescript do it a while back, but maybe that was actually a dream ;-)03:54
sinzuiand the test results for 386 in trusty and precise on other machines also fail03:54
thumperwallyworld: not with the current way things work03:54
thumperwallyworld, beisner: when we have multiple environments, yes03:54
sinzuiwallyworld, so unless I can cheat juju shitty test suite, someone needs to change it03:54
wallyworldthumper: yeah, that's what i meant03:54
thumperwallyworld: not in a nice friendly way03:55
thumperit'll be possible but a little awkward03:55
sinzuiwallyworld, in summary, the 386 tests fail on precise and trusty, and in Hp and aws. that is very bad03:55
thumperuntil we get the new CLI working nicely with it03:55
wallyworldsinzui: i may have forgotten, but why do we support 386? would be nice if tests could be non voting tll we can fix03:55
wallyworldbeisner: see thumper's answer above03:55
sinzuiwallyworld, ubuntu makes it, and I understand we want to allow 386 clients and many developers wan 386 images to develop with because they are small03:56
beisnerok tyvm03:56
thumperwallyworld: I fully expect to have multiple environment creation landed in the next day or so03:56
sinzuiwallyworld, I am fine to drop 386...and we can stop make windows clients which are 386 too03:56
thumperunder a feature flag03:56
wallyworldsinzui: fair enough, 386 clients is one thing, but images, bleah, that is so last century. and what's small in 2015 anyway03:57
sinzuiwallyworld, take it to alexis so that she goes to ramm. when management says we don't need to support it we are done03:57
wallyworldsinzui: yeah, didn't mean to whinge to you, just venting03:58
sinzuiwallyworld, or as I have said in other bug reports, aws is dropping 386, joyent and hp don't support it so we need to make a decision about the windows case eventually03:58
wallyworldwho still runs windows on i386? anyone?03:59
wallyworldyou can't even buy a 386 version of windows since how long ago?04:00
sinzuiwallyworld, the os is 38604:00
sinzuiwallyworld, and windows developers don't upgrade often04:00
wallyworldreally? i thought win 7 was 64 bit04:00
sinzuiso the reasoning is windows developers need 38604:00
sinzuiwallyworld, it didn't sell that well04:00
wallyworldat least that's what my last 2 laptops shipped with since 6 years ago04:01
wallyworld64 bit04:01
wallyworldno 386 to be seen04:01
sinzuiwallyworld, just change the test suite to only test the client when 386 is involved. or as I suggested in that bug, just skip the two ping tests and we wouls have had a pass 9 hours ago04:02
wallyworldrightio, i'll skip those ping tests. the current pinger implementation is flwed anyway04:03
wallyworldand we want to replace it04:03
sinzuiwallyworld, I am rerunning the hp precise 386 test. It had only one failure and the suite is 40 minutes faster than the aws version04:05
wallyworldok, hope it passes04:05
wallyworldwow 40 minutes04:05
wallyworldhow long do the 386 tests take04:05
sinzui140minutes to 2h5m04:06
sinzuiyeah, it is that bad04:06
wallyworldand the and64 ones?04:06
sinzui20-40 minutes depending on the host. ec2 is slower that the slaves or the ppc64el hardware04:06
sinzuiwallyworld, but consider the arm64 tests, they take 18 hours04:07
wallyworldserious, so say 30mins for amd64 and > 4x that for i38604:07
wallyworldwft04:07
wallyworldsinzui: and you are still trying to get these tests to pass to bless 1.22 right?04:07
sinzuiwallyworld, aws wont allow you to deploy 386 on a large instance, which is why we built our own04:08
sinzuiwallyworld, yes to bless 1.2204:08
wallyworldsigh04:08
wallyworldsinzui: i will ask alexis about dropping support for i386; in the meantime, i will skip the pinger tests in trunk.04:09
sinzui+104:09
wallyworldif i need to skip the pinger tests in 1.22 let me know04:09
wallyworldman, master should have been unblocked by now04:09
sinzuiwallyworld, use __jfdi__ to land that04:09
wallyworldyep04:10
wallyworldsinzui: i'll only skip on i386, vivid will still fail, we need to fix the tests04:10
sinzuiwallyworld, we don't unblock unitil the whole suite passes. remember that 1.22-beta3 did pass many time on about 2.5 hours. beta4 has NEVER passed and we have retested for hours04:11
sinzuiwallyworld, you will need to fix those for 1.23 since we know vivid will be in beta04:11
wallyworldbug is currently medium, should be high or critical then if vivid is blocked04:12
sinzuiwallyworld, vivid was a moving target. IT is now close to stable04:12
wallyworldi know whole suite needs to pass, but sad that i386 failures block landings04:12
wallyworldsinzui: as soon as we add vivid voting tests, the bug can become critical?04:13
sinzuiwallyworld, yep04:13
wallyworldaxw: can i please have a trivial review to help unbock master04:22
wallyworldhttp://reviews.vapour.ws/r/1003/04:22
axwwallyworld: looking04:23
axwwallyworld: done04:24
wallyworldty04:24
* jam goes to get his car serviced for a while04:28
wallyworldsinzui: that pinger test suite is now disabled for i386 on trunk04:48
sinzuithank you wallyworld04:49
wallyworldsinzui: so, i think it's now about 4 hours or so till trunk is blessed by CI?04:49
sinzuiwallyworld, I think http://juju-ci.vapour.ws:8080/view/Juju%20Revisions/job/run-unit-tests-precise-i386/1476/console is hung like the 8 previous attempts04:49
sinzuiwallyworld, I will let this revision fail so that master can start testing04:50
wallyworldsinzui: i can backport to 1.22 if that helps unblock the 1.22 release04:50
sinzuiwallyworld, or someone before you wake04:50
wallyworldi'll do it now04:51
thumperjam: hey, you around yet?05:10
thumperfwereade: ping goes for you too?05:10
=== jw4|afk is now known as johnweldon
* thumper will try to remember to pop in later tonight to poke jam and fwereade05:17
wallyworldsinzui: 1.22 fixed also now05:21
sinzuiwallyworld, fab. My last test run I setup is at its hanging spot. I don't have a lot of hope to a last minute pass05:22
wallyworldlet's hope it passes now05:22
anastasiamacaxw: wallyworld:jam: m tak n hammer to my solution for status sort and re-writting it in a proper string-walking-full-proper-natural-sorting way to avoid concerns :D05:49
anastasiamacaxw: wallyworld:jam: i'll poke u when it's ready :) tyvm for ur points and interest :P05:50
jamanastasiamac: k05:50
jamI'm actually playing around with a strnatcmp go library05:50
jamcause I like the function05:50
jamand I found a bug in the C implementation05:50
anastasiamacjam: :D sorting is fun and finding bugs is just a s much fun as finding solutions05:52
=== ChanServ changed the topic of #juju-dev to: https://juju.ubuntu.com | On-call reviewer: see calendar | Open critical bugs: None
=== ChanServ changed the topic of #juju-dev to: https://juju.ubuntu.com | On-call reviewer: see calendar | Open critical bugs: 1424777
dimiternwallyworld, ping07:08
dimiternwaigani, I doubt you're here, but if you are PTAL: http://reviews.vapour.ws/r/1006/07:09
dimiternfwereade, and you? :)07:11
dimiterndooferlad, hey there09:11
dimiterndooferlad, how goes the port of the fix for bug 1420049 to trunk?09:14
mupBug #1420049: ppc64el - jujud: Syntax error: word unexpected (expecting ")") <deploy> <openstack> <regression> <uosci> <juju-core:In Progress by dooferlad> <juju-core 1.22:Fix Committed by axwalk> <https://launchpad.net/bugs/1420049>09:14
dooferladdimitern: a bit slow. Have some tests failing that I wasn't expecting.09:15
dooferladdimitern: Hopefully not much longer09:15
dimiterndooferlad, if you paste some logs I might be able to help09:16
dooferladdimitern: Hasn't come to that yet, but I will do if I feel stuck.09:16
dimiterndooferlad, ok, np09:17
wallyworlddimitern: i, just got back from soccer09:24
wallyworldhi09:24
dimiternwallyworld, hi, it's ok I wanted you to have a look at http://reviews.vapour.ws/r/1006/ if you're around, but decided to land it09:25
dimiternwallyworld, it just disables some openstack tests on ppc64el09:25
wallyworlddimitern: ok, i did the same thing with some pinger tests on i38609:25
dimiternwallyworld, and btw that branch you landed to disable pinger tests09:25
wallyworldto try and get trunk unblocked09:26
dimiternwallyworld, I think you disabled the wrong one09:26
wallyworldoh :-(09:26
dimiternwallyworld, most of the failures I've seen are in rootSuite.TestPingTimeout (root_test.go) - not in pinger_test.go09:26
wallyworldi thought i went by what the bug mentioned09:26
dimiternwallyworld, however, surprisingly after your change that test also started passing :)09:27
wallyworldgood :-)09:27
wallyworlddimitern: i just cecked the bug, and it did mentioned pinger_test. it also mentionedroot_test09:28
wallyworldbut i tried just the pinger_test first09:28
dimiternwallyworld, yeah, it's ok - if some other pinger tests start failing on i386 I'll submit another PR to disable them09:29
wallyworldthese openstack tests, are they new failures?09:29
wallyworldthey seem like old tests which have been there for a while09:29
dimiternwallyworld, no, they're there since the beginning09:29
wallyworldso why the issues now all of a sudden09:29
dimiternwallyworld, and also reproducible on gccgo/amd6409:29
dimiternwallyworld, well, they were not happening on the "deploy" ppc64 jobs, just the run-unit-tests-trusty-ppc64el-lxc09:31
wallyworldoh, ok, failed inside lxc09:31
dimiternwallyworld, which is non-voting; and looking at the build history this job never ever passed09:31
wallyworlddimitern: is there are bug with the correct label so we can track the work to fix those tests?09:32
dimiternwallyworld, I've tagged them with ppc64el and gccgo among others09:32
dimiternbug 142524209:32
mupBug #1425242: disable failing provider/openstack tests on ppc64 until we can fix them <gccgo> <papercut> <ppc64el> <reliability> <test-failure> <juju-core:Fix Committed by dimitern> <juju-core 1.22:Fix Committed by dimitern> <https://launchpad.net/bugs/1425242>09:32
wallyworlddimitern: we need a bug that's not fix committed09:33
dimiternthe underlying issue is in goose, i filed an issue there and have a fix in mind09:33
wallyworlddinner ready, bbiab09:33
dimiternwallyworld, yes - bug 141181809:33
mupBug #1411818: ppc64el in lxc failure: github.com_juju_juju_provider_openstack_test.localServerSuite <ci> <intermittent-failure> <ppc64el> <test-failure> <juju-core:Triaged by dimitern> <https://launchpad.net/bugs/1411818>09:33
voidspacemorning everyone10:00
voidspacedimitern: TheMue: dooferlad: be with you in standup in a minute10:00
TheMuevoidspace: heya10:00
voidspacelaptop issues :-10:00
voidspace:-/10:01
voidspaceTheMue: o/10:01
dimiternvoidspace, o/10:01
voidspacedimitern: TheMue: dooferlad: now I'm installing the hangout plugin!10:03
dimiterndooferlad, since michael is here, I'd suggest finishing the bug fix you're working on and putting the other one I've assigned to you on hold for now10:21
dooferladdimitern: will do10:22
dimiterndooferlad, ta!10:22
perrito666and now, for something completely different, working in a car11:07
dooferladdimitern: http://reviews.vapour.ws/r/985/11:12
dimiterndooferlad, looking11:13
dooferladdimitern: thanks!11:13
dimiterndooferlad, so the tests now pass - gc and gccgo?11:13
dooferladdimitern: go, yes. I have compiled with gccgo11:14
dooferladdimitern: testing with gccgo now11:14
dimiterndooferlad, ok, nice11:14
dooferladdimitern: lots of "error: reference to undefined identifier ‘testing.MainStart’" showing up11:15
dooferladdimitern: I did make clean; go test -compiler gccgo -test.timeout=1200s github.com/juju/juju/...11:16
dimiterndooferlad, check if go env -compiler gccgo reports the same as go env11:19
dimiternnope that doesn't work11:20
dooferlad:-)11:20
dimiterndooferlad, try go test -check.v -compiler gccgo inside the worker/provisioner11:20
dimitern:)11:20
jamespagedimitern, can i get your opinion on https://bugs.launchpad.net/juju-core/+bug/142543511:22
mupBug #1425435: juju-deployer/jujuclient incompatibility with 1.21.3 <juju-core:New> <https://launchpad.net/bugs/1425435>11:22
dooferladdimitern: same problem11:22
dimiternjamespage, I've looked at it, but can't quite tell where is that coming from - is it an api breakage (like the ports not getting populated by the megawatcher I had recently)11:24
dimiterndooferlad, ok, I'll pull your branch and run the tests here11:25
dooferladdimitern: is my setup broken?11:25
dimiterndooferlad, well, considering I can run them - most likely :)11:26
dooferladdimitern: :p11:26
dimiterndooferlad, however, I haven't specifically installed gccgo or configured it11:26
dooferladdimitern: I don't think I have either11:26
dimiterndooferlad, what's your golang-go package coming from?11:27
jamfwereade: just checking in to see how you and leader elections are going11:27
dooferladdimitern: https://golang.org/dl/11:27
dooferladdimitern: though I am on 1.4.1 and 1.4.2 is out11:28
dimiterndooferlad, ah, that's probably it11:28
fwereadejam, just figured out how to deal with potentially abusive tracker clients, hopefully pushing that for review in a mo; would you give http://reviews.vapour.ws/r/987 another pass please?11:28
dimiterndooferlad, I'm using golang-go from the trusty archive (1.2.1 - same as the CI jobs use)11:28
jamespagedimitern, maybe - but that's breaking all our automated testing right now11:29
dimiternjamespage, any idea what jujuclient is trying to iterate over that happens to be None?11:31
fwereadejam, just added a couple of comments to http://reviews.vapour.ws/r/987/ -- will be adding a bug# for the open issue and would like to land after that?11:34
jamlooking through it now11:35
jamfwereade: lgtm11:35
fwereadejam, <311:35
fwereadejam, had to change around the Tracker interface a bit -- it now issues its own Tickets which you Wait() for, rather than letting people pass their own channels in, because that eliminates a whole class of abusive client behaviour of the sort that has always bugged me about watcher11:36
jamfwereade: because you may not listen on your own channel and get the Tracker stuck?11:37
fwereadejam, essentially yes -- I think it's possible to work around that, but annoyingly complex11:38
fwereadejam, I was trying to write a TestAbusiveClient and not having a very good time ;)11:38
jamfwereade: or too good a time.... :)11:38
fwereadejam, haha11:38
dimiterndooferlad, reviewd11:43
dimiternreviewed*11:43
voidspacedimitern: ping12:03
voidspacedimitern: I need to understand what you mean by "Clean up MAAS container addressability methods"12:04
dimiternvoidspace, hey12:05
mgz_dimitern: can I get you to take a look at bug 142543512:05
mupBug #1425435: juju-deployer/jujuclient incompatibility with 1.21.3 <api> <network> <regression> <juju-core:Triaged> <https://launchpad.net/bugs/1425435>12:05
voidspacedimitern: note that as I'm working from my laptop I don't have MaaS setup here. (Back to desktop next week - but Delia will probably have the baby by then)12:05
mgz_(deal with voidspace first :)12:05
voidspacedimitern: ok, sure - np12:05
voidspaceoh, that was mgz_ to dimitern not dimitern to me :-)12:05
dimiternvoidspace, I'll go back to you in a bit12:05
voidspacedimitern: ok, np12:05
voidspacedimitern: ah, having read the card properly I understand better anyway12:06
dimiternmgz_, I've asked jamespage for details -  any idea what jujuclient is trying to iterate over that happens to be None?12:06
dimiternvoidspace, cheers :)12:06
voidspacedimitern: I'll just get on with it and complain if I get stuck12:06
dimiternvoidspace, thanks!12:06
mgz_dimitern: I'll pastebin you the code12:06
mgz_it's in lp:python-jujuclient12:06
mgz_basically, using the allwatcher12:06
dimiternmgz_, is it about ports then?12:07
dimiternmgz_, it is - I can see it now at the end12:08
mgz_dimitern: http://paste.ubuntu.com/10406919/12:08
mgz_the d argument there comes from the watcher12:08
dimiternmgz_, so first off, the client needs to change and start using the port ranges instead12:09
mgz_so, would be trivial to fix there in the python12:09
mgz_but we should *not* be breaking apis in stable releases12:09
dimiternmgz_, then second, looking at the code - why it's not iterating over tports if it cares to setdefault on them12:09
mgz_and both your branch and franks seemed to attempt not to do that12:09
mgz_tports is the output12:10
mgz_ports is the input from the watcher12:10
dimiternmgz_, that's the third point :) yeah - that was a backwards incompatible api change, but IIRC frankban fixed it even in 1.2112:10
mgz_dimitern: right, one of those branches did not in fact work12:10
dimiternmgz_, ah, ok12:10
dimiternmgz_, I'll look into what landed etc.12:11
mgz_or we released the wrong thing, or something12:11
dimiternmgz_, jamespage, where did you get the 1.21.3 binary from? is it definitely 1.21.3?12:11
jamespageyes12:11
jamespageppa12:11
mgz_allwatcher is named megawatcher now right? I'm not up to date on watcher terminology12:12
dimiternmgz_, jamespage, well the fix for that landed in 1.21 almost 2 weeks ago - https://github.com/juju/juju/pull/1595, and it was confirmed to work with the GUI after the fix12:16
* dimitern doesn't get it12:16
mgz_dimitern: my assumption is the gui does in fact work, but this use of python-jujuclient doesn't12:17
mgz_it could also be we're not actually on the right version somehow12:18
dimiternmgz_, well, part of the reason why this was discovered in the first place is that the gui started throwing exceptions like that (I think it was juju-quickstart actually)12:18
mgz_that change is certainly in 1.21.3 as far as I can see12:18
dimiternmgz_, and after the fix it worked - without changing quickstart AIUI12:19
dimiternjamespage, mgz_, I'm asking in #juju-gui for clarification12:22
mgz_dimitern: thanks!12:23
mgz_I agree it looks like frankban's change was aimed at covering all this12:23
mgz_and I didn't see anything obviously wrong eyeballing the backport diff12:23
dimiternmgz_, yeah - and python-jujuclient didn't have to change after the fix landed12:28
TheMuedimitern: I wonderfully found three different ways of bson names: lowercase, lowerCamelCase, and dash-case. :) in our portsDoc we e.g. use dash-case opposite to the other network types :/12:41
dimiternTheMue, well :) we have to live with what already has bson tags, but for new ones let's use the first case12:43
TheMuedimitern: yes, that's what I've done. it's only funny when you grep "type .*Doc struct" on state and scan those types12:44
dimitern:)12:45
dimiternpeople keep hitting issues with the 1.21 series, most of which are already resolved with 1.22 and later12:58
dimiternwe need to release 1.22.0 already and call that stable12:59
=== liam_ is now known as Guest95654
dimiternjamespage, I think I may have found the issue - are you upgrading to 1.21.3 or you're bootstrapping a new environment with 1.21.3?13:20
=== kadams54-away is now known as kadams54
anastasiamacjam, axw, wallyworld: updated natural order sort (catering a lot beta, i think even floating points vs IPs)14:05
wallyworldwow ok, did we need all that extra?14:05
anastasiamacjam: axw:wallyworld: not catering for scientific notations :D not negative numbers14:05
wallyworldwas just for a quick status sort fix right?14:06
anastasiamacwallyworld: well, we wanted natural sort for any string not just by numeric suffix14:06
anastasiamacwallyworld: any string containing numbers...14:07
wallyworldok, np, if we need it. i was thinking we'd wait till needed before expending the effort14:07
dooferladdimitern:  jujubot isn't landing my code because it doesn't fix https://bugs.launchpad.net/juju-core/+bug/1424777 which you already did (https://github.com/juju/juju/pull/1673)14:10
mupBug #1424777: local-provider precise failed to upgrade <ci> <local-provider> <precise> <regression> <upgrade-juju> <juju-core:Fix Committed by dimitern> <juju-core 1.22:Fix Released by dimitern> <https://launchpad.net/bugs/1424777>14:10
jamanastasiamac: https://github.com/jameinel/strnatcmp/tree/master/src/strnatcmp14:10
dooferladdimitern: who can assist jujubot in understanding?14:10
mgz_dimitern: it was an upgrade to 1.21.314:11
jamanastasiamac: where is your version, I seem to be missing it in reviews.vapour.ws14:11
mgz_I think14:11
jamah, just at the end14:11
mgz_but he just tried with a fresh deploy and it got the same error14:11
mgz_1.21.3 client and 1.21.3 server14:12
rick_h_jam: morning, did the guys get you the macaroon info you needed for that spec review for the new CS api spec and did that make sense?14:12
anastasiamacjam: i kind of disagree with skipping spaces... i think that "1 a" and "1a" may need to b treated differently..?14:12
jamanastasiamac: my one concern about unicode.IsDigit() is that what do we do about numbers that aren't 0-9, is it actually valid to mix non-latin chars14:12
dimiterndooferlad, it's fine - the blocker will be lifted when the bug is Fix Released14:13
dooferladdimitern: ah, OK.14:13
jamanastasiamac: you also don't check how "foo01" sorts compared to "foo2"14:15
dooferladdimitern, voidspace: So, about this MAAS code cleanup. There was talk of pairing. I am available now for a little over an hour.14:15
dimiterndooferlad, ok, voidspace how about you?14:16
mgz_dooferlad: wanted a clean run with dimitern's fix but the maas jobs are failing atm: <http://reports.vapour.ws/releases/2380>14:16
jamanastasiamac: I kind of like the idea of 'foo 1' and 'foo    2' and 'foo 3' sorting accordingly14:16
mgz_dooferlad: I'm reasonably sure that's our problem, not a regression on trunk, but want to check14:16
=== Murali_ is now known as Murali
jamI don't think *humans* think of number of spaces as significant for sorting most times14:17
dooferladmgz_: thanks for that info.14:18
anastasiamacjam: just did a test for []string{"foo2", "foo01"} and got []string{"foo01", "foo2"}14:18
anastasiamacjam: is it not right?14:18
perrito666hey, still locked? :(14:18
jamanastasiamac: I didn't say anything about your correctness, just that it wasn't tested. :)14:18
anastasiamacjam:jam oh :D i'll add testnaturallyfoo :D14:19
jamanastasiamac: probably the big difference implementation-wise is that mine does a single pass, though yours might do only 2 passes14:19
jamit definitely does 2, and it chops the string up (though in go that could be a cheap splicing implementation, though I *think* it actually allocates a new array?)14:20
anastasiamacjam: sounds gr8 :D plz propose and let's plug it before feature freeze :)14:22
anastasiamacjam: r u goingt to propose it to utils?14:23
dimiternmgz_, from what I can see - all of the listed failing jobs haven't tried my fix (6742f589e738eb94b514463438893f7a90a75939), but are struggling on the previous one (a1a088dd000ae742c4bf70f95a2b942068b41be5)14:23
dimitern(that's for 1.23 - for 1.22 is better)14:23
mgz_yeah, 1.22 went through14:25
sinzuidimitern, natefinch 1.22 is failing because unit-tests time out. I don't even know what to put in the bug report yest14:32
sinzuidimitern, natefinch : I have lowered the number of retests for i386 so that 1.22 can quickly fail so that we can test and unblock 1.23 (master)14:33
dimiternsinzui, I vote to skip these failing tests in cmd/juju/ for i38614:34
jamanastasiamac: ... well one difficulty with yours and a 10000 digit string is that ParseFloat aborts :)14:34
jamI don't know whether that actually matters14:34
sinzuidimitern, natefinch I am fine with skipping tests in 386. The failures are different in hp/aws precise/trusty too.14:35
anastasiamacjam: m very happy with urs :D r u plan n to propose it? :P14:35
jamanastasiamac: well, I was trying to figure out if the performance actually is different, main problem comparing them is that yours is only defined in terms of sort, vs a compare14:36
jamat least your big O for lots of parts should be ok14:36
jamanastasiamac: anyway, not today, as I'm way past EOD and need to make dinner14:37
jamanastasiamac: I would say that at the least your natural sort code shouldn't live in "cmd/juju"14:37
anastasiamacjam: m not comfortable with mine being a util for any purpose (besides performance, I can think of cases that rn't catered 4...)14:38
TheMuedimitern: the cleaning is in for review at http://reviews.vapour.ws/r/1009/14:39
dimiternTheMue, thanks, will look in a bit14:40
TheMuedimitern: ta14:40
=== niemeyer_ is now known as niemeyer
perrito666natefinch: ericsnow I am caught with other things, Ill be missing standup today15:04
natefinchperrito666: ok15:04
sinzuidimitern, your ppc64el+lxc fix works. we have a pass for run-unit-tests-trusty-ppc64el-lxc15:12
dimiternsinzui, for the first time ever! :)15:16
perrito666sweeet15:16
voidspacedooferlad: just missed you before, I'd just gone on lunch!15:16
alexisbvoidspace, heya15:16
alexisbvoidspace, what is the baby status?15:17
voidspacealexisb: hi15:17
beisnerdimitern, fyi, also affected by this, added workaround to https://bugs.launchpad.net/juju-core/+bug/142543515:17
mupBug #1425435: juju-deployer/jujuclient incompatibility with 1.21.3 <api> <network> <regression> <juju-core:Triaged> <https://launchpad.net/bugs/1425435>15:17
voidspacealexisb: baby still in womb15:17
voidspacealexisb: due for final release tomorrow...15:18
alexisbexciting15:18
voidspacealexisb: maybe delayed for last minute bug fixing, we'll see15:18
voidspacealexisb: yeah, really looking forward to meeting the new creature. To the actual birth itself not so much...15:18
ericsnow voidspace \o/15:18
voidspaceericsnow: hi15:18
ericsnowvoidspace: I'm so happy for you!15:18
dimiternbeisner, thanks!15:19
alexisbvoidspace, totally understand, but it is soooo worth it15:19
voidspaceericsnow: thanks15:19
voidspacealexisb: yep15:19
alexisbdimitern, beisner does that mean 1425435 is a deployer bug?15:21
alexisbI should say a result of a deployer bug?15:21
ericsnowif anyone has a spare few minutes, I could use a review on http://reviews.vapour.ws/r/1002/15:21
beisneralexisb, i'd call it a python-jujuclient bug since that's where a 1-liner fix can be made.15:21
alexisbbeisner, ack15:22
alexisbmgz_, where does that leave us with trunk being blocked?15:22
beisneralexisb, but i'll defer to dimitern & co. who are more familiar with these things ;-)15:22
dimiternalexisb, I don't know what it is anymore - it's the same issue as bug 1420403 which was fixed (confirmed and released)15:23
mupBug #1420403: juju-quickstart: bad API server response: 'NoneType' object is not iterable <api> <ci> <network> <regression> <juju-core:Fix Released by frankban>15:23
mup<juju-core 1.21:Fix Released by frankban> <juju-core 1.22:Fix Committed by frankban> <juju-quickstart:Invalid by frankban> <https://launchpad.net/bugs/1420403>15:23
dimiternbeisner, the root cause was a backwards-incompatible api change in juju15:23
mgz_alexisb: hoping to unblock shortly - getting a ci run against master is pending, have been tied up on 1.22 and slow i386 test job15:24
dimiternbut that bug ^^ fixes it, and it's not reproducible anymore with juju-quickstart, which also uses python-jujuclient15:24
alexisbmgz_, thanks and please reach out asap if things are still blocked15:24
=== ChanServ changed the topic of #juju-dev to: https://juju.ubuntu.com | On-call reviewer: see calendar | Open critical bugs: 1424777 1425569
sinzuidimitern, and we test quickstart with every revision on maas, hp, joyent, and aws. We get passes16:01
dimiternsinzui, yeah - I've verified everything I can think of, even rebuilding 1.21.3 from the tag and comparing the md5sum in the stable ppa for amd64/trusty - they don't match, but that might be because my setup is different16:06
dimiternI'm still not convinced despite the version is 1.21.3, but I'm experimenting now to see what I get out of the megawatcher as UnitInfo changes16:07
sinzuidimitern, natefinch : I reluctantly reported a regression in the 386 test suite. I gathered a lot of logs both the official tests and the test we prefer to run. bug 142556916:10
mupBug #1425569: i386 unit-tests fail <ci> <i386> <precise> <regression> <test-failure> <trusty> <juju-core:Triaged> <juju-core 1.22:Triaged> <https://launchpad.net/bugs/1425569>16:10
dimiternsinzui, I have an almost ready solution for this - disabling a few tests on 38616:12
sinzui+116:15
dooferladvoidspace: time to hack on MAAS stuff?16:21
voidspacedooferlad: I think I still need some clarification from dimitern16:21
voidspacedimitern: I've read through your changes to EC2 a couple of times16:22
voidspacedimitern: whilst updating my vm etc, etc, etc *sigh*16:22
voidspacedimitern: I've added the environs.NetworkingEnviron interface check to the maasEnviron as that looks good16:22
voidspacedimitern: the rest of your changes are just logging improvements and general improvements, right?16:23
voidspacedimitern: no actual api changes16:23
voidspacedooferlad: did you manage to get container addressability working with MaaS?16:23
voidspacedooferlad: or alternatively, work out why it doesn't work16:23
voidspacedooferlad: because that's even more important than the cleanup I would think16:24
voidspacedooferlad: we can pair on that16:24
dimiternvoidspace, right16:24
voidspacedooferlad: you can "drive" as I don't have maas on this machine16:24
voidspacedimitern: ok, cool16:24
voidspacedimitern: just checking I wasn't missing something important16:24
dimiternvoidspace, most of them are logging/error messages reporting, however the important bits are in the tests16:24
voidspaceah16:24
voidspaceI didn't read the tests thoroughly, they looked mostly like consequences of error message changes16:25
voidspaceand who cares about tests anyway...16:25
dimiternvoidspace, maas should return 95% the same result of NetworkInterfaces() as EC2 (same fields set)16:25
voidspaceah right16:25
voidspacedimitern: ok, so that's worth double checking and we can pair on that16:25
dimiternvoidspace, e.g. ConfigType: Config.DHCP, Address is set to the first NIC's address, ExtraConfig: nil, GatewayAddress - nil16:26
voidspaceI did see those changes16:26
voidspacein the tests16:26
voidspacecool16:26
voidspacedooferlad: ^^ you get all that?16:26
voidspacedooferlad: have you seen dimitern's branch?16:26
voidspacedimitern: thanks16:26
dooferladvoidspace: I have seen his branch. I had a similar impression to you :-)16:26
dimiternvoidspace, well, maas can actually set both the interfaceName and vlanTag fields of InterfaceInfo / SubnetInfo16:27
voidspaceyep16:27
voidspacedimitern: it should have what EC2 has as a minimum16:27
dooferladvoidspace: Seems like there are only minor changes in tests as well.16:27
voidspacedooferlad: the important thing to check is that the maasEnviron fills in the fields in the same way as EC216:27
voidspacedooferlad: and those are now checked explicitly in the tests16:28
dimiternvoidspace, but otherwise, think about how are the networkingEnviron methods in maas behaving - i.e. same(or similar) errors returned for same/similar things, etc.16:28
voidspace(and ConfigType.DHCP is actually a change for EC2 - we'll need to check for MaaS)16:28
voidspace e.g. ConfigType: Config.DHCP, Address is set to the first NIC's address, ExtraConfig: nil, GatewayAddress - nil16:28
dooferladvoidspace: Are we talking about https://github.com/dimitern/juju/compare/ec2-cleanup-addressability ?16:28
voidspacedimitern: I think we're good on that front, worth checking though16:28
voidspacedooferlad: yep16:28
dimiternvoidspace, cheers, I'll go back to chasing bugs then :)16:29
voidspacedooferlad: so in terms of pairing, I have just under two hours left before I EOD (after I get coffee)16:29
* TheMue is afk for a moment, bbiab16:30
dooferladvoidspace: OK. See you in a moment. I need to reboot so I can enable virtualisation in my BIOS16:30
voidspacedooferlad: one of us should have the EC2 code (dimitern's branch) open and the other the MaaS code and then we can go through both and check that behaviour is the same for both16:30
voidspacedooferlad: cool16:30
dooferladvoidspace: ready when you are16:38
voidspacedooferlad: ok, team hangout?16:38
dooferladvoidspace: sounds good16:38
voidspacedimitern: ping17:12
voidspacedimitern: you said, for MaaS NetworkInterfaces method (InterfaceInfo) "Address is set to the first NIC's address"17:12
dimiternvoidspace, ah, right you got me17:12
dimitern:)17:12
voidspacedimitern: I assume you meant "Address is set to the NIC's first address"17:12
dimiternvoidspace, correct17:13
voidspace:-)17:13
voidspacedimitern: so parse the CIDR and just return the IP part of the cidr?17:14
voidspacedimitern: is that adequate?17:14
voidspaceParseCIDR(...).IP.String()17:16
voidspacewith appropriate error checking17:16
dimiternvoidspace, I think so17:26
voidspacedimitern: cool17:26
voidspacedimitern: is it ok to skip ProviderID on MaaS?17:26
dimiternvoidspace, if the result is a valid address17:26
voidspacedimitern: we don't have it currently17:26
voidspacedimitern: it must be a valid address17:26
dimiternvoidspace, for the NIC you mean?17:27
voidspacedimitern: yes17:27
dimiternvoidspace, yes - it's not available on maas, but ProviderSubnetId is17:27
voidspacedimitern: right, we fill that in17:27
dimiternvoidspace, +117:27
alexisbso folks what do we need to do to no longer be blocked by 1424777?18:07
dimiternalexisb, first 1.22 needs to pass, and a few tests were failing or hanging on i386 since yesterday18:08
dimiternalexisb, I've talked with sinzui about access to a i386 to test, and I'm about to propose a PR to skip certain tests on i386 so 1.22 can pass and then 1.23 can pass and get unblocked18:09
dimiternat least that's the plan18:09
sinzuidimitern, and I endorse the plan18:10
dimiternsinzui, I'm waiting for the full suite to pass on the i386 machine and then proposing18:11
sinzuidimitern, sorry, that takes so long. As for CI we are also waiting for the last two tests to complete, then we can test master18:12
dimiternsinzui, ok, I'm proposing then18:12
* perrito666 is surprised that most big cities of his province are flooded, including his, and he still has power and internet... I feel so 1st world :p18:13
sinzuiperrito666, meanwhile abentley is not in his house because Toronto wasn't as first world as he hoped18:14
perrito666sinzui: amazing18:15
sinzuiOnce the glaciers melt and London and New York are flooded, we will all be equal18:15
perrito666oh no, I live in high ground in the middle of the continent, mi city just floods because of improper sewage18:16
alexisbdimitern, sinzui thank you18:16
dimiternalexisb, np18:19
dimiternsinzui, fix proposed and set to land https://github.com/juju/juju/pull/168318:20
sinzuidimitern, let's not add $$merge$$ until we see master start testing18:20
dimiternsinzui, :( I already did btw18:21
dimiternsinzui, but feel free to stop the merge job18:21
* dimitern hates fixes in a hurry18:22
* dimitern steps out for 30m18:23
sinzuidimitern, I am going to cheat and that 1.22 out of list of branches to test for a few minutes18:24
=== kadams54 is now known as kadams54-away
=== kadams54-away is now known as kadams54
=== jcw4 is now known as jw4
sinzuidimitern, natefinch : we have new information about deployer bug https://bugs.launchpad.net/juju-core/+bug/1425435/comments/519:16
mupBug #1425435: juju-deployer/jujuclient incompatibility with 1.21.3 <api> <cts> <network> <oil> <openstack> <regression> <uosci> <juju-core:New> <https://launchpad.net/bugs/1425435>19:16
thumperfwereade: ping19:46
thumpersinzui: what's the reason the bot is still blocked?19:47
sinzuithumper, master has not passed19:48
thumperthat particular issue? or other ones?19:49
thumperwhere that particular one is the critical bug still there19:49
thumperprecise local upgrade19:49
sinzuithumper, We are testing dimitern 's fixes now. 1.22 took forever to test because of the i386 regression19:50
sinzuithumper, I hope to see a bless in 3 hours19:50
thumperok...19:50
thumpercheers19:50
=== sebas53__ is now known as sebas5384_
=== sebas5384_ is now known as sebas5384
=== thumper is now known as thumper-afk
* dimitern is back21:44
mbruzekjog ping22:01
jogmbruzek, pong22:01
thumper-afkdavecheney: hey, I have a number of trivail patches this morning: http://reviews.vapour.ws/r/1012/22:03
thumper-afkgah22:03
=== thumper-afk is now known as thumper
thumperI always forget to change that back22:04
mbruzekjog I need some help with the test results for kubernetes.22:04
mbruzekjog do you know why the page does not show the past 12 results?22:04
jogmbruzek, looking22:05
mbruzekjog 8 from yesterday and 4 more from today.22:05
perrito666thumper: isnt davecheney out in some gophercon?22:05
thumperperrito666: not now22:05
thumperperrito666: davecheney was at the india gophercon at the end of last week22:06
perrito666ah it was until mon22:06
jogmbruzek, do you know the Jenkins job for one of the missing tests?22:10
mbruzekjog in the note I sent yesterday22:11
mbruzekthere were 8 of them.22:11
mbruzekhttp://juju-ci.vapour.ws:8080/job/charm-bundle-test-azure/49/console22:11
dimiternand we have a blessed master22:12
thumperdimitern: ah finally22:13
thumperawesome22:13
dimiternit was a marathon ;)22:13
thumperdavecheney: (or anyone) http://reviews.vapour.ws/r/1013/22:13
dimiternthe last 3 days22:13
thumperdimitern: thanks for all your work on that22:13
thumperdimitern: I really appreciate it22:13
dimiternthumper, cheers, I'm just glad *now* I can land my stuff as well :)22:13
jogmbruzek, the results.json on S3 for all those tests is empty...22:14
mbruzekjog can you help me figure out why?22:15
jogmbruzek, looking22:15
dimiternsome of them are still pending I think22:16
dimiternbut revision-results #2078 passed22:16
jogmbruzek, still looking but I suspect bug 1425435, since deployer is being used by bundletester22:20
mupBug #1425435: juju-deployer/jujuclient incompatibility with 1.21.3 <api> <cts> <network> <oil> <openstack> <regression> <uosci> <juju-core:Triaged> <juju-core 1.22:New> <juju-core 1.23:New> <https://launchpad.net/bugs/1425435>22:20
jogmbruzek, I'm trying to find what version of Juju these tests run with.22:20
mbruzekjog according to the console text  JUJU_VERSION=1.21.122:21
dimiternsinzui, re that deployer bug22:26
sinzuiwhy are you awake?22:26
dimiternsinzui, is it worth doing a 1.21.4 point release for a fix22:26
dimiternsinzui, I'm wired by the blessed master :)22:27
dimiternso much to land..22:27
sinzuidimitern, I think we need to discuss further. a fixed python-jujuclient is being built now22:28
alexisbsinzui, we will get to talk abou tit in 2 minutes :)22:28
dimiternsinzui, that will definitely alleviate the issue for the users of python-jujuclient, however juju gui might still have issues (well, provided it's quick enough while deploying things and checking status)22:29
alexisbrick_h_, have you looked at this ^^^22:30
dimiternanyway,  I have a solid plan about a fix if it comes to that, and for 1.22 and 1.23 there will be a fix22:30
sinzuithumper, wallyworld dimitern: I confidently predict a bless for master. I am removing the block queue the mad rush to merge and crash22:30
dimiternoh happy days! :)22:31
dimitern68 PRs await22:31
thumper68?22:32
thumperholy crap22:32
=== kadams54 is now known as kadams54-away
dimiternwell, 67 in reality22:33
* dimitern goes to do some *damn* programming as fwereade would say22:33
jogmbruzek, charm-bundle-test-azure/50 certainly is the bug I mentioned above22:36
mbruzekjog yeah there are different bugs22:37
jogmbruzek, several others such as joyent 45 have "ERROR connection is shut down"... that something we've seen intermittently22:37
mbruzekjog that bug reports things are ok with 1.21.1 and that seems to be the version in the log22:45
jogcharm-bundle-test-azure-50-all-machines-log shows an upgrade occurred from 1.21.1-trusty-amd64 to 1.21.322:48
mbruzekjog good spot.22:55
mbruzekdimitern: whit had looked into fixing this in the jujuclient,22:55
dimiternmbruzek, that's great, but I think it should also be fixed in juju (at least 1.23) - for the sake of any other client of the api22:57
whit+122:58
waiganithumper, cherylj, davecheney: http://reviews.vapour.ws/r/1014/ thanks22:58
mbruzekdimitern: looks good22:58
mbruzekdimitern: thanks for the information, I look forward to the fix23:02
dimiternmbruzek, np23:02
sinzuiwallyworld, http://reports.vapour.ws/releases show the ugly truth of failures looking at a specific release we know exactly which voting test failed http://reports.vapour.ws/releases/238323:06
wallyworldsinzui: so the failures there are the 386 and vivid issues we know about23:07
sinzuiwallyworld, well sort of good news for viviid23:08
sinzuiwallyworld, the lxc based unit tests and vivid machine test don't vote because they aren't reliable...23:08
sinzuibut vivid machine and ppc64el lxc passed for the first time today23:08
wallyworldi wish the 386 tests didn't vote :-)23:08
wallyworldthat's good news23:09
wallyworldi think they were fixing some cloud init issues for vivid?23:09
sinzuiwallyworld, ubuntu needs to stop making clients agents that people can run in local host....23:09
sinzuiwallyworld, change juju to refuse to deploy a 386 agent locally23:09
wallyworldyeah, i think there needs to be a 386 discussion23:10
perrito666hey just back, still locked?23:47
anastasiamacperrito666: CI? no:D23:50
perrito666anastasiamac: happiness23:51
anastasiamacperrito666: dunno... looks more like a mad rush to land to me :D23:51
* perrito666 tries to color juju's tests output and is completely unsuccesful23:51
perrito666anastasiamac: could be :p23:52
perrito666anastasiamac: lets say its a long day and still not over23:52
anastasiamacperrito666: my merge is queed up and the one that is currently running (if it lands) will conflict with mien :(23:52
anastasiamacmine*23:52
anastasiamacperrito666: tomorrow is another day :D23:53
perrito666anastasiamac: dont remind me :p, tomorrow will start waaaay too close to the end of today23:53
anastasiamacperrito666: wait unitl u'd get kids :d there will be no today/tomorrow - just "awake" and "not quiet awake" :D23:55
perrito666sinzui: my restore change is queued for landing :)23:56
sinzuiperrito666, given the mad  rush to merge, there are good odds your change isn't the one that breaks master23:57
perrito666sinzui: are you kidding? restore always breaks master23:58
sinzuiperrito666, but now we have four substrates to test in. In fact I am not convinced restore work in Azure. Well I think it work 1 in 5 tries23:59

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