/srv/irclogs.ubuntu.com/2014/11/21/#ubuntu-ci-eng.txt

imgbot=== trainguards: IMAGE 28 building (started: 20141121 02:05) ===02:05
=== chihchun_afk is now known as chihchun
imgbot=== trainguards: IMAGE 28 DONE (finished: 20141121 03:30) ===03:30
imgbot=== changelog: http://people.canonical.com/~ogra/touch-image-stats/28.changes ===03:30
=== chihchun is now known as chihchun_afk
=== chihchun_afk is now known as chihchun
=== chihchun is now known as chihchun_afk
=== chihchun_afk is now known as chihchun
oSoMoNMirv, hey, is it possible to do a binary copy of oxide-qt 1.3.5-0ubuntu0.14.10.1~rtm from https://launchpad.net/~phablet-team/+archive/ubuntu/ppa to RTM silo 3 ?07:03
oSoMoNMirv, robru tried to do it last night for me, but he says it failed because it’s considered cross-series, but I’m pretty sure we did that for 1.3.4 and it worked07:04
MirvoSoMoN: yes, it's possible07:16
Mirvjust needs correct parameters on the command line, LP web UI does not work07:16
oSoMoNMirv, right, that’s what I thought, but robru wasn’t sure how to do it, so he said better to wait till you or sil2100 can do it07:16
oSoMoNMirv, could you do it for me, please?07:17
robruMirv: yeah please share the command, i only know the web ui07:17
MirvoSoMoN: done07:23
Mirvrobru: ./copy-package -b --from=~phablet-team/ubuntu/ppa --from-suite=utopic --to=~ci-train-ppa-service/ubuntu-rtm/landing-003 --to-suite=14.09 oxide-qt07:23
oSoMoNMirv, thanks!07:23
Mirvtook a while, I needed to convert also this to the new style syntax so that I don't make Colin grumpy again :)07:24
Mirvthe new syntaxt is much better07:24
robruMirv: Hmmmmmmm thanks, seems simple enough07:25
robruWeird that that would work in cli but not in the web ui07:26
kalikianacihelp, I need somehelp with autopilot. I get "Start directory is not importable" and it won't say *why* when files are there, and I didn't change the .py files http://paste.ubuntu.com/9143520/08:55
sil2100jibel, ogra_: how's the testing going?08:57
* sil2100 didn't see a status e-mail in his inbox08:57
vilakalikiana: cihelp is for CI related issues, i.e. ones you can't reproduce locally ;) I have no idea about what is wrong here but I would try by getting rid of: "09:46:50.312 WARNING emulators:26 - The ubuntuuitoolkit.emulators module is deprecated. Import the autopilot helpers from the top-level ubuntuuitoolkit module."08:58
vila'top-level' and import errors.... sound like either your PYTHONPATH is wrong or something related (i.e. you're trying to import something that can't be imported from any starting point in PYTHONPATH)09:00
kalikianavila: I used cihelp as leo is in the wrong timezone for this point in time and it's kinda urgent :-]09:01
vilakalikiana: or you run into a collision where two modules have the same name at different places starting from different PYTHONPATH entries ;)09:01
vilakalikiana: ack, but elopio is in QA not CI ;)09:01
vilakalikiana: thomi may be ?09:01
kalikianavila: the paths etc. are all untouched, normal device, vivid, previously ran other ap tests perfectly - but this particular test gives the error, others still run09:02
vilakalikiana: aprt from the general python issues, I probably know less than you about autopilot ;)09:02
vilakalikiana: but still in your paste: raise ImportError('Start directory is not importable: %r' % start_dir)09:03
kalikianavila: alright, I'll ask qa then, thanks anyway09:03
kalikianayes it's there, except the files exist, as the paste shows :-(09:04
vilakalikiana: ooooh, you're trying to run a single test ! Do you still encounter the issue if you try to run the whole suite ?09:04
vilakalikiana: they may exist but unittest doesn't know how to import them, it probably try to start with '... Oh wait, it's even clearer, it tries to import 'ubuntuuitoolkit.tests.test_launcher.LauncherQtTestTestCase.test_can_run_qt_test_case'09:05
vilakalikiana: that's a test method in a test class, far from being a module09:05
kalikianano, but it takes ages to find out if it would then run the test… and I *know* that the test name is correct09:05
kalikianait's been run on another machine09:05
vilakalikiana: indeed, the test name is correct, but that still doesn't make it a correct *module* name09:05
kalikianaoh, I'll try if I can't list the modules somewhere… I know there was a command09:06
vilakalikiana: that same invocation with that single test on the command line has run on a different machine ?09:06
kalikianayes09:06
ogra_sil2100, me neither (at least about the testing ... there were unnsurprisingly 400 other mails in mine :P (like every day))09:07
vilakalikiana: does 'phablet-test-run ubuntuuitoolkit.tests.test_launcher -v' works ?09:07
kalikianaeven autopilot3 list agrees the test is there09:07
vilakalikiana: I'm not arguing the test name is not valid ;)09:08
vilakalikiana: I'm reading your paste and interpret it as: look, I cannot import a test method, it's not a python module09:08
kalikianatest_launcher → same exception09:08
vilakalikiana: same traceback ? Some value in the exception ?09:09
kalikianasame as before, no actual error message besides failure to import09:10
vilakalikiana: can you just paste it ?09:10
vilakalikiana: especially the ImportError: Start directory is not importable: part09:11
kalikianavila: http://paste.ubuntu.com/9143709/09:11
kalikianaas far as I see exactly the same09:11
vilawell, no, now it complains that the *module* can't be imported09:12
vilawhich at least makes a little more sense09:13
vilapython's unitest is notoriously bad at reporting import errors: it doesn't report *why* the import failed09:13
vilakalikiana: I don't know how autopilot handle partial loading of a test suite :-/ But if you know how to run the full test suite and that pass, the issue is there: running a subset doesn't work for 'ubuntuuitoolkit.tests.test_launcher'.09:16
vilakalikiana: I would try ''ubuntuuitoolkit.tests' and then 'ubuntuuitoolkit' if that makes sense09:17
vilakalikiana: oh ! And that's python3.4 ! Gee, I'm out of my league :-/ Still stuck with 2.7 in all projects I'm involved :-(09:18
vilakalikiana: on the other hand, it's unlikely that this particular piece of code has changed a lot (test discovery)09:18
ogra_jibel, sil2100 https://bugs.launchpad.net/ubuntu-rtm/+source/cgmanager/+bug/139491909:19
ubot5Launchpad bug 1394919 in cgmanager (Ubuntu RTM) "constant crash in trying to collect info for recoverable error" [Undecided,New]09:19
ogra_i think that is caused by the "UI freezes" fix09:19
vilakalikiana: the way it work[ed] is that unittest starts with 'ubuntuuitoolkit.tests.test_launcher' and attempts to import the higher level modules (ubuntuuitoolkit.tests first, is it there ? No ? Try 'ubuntuuitoolkit', it it there ? No ? Highest level ? Yes -> fails)09:20
vilakalikiana: if ''ubuntuuitoolkit.tests' has been imported but doesn't have a 'test_launcher' symbol defined -> fail (which could be why it says: AttributeError: 'module' object has no attribute 'test_launcher')09:21
jibelsil2100, I didn't send any status yet, I must talk to Europeans first09:23
* kalikiana just discovered a "feature", ap runs even after the script was stopped - it would be useful if there was a way to actually control it :-P09:25
sil2100jibel: ACK09:25
ogra_https://bugs.launchpad.net/ubuntu-rtm/+source/unity-scopes-shell/+bug/139492209:27
ubot5Launchpad bug 1394922 in unity-scopes-shell (Ubuntu RTM) "scoperunner produces a lot of crash files in rtm 166" [Undecided,New]09:27
sil2100hm, this doesn't look too good09:28
ogra_neither does the cgmanager one09:28
ogra_tehr scoperunner one seems to be the same we see in smoke testing09:30
Saviqsil2100, hey, any idea about this failure https://launchpadlibrarian.net/190816573/buildlog_ubuntu-vivid-i386.unity8_8.01%2B15.04.20141121-0ubuntu1_FAILEDTOBUILD.txt.gz ?09:38
sil2100jibel: just give us a sign on your verdict and we'll all forward it to victorp09:52
sil2100Saviq: looking09:58
kalikianavila: FYI seems that I'm hitting a phablet-test-run bug, ap itself isn't to blame if I run it by hand on the device; http://paste.ubuntu.com/9144667/ https://bugs.launchpad.net/ubuntu/+source/phablet-tools/+bug/139493210:15
ubot5Launchpad bug 1394932 in phablet-tools (Ubuntu) "ImportError: Start directory is not importable on valid test folder" [Critical,New]10:15
seb128could somebody review https://code.launchpad.net/~nik90/ubuntu-seeds/add-qml-connectivity/+merge/237442 ?10:16
seb128does that make sense?10:16
seb128I guess it needs to be done for vidid and not utopic in any case?10:16
seb128ogra_, ^10:16
vilakalikiana: \o/ Glad you're unblocked, sorry I couldn't help better...10:17
Saviqsil2100, looks like I can reproduce that in a amd64 chroot locally (not in a native i386 chroot)10:28
jibelpopey, rhuddie will test the music-app10:33
rhuddiepopey, I'll start music-app shortly, so please let me know where to get latest version10:36
Saviqhah10:39
SaviqMirv, https://launchpad.net/ubuntu/+source/connectivity-api10:40
SaviqMirv, this needs a rebuild against new Qt I believe10:40
Saviqoh and we got a circular dep..10:42
SaviqMirv, http://paste.ubuntu.com/9145379/10:42
Saviqwhich is the same as https://launchpadlibrarian.net/190816573/buildlog_ubuntu-vivid-i386.unity8_8.01%2B15.04.20141121-0ubuntu1_FAILEDTOBUILD.txt.gz10:43
MirvSaviq: it does not depend on the abi virtual packages, it shouldn't need a rebuild10:43
SaviqMirv, right, I think the problem might be the circular dep then10:44
Mirvyeah, circular deps are always bad anyhow10:44
Saviqunity8 → libconnectivity-qt1-dev → libconnectivity-qt1 → indicator-network → unity810:44
Mirvouch10:44
Mirvbreak it! :)10:44
Saviqbut how would that build on amd64...10:44
Saviqyeah, I don't think indicator-network should dep on unity8...10:44
Saviqbut then that's what it uses to ask for passwords10:45
ogra_seb128, needs a bug and approval from the mgmt if it is for rtm ...10:46
ogra_for vivid it can indeed just go in10:46
ogra_(if the packages are there and work :P )10:46
popeyrhuddie: its linked in the trello card10:48
rhuddiepopey, great. just wanted to check that was correct one. Thanks.10:49
victorpjibel white or black smoke?10:53
ogra_grey10:54
jibelvictorp, there is this crash ogra_ found10:55
jibelbug 139491910:55
ubot5bug 1394919 in cgmanager (Ubuntu RTM) "constant crash in trying to collect info for recoverable error" [Undecided,New] https://launchpad.net/bugs/139491910:55
Saviqhuh!10:55
jibellikely a regression10:55
ogra_victorp, bug 1394919 and bug 1394922 ... and Chipaca just reported a system-settings hang in bug #139494410:56
ubot5bug 1394922 in unity-scopes-shell (Ubuntu RTM) "scoperunner produces a lot of crash files in rtm 166" [Undecided,New] https://launchpad.net/bugs/139492210:56
ubot5bug 1394944 in ubuntu-system-settings (Ubuntu) "blank screen in battery → screen brightness" [Undecided,New] https://launchpad.net/bugs/139494410:56
ogra_i have also seen a good bunch of webapp crashes but then noticed that i had not cleaned the whole QML cache ... will keep an eye on that if anything happens again10:57
SaviqMirv, sil2100, not sure what I'm doing here, the FTBFS only occurs here when trying to build i386 from amd64 chroot, and comes down to indicator-network depending on python3-xdg:i386, which doesn't exist10:57
ogra_the cgmanager stuff seems serious though ... i had three session crashes since upgrading to 16610:57
victorpogra_, is this all stuff from 166?10:58
ogra_yes10:58
SaviqWellark, hey, who's maintaining connectivity-api?11:00
victorp ogra_ btw, I cant reproduce the screenbrightness issue11:00
victorp(not that that means it is not a bug)11:01
ogra_victorp, me neither, i asked for more info, it doesnt dsay rtm or krillin11:01
SaviqWellark, also, could we make indicator-network not depend on unity8? otherwise we're getting a circular build-dep since we're trying to use libconnectivity-qt111:01
sil2100victorp: in any case, bugs #1394919 and #1394922 look like pretty serious issues11:02
ubot5bug 1394919 in cgmanager (Ubuntu RTM) "constant crash in trying to collect info for recoverable error" [Undecided,New] https://launchpad.net/bugs/139491911:02
ubot5bug 1394922 in unity-scopes-shell (Ubuntu RTM) "scoperunner produces a lot of crash files in rtm 166" [Undecided,New] https://launchpad.net/bugs/139492211:02
victorpogra_, so far worring bugs, but none of them topblockers11:02
sil2100jibel: any other serious issues reported during regression testing?11:03
sil2100Saviq: hmmm11:03
ogra_victorp, you think the session crashing isnt one ?11:03
victorpwell, what is the impact to the user?11:03
victorpseems like the systems manages not to let the crashes impact UX11:03
jibelsil2100, if you give me 30 minutes I'll finish the list of issues we found :)11:04
victorpjibel, that sounds like a good idea :)11:04
sil2100Saviq: sorry, was in a meeting - this sounds a bit strange, I think connectivity-api was managed by Wellark and pete-woods11:04
pete-woodssil2100: don't finger me on that one :p11:05
sil2100jibel: waiting with anticipation ;)11:05
ogra_victorp, apps that were running dont work anymore after a session crash11:05
pete-woodsit's Antti's baby11:05
ogra_until you reboot11:05
* jibel kills OSD11:05
sil2100pete-woods: ok, sorry ;p Just remember seeing you in the initial commits ;)11:05
ogra_or kill them explicitly11:05
victorpogra_, ah! yes that is nasty11:05
victorpwhich one is that?11:05
victorp919 or 922?11:06
ogra_victorp, the session does the lifecycle mgmt ... if it dies the apps stay suspended ... dangling dead11:06
ogra_thats 91911:06
Saviqsil2100, so, if I understand correctly, anything that would like to link against libconnectivity-qt1 will fail on i386 if the builder's amd6411:06
victorpogra_, ah, now I have seen your comment in the bug..11:07
ogra_victorp, i havent heard from others about such an issue though ... (and i used the phone a lot last night to keep it busy)11:07
victorpcould we put the impact on the bug please11:07
ogra_victorp, we usually do afrer we have confirmation ...11:07
victorpogra_, apps stop working? nope I have not seen it either11:07
ogra_victorp, kill unity8 from the commandline with some apps open11:08
victorpogra_, oks, well let see if it gets confirmed, then yes it looks like a blocker11:08
ogra_then try to start the apps that were open11:08
ogra_they wont start11:08
ogra_(after the session respawned i mean)11:08
ogra_we are missing a watchdog for this that cleans up running apps when the session dies11:09
ogra_(there is work on forcing a reboot when the session crashes ... but thats still in early stages)11:09
SaviqWellark, where RU?11:09
Saviqwhen you're needed :P11:09
ogra_victorp, hmm,, llooks like the brightness issue was actually 166 and krillin ...11:10
ogra_victorp, system-sessings is mostly pure QML ... given the QML cache issues it could well be caused by the not cleaned up cache11:11
jibelogra_, I cannot reproduce the brightness issue either, but I completely wiped the phone.11:11
victorpogra_, or it could be the dbus high load that he mentions, but seems like noone can repro11:12
ogra_we should take all issues in apps with a grain of salt on 166 ... especially from people that OTAed to 16611:12
victorpjibel, I ota'd.. but GM will be a fresh install anyway :)11:12
ogra_there is confirmation from a community person11:12
victorpogra_, right, but not wide spread to make it a blocked imho11:13
victorpplus as you said might be precompiling11:13
ogra_right11:13
ogra_we need to be careful about judging apps in general on this image11:13
ogra_victorp, oh, and seems rickspencer ran into a 100% CPU dbus bug yesterday ... most likely the one we have open already ...11:15
ogra_(we duplicated it during landing meeting)11:15
victorpyeah, I run into one too11:16
victorpthey need to be fixed for ota-1, that is for sure11:16
sil2100Yeah, but the 100% CPU issue in dbus is investigated all the time, not sure if we'll be able to get a fix quick11:16
sil2100It seems to be a tricky issue11:16
ogra_sil2100, well, i guess silo16 will at least killl a part of that11:16
ogra_but thats not for landing yet11:16
sil2100tvoss: hey! Did you have any luck with the 100% CPU dbus investigation?11:17
sil2100ogra_: right...11:17
tvosssil2100, nope, not yet11:17
ogra_and as i said ... just a part ..11:17
Saviqsil2100, what's even weirder... it built fine yesterday https://launchpadlibrarian.net/190747862/buildlog_ubuntu-vivid-i386.unity8_8.01%2B15.04.20141120-0ubuntu1_UPLOADING.txt.gz ¿?11:20
Saviqon an amd64/i386 machine, too11:20
* Saviq does not get it :|11:21
Saviq/food11:21
sil2100Saviq: wait, are you sure it's not transient? Ah, right, you an repro on a local chroot... Let's take a look if there have been any changes in the archive11:21
tvosssil2100, victorp we are all looking into the issue11:22
sil2100tvoss: ogra_ mentioned that dbus is a lot quieter with the new upowerd, as seen in silo rtm 16 (not for landing)11:28
sil2100Saviq: I have no idea what changed and suddenly cause this to fail, nothing got uploaded to vivid in the meantime that could have changed the situation11:42
sil2100Saviq: I also saw that it actually passed yesterday on an older builder11:42
sil2100But that shouldn't have any effect11:43
Saviqsil2100, yeah, it's *weird*, it's like apt resolution stopped working suddenly11:48
=== karni is now known as karni-lunch
Saviqsil2100, as the actual failure for me seems to be that the dep chain results in python3-xdg:i386, which for some reason is not fulfilled by python3-xdg:all ??11:48
oSoMoNtrainguards: can oxide-qt 1.3.5-0ubuntu1 be binary-copied from https://launchpad.net/~ubuntu-mozilla-security/+archive/ubuntu/ppa to vivid silo 17 ?12:34
sil2100Saviq: something is b0rken it seems, will still look into that after lunch12:34
sil2100oSoMoN: sure12:34
Saviqsil2100, thanks12:35
sil2100But so far this looks like a ghost story ;) But I'm sure there's a logical explaination12:35
oSoMoNsil2100, thanks! the PPA size might need to be increased first, as it already contains a copy of oxide (1.3.4)12:36
sil2100I just saw that, yeah, we'll have to poke someone regarding that12:36
sil2100Let me go to webops12:36
Mirvactually binary copies might work regardless12:37
Mirvyes, it'd work12:38
sil2100Mirv: they overwrite older packages? Or not obey the size limit?12:38
Mirvsil2100: they don't obey / check only if it's under the limit before starting the copy. so yes it'd work.12:38
Mirvsil2100: so I've had 20GB of stuff in 2GB PPA when doing Qt landing backups ;)12:38
sil2100Mirv: yay \o/ Ok, let me do that then12:38
sil2100Wow12:38
Mirvdon't file a bug, for me it's a feature12:39
ogra_haha12:39
sil2100I'm pretty sure no one here would want this feature to go away ;)12:40
sil2100oSoMoN: ok, copied, should be published in the PPA soonish12:40
oSoMoNsil2100, awesome, thanks!12:40
=== karni-lunch is now known as karni
oSoMoNthat’s an awesome feature I would say :)12:41
john-mcaleelyhttp://people.canonical.com/~jhm/barajas/master/device_krillin-20141121-7e18b86.tar.xz12:46
john-mcaleelyhttp://people.canonical.com/~jhm/barajas/master/device_krillin-20141121-7e18b86.changes12:46
john-mcaleelyhttp://people.canonical.com/~jhm/barajas/master/device_krillin-testresults-20141121-7e18b86.ods12:46
sil2100Wow, another vivid tarball?12:46
john-mcaleelyvivid device tarball for krillin. ogra_ sil2100 jibel ^12:46
john-mcaleelyone, small, important change12:46
ogra_john-mcaleely, go ahead12:46
john-mcaleelywe can get some run time before we migrate it to OTA12:46
ogra_the gpg stuff ?12:47
sil2100john-mcaleely: sounds nice12:48
sil2100It's generally good to use vivid as the testing platform12:48
john-mcaleelyogra_, yeah, the gpg stuff12:48
john-mcaleelysil2100, ogra_ I'll push it now then12:49
ogra_sil2100, it isnt ... he hates developers and wants to make our life harder by adding secutity checks !!!12:49
ogra_:)12:49
john-mcaleelylol12:49
sil2100It's all for our good12:50
john-mcaleelyor maybe12:50
john-mcaleelybwahahaha12:50
sil2100!!!12:50
ogra_hah12:50
sil2100;)12:50
john-mcaleelysil2100, ogra_ pushed.12:50
ogra_thanks :)12:50
sil2100psivaa: come to think of it, hmmm12:51
sil2100psivaa: we don't have vivid krillin smoketesing results? Since the rtm-dashboard only has utopic results - and those seem really old (from last month)12:52
psivaasil2100: let me take a look, not sure if that was requested to be setup12:53
ogra_it was surely there before12:54
psivaasil2100: ogra_: they are running,  but not being pushed to the rtm dashboard. now that http://dashboard.ubuntu-ci:8080/ is disfunctional, and vivid not being rtm, we need to find a home for that12:57
psivaai'll raise it in the meeting today12:58
ogra_thanks !12:58
sil2100Right, thanks!12:59
=== alan_g is now known as alan_g|lunch
sil2100rsalveti: hey!13:06
=== jhodapp is now known as jhodapp|sick
bzoltansil2100:  may i ask for a reconfig of the Silo28. I just added the gles branch what comes from the different project.13:25
bzoltanor Mirv ^13:25
popeyhmm, my phone isn't showing up in adb devices...13:26
popeyeven after a reboot13:26
sil2100bzoltan: doing!13:26
bzoltansil2100:  thanks13:26
Mirvbzoltan: I lost my mouse pointer and I'm in the hangout... it's a bit hard to find buttons to push :D13:26
sil2100bzoltan: done :)13:28
sil2100Mirv: ouch!13:28
* sil2100 goes to lunch finally13:28
Davmor3Hey guys I see an issue with ciborium it keeps saying my card is connect and disconnect13:39
Davmor3abyway back to the holiday now13:39
popeyok, can't get the phone to show up at all over adb13:40
popeymako is fine, krillin not13:41
=== alan_g|lunch is now known as alan_g
bzoltansil2100: Mirv: I am done with silo28. I have pasted the URL to the test logs. The silo is still creating the -gles package, but that is not the scope of the tests... Once the -gles are done, would you please push the new UITK to Vivid?14:04
rsalvetisil2100: hey14:06
om26erogra_, Hi! I am testing silo 2 -- What is the regression potential for this change ?14:17
ogra_the first startup of apps after OTA will be slower than usual to create the new cahe14:18
ogra_1sec max14:19
ogra_om26er,  oh, and beyond the above ... zero14:28
om26erogra_, alright, good to know.14:30
sil2100jibel, ogra_, om26er: are both the oxide and qml-cache silos being signed-off right now?14:31
ogra_no14:32
ogra_only qml14:32
ogra_oxide gets its own image after promotion14:32
om26erone... at a time.14:32
Mirvbzoltan: ok. and I'm ready with 002 to vivid.14:32
sil2100Ok, now I see :)14:32
om26erogra_, Well the silo seems to do whats written on the tin. Should I just approve or try it a second time ?14:37
* om26er is clueless ;-)14:37
rhuddiejibel, popey, I finished testing the music app. No issues found. I recorded results here: https://docs.google.com/a/canonical.com/spreadsheets/d/1gFoUz9zQ38LovfLLIcHU5SHTuDDBQvHTSPVcrIxJUlc/edit#gid=014:38
ogra_om26er, if the cache is empty after OTA we're fine14:38
popeyrhuddie: magic, thanks very much14:39
ogra_om26er, a second run should just give you the same result ... else we have a very serious upstart probllem ;)14:39
popeyrhuddie: "Needed to reboot after install for app to work (othwise it just displays spinner)" - pull down on app scope should have worked.14:39
popeycan't believe we still have that bug14:40
popeybeen there since day 1.14:40
om26erogra_, it was all clear till your first reply. Second reply made it a little confusion, retry or retry not ? :p14:41
rhuddiepopey, the app launched, but displayed the spinner instead of displaying "No music found"14:41
popeyrhuddie: even after pulling down to refresh click scope?14:41
ogra_om26er, dont, unless you want to waste time :)14:42
rhuddiepopey, I didn't do that, so let me check again14:42
popeyrhuddie: i have experienced that myself, its because the click scope still points to the old app version you had. either pull down or search for music in the scope at the top and it launches14:43
om26erokki, approved.14:43
ogra_yay, thanks14:44
sil2100rsalveti: hey, just wanted to know if there was some progress related to the pulseaudio part of bug #139123014:45
ubot5bug 1391230 in pulseaudio (Ubuntu RTM) "[TOPBLOCKER] web audio, pulse runs at 6% and screen will not blank on idle" [Critical,Confirmed] https://launchpad.net/bugs/139123014:45
sil2100ogra_, om26er: \o/14:45
sil2100Let me publish14:45
rsalvetisil2100: nops, still investigating14:45
ogra_publishing14:45
rsalvetishould know more on monday14:45
sil2100...and ogra_ was faster14:46
sil2100rsalveti: thanks :)14:46
ogra_heh, sorry :)14:46
AlbertA2ogra_: I'm making a new mir release, but want to coordinate the seed change (https://code.launchpad.net/~mir-team/ubuntu-seeds/use-new-Mir-metapackages/+merge/242408)14:46
sil2100ogra_: ;p14:46
ogra_AlbertA2, yeah, i saw that, this is vivid only, right ?14:47
sil2100Sorry is not enough! *runs away in tears*14:47
AlbertA2ogra_: right14:47
* ogra_ hugs sil2100 14:47
* sil2100 hugs ogra_ back14:47
Mirvogra_: UITK would need core-dev ack. https://ci-train.ubuntu.com/job/ubuntu-landing-028-2-publish/4/artifact/packaging_changes_ubuntu-ui-toolkit_1.1.1338+15.04.20141121-0ubuntu1.diff14:48
Mirvthey manually fixed some changelog entries plus added new test related dependencies14:48
ogra_Mirv, looks ok to me, i hope their bzr tree can cope with teh changelog hacking :P14:49
Mirvok. I hope so too :)14:49
rhuddiepopey, confirmed it is working after doing as you suggested14:50
AlbertA2ogra_: so how do we go about that? publish mir first then you'll make the seed change?14:50
ogra_AlbertA2, is Mir ready to land in a silo already ?14:51
AlbertA2ogra_: yes I just ok'ed. silo 00914:51
ogra_AlbertA2, then publish it, i'll do the seed change and upload a new meta to vivid14:52
ogra_seed changess and their packages should always land together in the same image ... beyond that the order does not matter14:53
ogra_(we build vivid images at 2am UTC, still plenty of time)14:53
AlbertA2ogra_: ok good to know thanks14:53
AlbertA2trainguards: vivid silo 009 is ready to publish14:53
popeyrhuddie: awesome14:55
sil2100Mirv: so, the vivid plans to have Qt 5.4.0, right?14:56
AlbertA2trainguards: oops sorry, branches TAed now...for mir14:58
Mirvogra_: I wonder if you'd be ok with reviewing that new Mir packaging changes too.. https://ci-train.ubuntu.com/job/ubuntu-landing-009-2-publish/51/artifact/packaging_changes_mir_0.9.0+15.04.20141120.1-0ubuntu1.diff it's quite big, but _mostly_ because lot of cmake file changes (included for possible interest, debian/ is what needs acking) and because of renamed packages15:01
Mirvsil2100: yes, so this week I've been trying to get to the point where I have fast&ugly packages that can be used to detect bugs early15:02
Mirvsil2100: next week there should be hopefully release candidate from upstream, instead of the beta I've now used15:02
ogra_Mirv, phew ... not a small one ... but ack15:06
sil2100Mirv: ok, then I'll prepare a merge with a fix for appmenu-qt5 not building but not release it for the time being15:07
jibelogra_, what's the ETA for the new build?15:12
alan_gcihelp: this has been saying "Recording test results" for at least half an hour (which suggests there's a problem somewhere) - http://s-jenkins.ubuntu-ci:8080/job/mir-vivid-amd64-ci/193/console15:13
ogra_jibel, the package just landed, starting a build now ... ~90min to 2h15:13
jibelk15:13
ogra_build triggered15:13
fgintheralan_g, the problem in this case is that build 192 is going very slow. and jenkins can't complete build N if build N-1 is not finished15:14
sil2100rtm -proposed migration... so nice15:14
fgintheralan_g, I've been looking at the slow build for the last 20 minutes or so and I think I've got it unwedged15:14
fgintheralan_g, dammit, it timed out15:14
sil2100jibel: so QA is not doing exploratory testing anymore, right? I remember Dave doing that in the past15:15
* alan_g is sympathetic to fginther's frustration15:15
jibelsil2100, we do, when there is time left between silos and images15:15
WellarkSaviq: I had away message in canonical-irc, as you get kicked out on multiple channels if you use "public" away in your nick15:16
WellarkSaviq: I will see what I can do with the deps15:17
Wellarklibconnectivity-qt is not coming from i-network source15:17
SaviqWellark, I'm not really sure what's teh culprit15:17
SaviqWellark, no, but connectivity-api depends on i-n15:17
Saviqlibconnectivity-qt1 that is15:17
WellarkSaviq: it probably should just recommend15:17
Wellarkwould that fix it?15:17
SaviqWellark, well, can it just recommend?15:18
WellarkSaviq: sure. if i-network is not around (hence no connectivity dbus-service running) libconnectivity-qt1 falls back to "connected"15:19
Wellarkthere is no hard coupling15:19
Wellarkother than we know that i-network provides the connectivity-service libconnectivity-qt1 tries to poke over dbus15:19
imgbot=== trainguards: RTM IMAGE 167 building (started: 20141121 15:20) ===15:20
WellarkSaviq: i-network must depend on unity815:20
Wellarkas it depends on the snap-decisions that unity8 provides15:20
SaviqWellark, yeah I know why15:21
Wellarkone way to break this circular dependency problem would be to introduce two meta packages15:21
Wellarkunity-notifications-service15:21
Wellarkand connectivity-service15:21
Wellarkas, i-network depends on the unity-notification-service, which is actually implemented by unity815:21
Wellarkand then again libconnectivity-qt1 dependes on connectivity-service which just happens to be impemented by i-network right now15:22
Wellarkbut didrocks might not like the idea ;)15:22
Wellarkalthough IMO it would make the dependencies more explicit15:23
Wellarkwhen something depends on a well-known dbus-service, it should not matter which package implements it15:25
Wellarkfrom the user point of view15:25
Mirvsil2100: if possible, I prefer conditional changes that can be landed beforehand, so that nochange rebuild is enough when landing Qt15:25
Wellarkor "client"15:25
Wellarksil2100: can we throw in two metapackages --^15:25
fgintheralan_g, I ended up cleaning up a couple runaway process and restart that build that timed out.15:29
fgintheralan_g, things look better now, but will need to figure out something to prevent this in the future15:29
Mirvso.. next vivid image will have new qtbase, new ui-toolkit and new mir. what could possibly go wrong.15:35
balloonscihelp, I need a job on s-jenkins updated (the docviewer-app-click job)15:37
retoadedballoons, updated in what way?15:38
balloonsretoaded, it looks like it's still building with trusty, and in general might not be the current way to build clicks. It's sat unused for some time15:39
balloonsretoaded, you can look at clock-app-click as an example15:39
retoadedballoons, ack, will work it in amoung the morning full of meetings15:40
balloonsretoaded, ty15:40
alan_gfginther: thanks.15:42
bfillersil2100: can you republish ubuntu silo 15, MR's are approved now. also need a silo for line 60 please15:43
pstolowskitrainguards, hello, may i ask for a silo for line #59?15:46
=== chihchun is now known as chihchun_afk
oSoMoNtrainguards: can vivid silo 17 be published, please?16:01
oSoMoNthat was quick, thanks to whoever did it :)16:04
sil2100o/16:04
bzoltansil2100: Mirv: thanks for midwifing the UITK landing.. you guys just rock!16:08
sil2100jibel: btw. what about sanity testing of vivid images? Does that still happen for every vivid image?16:12
Mirvbzoltan: you're welcome16:19
om26ermterry, Hi!16:29
mterryom26er, hello!16:29
imgbot=== trainguards: RTM IMAGE 167 DONE (finished: 20141121 16:30) ===16:30
imgbot=== changelog: http://people.canonical.com/~ogra/touch-image-stats/rtm/167.changes ===16:30
om26ermterry, I was playing around and found that pin code lock can be bypassed easily when unity8 is start.16:30
mterryom26er, seems bad16:30
ogra_jibel, sil2100 victorp ^^^^^ image 167 for you16:30
sil2100Wow, that seemed somehow fast!16:30
victorpogra_, what a service!!16:30
victorp:)16:30
sil2100jibel: can we have someone sanity testing that + delta?16:30
ogra_70min only !16:31
ogra_thats a new record16:31
sil2100But the changelog is huge16:31
om26ermterry, when the phone starts just swiping the greeter shows 'Scopes' with loading spinner and after that dash just shows. isnt' that alarming ?16:31
ogra_yeah, scary16:31
ogra_sil2100, but we can blame om26er, he tested all the changes that landed there16:31
ogra_in case something is broken :)16:32
mterryom26er, I feel like that might be a race between PAM and your finger.  But we have(had?) code that prevented that race...16:32
mterryom26er, is this vivid or rtm?16:32
om26erogra_, I hope I did not break anything16:32
om26ermterry, rtm and its always reproducible16:33
ogra_om26er, no worries :) just kidding16:33
mterryom26er, but it's a speed thing?  Like, if you wait a second or so, you do get the lockscreen right?16:33
om26ermterry, yes, right.16:33
om26ermight make sense if lockscreen was part of unity8 and not unity8-dash ?16:34
mterryom26er, OK.  file a bug and I'll look at it today.  It is part of unity8, not the dash16:34
om26eroSoMoN, Hi! while testing silo3 I found pulseaudio is still eating 6% cpu when i swipe away the browser while grooveshark is playing16:46
om26erThe actual fix is working though i.e. the screen blanks as it should, even on the first try.16:47
oSoMoNom26er, yes, that’s expected, the fix in oxide only fixes the screen blanking bit, the rest will be addressed separately in pulseaudio itself16:48
om26eroSoMoN, ack, thanks :)16:48
om26eroSoMoN, can you tell whats the regression potential of that fix ? looking at the diff it looks pretty straight and safe to me.16:49
oSoMoNom26er, never ask that question to a developer who wants to land a fix :)16:49
oSoMoNom26er, that said, I’d say the regression potential is 016:49
ogra_ask his manager instead :P16:49
oSoMoNom26er, yeah, it’s very safe indeed16:50
om26erHey Bill ? :p16:50
ogra_lol16:50
sil2100;)16:53
jibelom26er, don't expect a developer to answer anything else than 0 to this question ;)16:57
om26erIn some cases that reply is actually a helper in putting stress on certain features.16:59
sil2100jibel: who is taking care of testing 167?17:00
ogra_sil2100, i'll be a little late, other meeting runnin over17:00
sil2100ogra_: ok17:00
jibelsil2100, rvr rhuddie robotfuel are on it17:00
=== psivaa-holiday is now known as psivaa
ogra_tedg, soo ... seems we have some new cgmanager issue17:23
tedg:-/17:23
tedgogra_, bug number?17:23
ogra_tedg, bug 1394919 ... jibel has a bunch more info he hasnt added there yet17:23
ubot5bug 1394919 in cgmanager (Ubuntu RTM) "constant crash in trying to collect info for recoverable error" [Undecided,New] https://launchpad.net/bugs/139491917:23
ogra_seems OOM related17:23
tedgHmm, we could disable that recoverable error…17:24
tedgWas trying to help track down that cgmanager connection issue.17:24
tedgThat we worked around with the timeout.17:25
ogra_well, thats only fallout17:25
jibeltedg, it's just a side effect, at some point you cannot launch any app and you have to reboot17:25
ogra_there is some issue in cgmanager ... that apport cant collect info is another issue17:25
tedgIt seems probably a root/user thing?17:25
tedgPermissionError: [Errno 13] Permission denied: '/proc/642/exe'17:26
tedgIs recoverable_error setuid ?17:26
tedgNope17:26
tedgbdmurray, ev, have you guys discussed making recoverable_problem setuid ?17:27
tedgIt seems to be erroring when we try to ask it to report on a root process as the user.17:27
tedghttps://errors.ubuntu.com/oops/c25e8678-70f2-11e4-976f-fa163e4aaad417:27
sil2100robru: don't publish silo 003 rtm yet17:27
tedgNicely, it turns itself in :-)17:27
sil2100robru: just in case - let's wait for confirmation from jibel and QA if the current image is promotable17:28
robrusil2100: i was wondering ;-)17:28
sil2100If we get a green flag from them, I guess we can publish this + the music-app in the store ;)17:28
sil2100(never enough of safety)17:28
* tedg puts on his IRC helmet17:28
=== alan_g is now known as alan_g|EOW
robrubzoltan: vivid 1518:06
bzoltanthanks robru18:08
robrubzoltan: you're welcome18:08
ogra_plars, happy birthday !18:11
plarsogra_: thanks!18:12
* Mirv wonders why he's here18:17
* ogra_ wonders why Mirv wonders why he's here 18:20
Mirvogra_: because I kind of EOD'd earlier, then came back to see qtbase migrate to release pocket properly, and then sort of hanged around to do other stuff18:22
ogra_heh18:22
ogra_like we all do :)18:22
popeyheh18:23
Mirvalso, snow18:23
ogra_brrr18:24
Mirvhttp://people.canonical.com/~tjyrinki/snowproof.jpg from visit to the nearby store18:26
popeyawwww18:26
popeywish we had snow18:26
* ogra_ doesnt 18:27
Mirvthe fun thing was that there zero snow at 2.30pm. then I had SDK hangout, and at 4pm it didn't snow anymore but it looked like that.18:27
Mirvand I didn't look out of the window meanwhile18:27
popeydo your cats like the snow?18:27
popeymine go mad for it18:27
ogra_mine love it18:28
ogra_they need a few days to adapt18:28
ogra_werid to walk on etc18:28
ogra_but once they overcame that they love it18:28
bzoltanpopey: ogra_: So you like cats... Now I start to understand things18:28
Mirvthey kind of love it but we don't take them outside in the winter18:28
Mirvmostly18:28
ogra_i like dogs ... but i lack time18:28
bzoltanpopey: ogra_: according to Olga's survay you both have Cheguevara shirts too18:29
ogra_lol18:29
popeywat18:29
Mirvand the white one doesn't like "outside" anyway. but he likes snow on the balcony.18:29
ogra_never had one, no18:29
mterryom26er, you still around?  I'm hopeful that https://code.launchpad.net/~mterry/unity8/early-disable/+merge/242517 fixes your security exploit18:29
popeyi have an RMS Che t-shirt18:29
sil2100Oh oh! Snow!18:29
om26ermterry, hey, yes.18:29
ogra_bzoltan, but i suspect popey is one of these communist male east uk'ers that like ubuntu :)18:29
sil2100I mean, on Mirv's picture18:29
sil2100Here it's still just cold...18:29
popeyhttp://1.bp.blogspot.com/-nneSxLZA9zk/TxenMQR94gI/AAAAAAAADnY/DLjgtSbcV-A/s1600/che-stallman-tshirt-show.jpg18:30
mterryom26er, you shouldn't need to rebuild, could simply edit the file in place18:30
bzoltanpopey: https://yougov.co.uk/profiler#/Ubuntu/lifestyle18:30
Mirvsil2100: :)18:30
om26ermterry, ok i'll edit the file and delete the qml cache.18:30
popeyhaha brilliant18:30
ogra_bzoltan, geez, that food pic is right on the spot !18:30
bzoltanogra_:  no shit :)18:30
popeybrilliant18:31
ogra_i dont live in east UK though18:31
Mirvwow, I didn't know it's a thing outside Finland http://en.wikipedia.org/wiki/Pulla18:32
ogra_(and i think i overcame my commie phase with 19 or so ...)18:32
bzoltanogra_: but have the ticket already, right?18:32
MirvI mean that's 1st on the Ubuntuer list of foods..18:32
om26erno cwaye1 today ?18:32
MirvFavourite Dishes18:32
ogra_yummy !18:32
popeynever heard of pulla18:32
MirvI wonder how it got to the top of that list18:33
bzoltanMirv:  Damn it.. I forget this one -> we need this landed in order to make the silo15 build -> https://code.launchpad.net/~zeller-benjamin/kubuntu-packaging/qtcreator-qmakeprojectpatch/+merge/24082718:34
Mirvbzoltan: let's put it into that silo then18:35
bzoltanMirv:  I added  it...18:35
Mirvbzoltan: not as MP, fixing18:40
Mirvbzoltan: it's in PPA now https://launchpad.net/~ci-train-ppa-service/+archive/ubuntu/landing-015/+packages18:42
bzoltanMirv:  thank you!18:43
bzoltanMirv:  could you please reconf the silo too?18:44
bzoltanor robru ^18:45
om26ermterry, confirmed that fixes the issue.18:45
mterryom26er, sweet, thanks!18:45
robruMirv: bzoltan on it18:45
om26ermterry, can you please propose that for rtm branch as well ?18:46
mterryom26er, uh...  maybe?  Saviq, we're doing separate rtm branches now?18:47
robrumterry: you're sure not landing new features in rtm ;-)18:47
mterryrobru, no, not that we'd sync trunk.  Just last time I remember Saviq was making the rtm backport branches himself18:48
robruah18:48
bzoltanrobru: ogra_^ WOW, that is new18:54
robrubzoltan: it's just a network error, try again18:55
bzoltanrobru:  OK... looks scary .. i am faint hearted at 9pm Friday18:56
robrubzoltan: yeah sorry, error handling from the chroot is a bit rubbish. the python script just sees 'returned exit code 1! raise exception!' so you have to check the log for the real error, which it turns out it just failed to download some file18:57
Mirvrobru: the other mp just needs to be removed.. I thought I did that. it's manually uploaded.19:09
robruMirv: which mp?19:10
robrubzoltan: weird, different network issue this time. try again! I guess our network is having trouble at the moment.19:10
Mirvrobru: qtcreator mp, qtcreator is in manually uploaded sources now19:16
robruMirv: spreadsheet row looks fine to me? did you fix it already?19:17
Mirvrobru: citrain blows up if same project in both. sorry, on mobile now.19:17
robruMirv: is 'qtcreator-plugin-ubuntu' the same as 'qtcreator'?19:18
Mirvrobru: no, that needs to be there. there was qtc mp too there19:20
robruMirv: I think it's fixed now. I only see qtcreator-plugin-ubuntu and kubuntu-packaging19:21
robruoh I guess the silo needs a reconfig though19:21
robrubzoltan: hang on19:21
Mirvrobru: remove the kubuntuthing, = qtcreator19:22
robruoh, weird19:22
robruthis is why the earlier versions of citrain considered it a hard error for the lp project name not the match the debian source package name19:23
robrunow we just warn on that...19:23
robrubzoltan: ok building https://ci-train.ubuntu.com/job/ubuntu-landing-015-1-build/70/console19:23
Mirvthe qtc needs to finish first before the plugin succeeds19:27
Saviqmterry, in general I stick to a single "staging" branch to merge into rtm, but we've a silo waiting for QA for over a week now :/19:39
Saviqmterry, so if there's a TOPBLOCKER it might need to get in separately19:39
bzoltanthanks robru for fixing it19:49
robrubzoltan: you're welcome19:49
ogra_sil2100, so i guess we can let oxide and music app in now ... (providing they passed QA)20:06
ogra_=== Image RTM #9 Promoted !!! ===20:13
ogra_(that is krillin: 167, mako: 138 and emulators: 132)20:13
balloonsretoaded, you find anything with the docviewer job?20:30
retoadedballoons, am actually working on it now.20:31
retoadedshould have it updated shortly20:31
oSoMoNtrainguards: can you please publish RTM silo 3 ?20:36
robruoSoMoN: I dunno am I allowed to? I thought rtm was locked down? ogra_ ^20:37
ogra_robru, oxide and music-app are alllowed in20:37
robruogra_: ok... i don't see a bug reference or anything ;-)20:38
* oSoMoN bribed the PM team to get his fix in20:38
ogra_bug 139123020:38
ubot5bug 1391230 in pulseaudio (Ubuntu RTM) "[TOPBLOCKER] web audio, pulse runs at 6% and screen will not blank on idle" [Critical,Confirmed] https://launchpad.net/bugs/139123020:38
robruoh it is there, nm20:38
robruok, publishing20:38
ogra_:)20:38
ogra_cool20:38
oSoMoNthanks!20:38
ogra_popey, what about music ?20:38
robruoSoMoN: you're welcome20:40
retoadedballoons, http://s-jenkins.ubuntu-ci:8080/job/docviewer-app-click/25/console20:50
om26ermzanetti, what packages should I install to get useful stacktrace for unity8-dash crashes ?20:54
mzanettiom26er: unity8-dbgsym, qtdeclarative5-qtmir-plugin-dbgsym. you need to add ddebs.ubuntu.com as apt source20:55
mzanettiom26er: well, reading the stacktrace it should tell you what libs are involved20:55
mzanettiif it just says ??? then you're missing the according dbgsym package20:56
om26ermzanetti, great, i'll try that.20:57
balloonsretoaded, awesome! We haz a click package, wahoo!20:59
balloonspopey, if you are reading this, I'd like to put a docviewer click in the store. What says ye?20:59
om26ermzanetti, seems there no ddebs.ubuntu.com repo for 14.09 (rtm) ?21:03
mzanettiI think there should be, although I haven't ever tried for rtm myself21:03
alexabreucan a trainguard reconfig silo 29 ?21:14
=== alexabreu is now known as alex-abreu
tedgtrainguards, can I get a vivid silo for line 64 please?21:14
robrutedg: vivid 221:16
tedgrobru, Thanks!21:16
robrutedg: you're welcome21:16
ogra_SIGH21:31
ogra_hard UI hang again ... with 16721:31
ogra_bah, wasnt a hard hang it was apport creating the useless recoverable problem thing21:34
ogra_hmm, but it seems to have killed the session without having it restart ... seems my lifecycle mgmt was gone for short ... i have a bunch of dangling apps in the bg that i cant start anymore21:35
ogra_tedg, http://paste.ubuntu.com/9156976/ ...21:40
ogra_that is what i have in cgmanager log after the crash happened21:40
popeyballoons: does it work?21:42
tedgogra_, hallyn said that "sendmsg" failed one is cgmanager crashing.21:44
popey20:38:57 < ogra_> popey, what about music ?21:44
tedgogra_, There's where we were getting the cgmanager connection hang.21:44
popeyogra_: i thought we agreed during the landing call not to upload music to the store until an image had been promoted21:44
* popey scrolls back further and sees 20:13:08 < ogra_> === Image RTM #9 Promoted !!! ===21:45
ogra_popey, we did :)21:45
popey\o/21:45
popeyballoons: you about? :D Might have two uploads for you.21:45
tedgogra_, I'm trying to land the vivid fixes in ppa 2. You might try the packages and see if it helps.21:45
ogra_tedg, i added syslog from the time where it happens too ... dmesg is largely the same though21:45
balloonsI could be21:46
balloonspopey, lol, it just built, I didn't try it, haha21:46
popeyballoons: ok, priority 1 is music app pls. Specifically http://popey.com/~alan/com.ubuntu.music_2.0.745_all.click which has had QA sign off21:46
balloonsk, next?21:47
popeyI'd like to test docviewer some more before uploading21:48
balloonspopey, no worries21:48
popeyi see 0.1.41 in jenkins21:49
balloonsyes21:49
popeyright, now, why does adb not work on my krillin please?21:51
* balloons is installing21:51
balloonspopey, https://myapps.developer.ubuntu.com/dev/click-apps/143/changerequest/ btw21:51
balloonsdoc viewer runs, that's encouraging21:54
ogra_did you already upload ?21:54
ogra_(doc viewer that is)21:54
popeyogra_: no21:55
popeyhowever, music approved to store21:55
balloonssweet.. download pdf in browser, open with doc viewer21:56
balloonsboom pdf21:57
ogra_you are not supposed to download bomb building instructions from the internet21:59
balloonsso popey at least the basics work. I couldn't get photo viewer to work, might try something different21:59
balloonsno search or page goto21:59
* popey pushes to phone21:59
popeyas magically adb suddenly works22:00
popeyanyone know where "summary goes here" comes from when you use pkcon?22:00
tedgpopey, Guessing an unimplemented feature in the click backend.22:03
ogra_sil2100, triggering 168 now ... both bits we want are in place22:05
popeygreat22:06
popeytedg: ok. should I file a bug do you think?22:06
tedgpopey, Naw, I don't think a bug will help.22:06
imgbot=== trainguards: RTM IMAGE 168 building (started: 20141121 22:10) ===22:10
balloonstedg, you win IRC today.. awesome22:10
* balloons enjoys the sarcasm real or invented22:11
tedgHeh22:11
balloonspopey, ogra_ docviewer published22:20
balloonsenjoy your weekend!22:20
popeyBOOOOOOOOOOOOOOOOOOOOOOOOM!22:21
popeythanks balloons !22:21
ogra_yay !!!!22:23
tedgtrainguards, can you please publish vivid/2 ?23:01
tedgAh, symbols fix.23:06
popeyogra_: i know I have mentioned this multiple times today but adb is really unreliable since 16623:09
imgbot=== trainguards: RTM IMAGE 168 DONE (finished: 20141121 23:20) ===23:20
imgbot=== changelog: http://people.canonical.com/~ogra/touch-image-stats/rtm/168.changes ===23:20
robruwow, latest lunch ever. bbiab23:48

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