/srv/irclogs.ubuntu.com/2009/10/02/#ubuntuone.txt

CardinalFangjdobrien, thisfred, aquarius:  Okay, I'm finally awake.  Let's bring the replication talk here.13:42
aquariushey13:42
aquariuskk13:42
* CardinalFang curses xchat ^W13:42
jdobrienhi CardinalFang13:43
aquariusright13:45
aquariusCardinalFang, does replication work for you?13:45
aquariusCardinalFang, with your encode-db-names branch, I mean13:46
CardinalFangjdobrien, aquarius, no.  I get HTTP 500s, and I don't think I should get those.13:48
aquarius*500*?13:48
aquariusblimey, I don't get 500s13:48
aquariuswhere do you get them?13:48
CardinalFangaquarius, jdobrien:  Python -> cloud couchdb:  http://paste.ubuntu.com/283814/13:51
CardinalFangaquarius, jdobrien:  couchdb -> cloud couchdb:  http://paste.ubuntu.com/283805/13:52
aquariusright, I get the second of those13:53
aquariusthe first of those I do not get13:53
aquariusI was getting 401 for python->cloudcouch, until I changed the OAuth signature method to PLAINTEXT13:53
CardinalFangMine is already PLAINTEX.13:53
thisfredyoyoyo13:54
jdobrienCardinalFang, ?13:54
CardinalFangjdobrien, !13:56
* jdobrien puts on "Everyday is like Sunday" so he feels like it's the weekend13:57
aquariusI wish python-couchdb didn't use HEADs for everything, because you don't get the body telling you what the problem is :(13:57
jdobrienaquarius, ditch it13:57
aquariusjdobrien, I am thinking of doing exactly that for lucid13:58
aquariusnot now, though. That's a radical change. statik will boil us in oil if we do it after beta. ;)13:58
jdobrienyes13:59
CardinalFangjdobrien, can you see the error log for the server?14:01
jdobrienCardinalFang, not live14:01
jdobrienCardinalFang, I am going to ping a losa and get it14:01
thisfredaquarius: can we hack python-couchdb to temporarily not do that?14:01
aquariusthisfred, not quickly.14:02
aquariusI don't think14:02
thisfredshit14:02
aquariushang on, I'll have a look14:02
* thisfred looks14:02
aquariushahahaa I lie14:02
aquariusone line change14:02
aquariusthere is a head() method in couchdb.client14:03
aquariusjust change it to do "GET" :)14:03
thisfredaquarius: always with the lying14:03
aquariusCardinalFang, that would be useful for your 500s. couchdb/client.py, line 98614:03
thisfredaquarius: actually I see 5 head calls14:03
thisfredstill14:04
aquariuswhere?14:04
thisfredand my client only has 976 lines14:04
aquariusthe only place in the whole file that says HEAD (in caps) is that method14:04
thisfredso maybe different version14:04
thisfredaquarius: ah, I was looking at the lowercase calls to head()14:04
thisfredyou're smarter14:04
aquariusI have karmic's python-couchdb14:05
* CardinalFang is afk 5 min.14:05
thisfredaquarius: I'm looking at the one in our sourcecode, so yeah14:05
aquariusok, I get a 400 when trying to do replication because we're talking to the cloud couch using the wrong oauth tokens; i.e., we're using the local tokens, for some reason14:09
thisfredaquarius: ah14:12
aquariuscan't work out why, though. am confused by chasing around inside replication.py14:12
thisfredI thought CardinalFang already landed a fix for that14:12
thisfredaquarius: yeah the import code is rather freaky14:14
thisfredaquarius: it looks up ubuntuone.py by variable name14:14
thisfredI would have just used an explicit registry14:14
thisfred(or that's even too fancy a word, a dictionary "constant")14:15
facundobatistaHi all14:15
thisfredaquarius: so, but everything happens in replication_services/ubuntuone.py14:16
thisfredhi facundobatista14:19
aquariusam confused to hell by replication.py/couchdb_io.py. get_database_names_replicatable seems to not be setting up the connection right, but...where do the oauth tokens get injected in?14:19
aquariusthis is my head proving to me that it's harder for me to read code than it is to write it. :)14:19
aquariuswtf? it's trying to read the management database on the *remote* server to see which databases need replicating.14:26
aquariusthis is not gonna work. :)14:26
CardinalFangEh?14:26
aquariusCardinalFang, replication.py, line 17514:27
thisfredaquarius: perhaps your management db was one that was prepared earlier, by code that was ehhh, in flux?14:27
aquariusfor remote_db_name in couchdb_io.get_database_names_replicatable(couchdb_io.mkuri(addr, port))14:28
aquariusaddr, port is the remote DB14:28
aquariusand get_database_names_replicatable looks at the management DB to work out which database names there are14:28
thisfredhmm14:28
CardinalFangOr, which ones it should not replcate.14:29
aquariusI think that line should have localhost, int(local_port) in it, like line 161 does14:29
aquariusCardinalFang, but I might be misunderstanding this code14:29
CardinalFangaquarius, I think you're right.14:29
aquariusthis doesn't solve the problem that couch-to-couch replication doesn't work, which looks like a couch bug to me14:29
CardinalFangaquarius, it works between peers.14:30
aquariusCardinalFang, yeah, but it reads the *other* machine's management database. So it works between peers by accident, no? ;)14:31
CardinalFangaquarius, No it doesn't.  peers is the first half of the do_all_replication function.14:33
CardinalFangServices is the second half.14:34
aquariusoh, yeah, we don't do pull from peers, got it14:34
aquariuspeers push to us.14:34
CardinalFangRgr.14:34
aquariusI'm going to talk to the couch guys about replication not working14:40
CardinalFangI think we need log files first, yes?14:51
aquariusthat's why I did http://friendpaste.com/7K7zNRMK0sEaITradrRXAt14:51
aquariusif they need logfiles from the other end, then yeah14:51
aquariusjdobrien, how do we get logfiles from cloud couch/14:51
aquarius?14:51
jdobrienaquarius, I had them copied over but haven't looked yet. check the private channel for details14:53
jdobrienCardinalFang, aquarius: how about this addition to the api: 'cloudsync': {'dbprefix': 'u/a87/ff6/4', 'host': 'http://localhost:6612'},14:56
jdobrienthat would be real data of course14:56
aquariusjdobrien, what's "host"?14:56
jdobrienaquarius, in production it would be https://couchdb.o.u.c14:56
aquariusbut, er, it'll always be that, right?14:57
jdobrienaquarius, not in testing and locally14:57
jdobrienaquarius, you know, when we right integrations tests :)14:57
CardinalFangjdobrien, Please make the prefix something I should append to directly.14:57
CardinalFangjdobrien, That is, put a slash on the end if my db name "foo" shouldn't be 'u/a87/ff6/4foo'14:58
aquariusjdobrien, a not totally unreasonable point. ;-)14:59
CardinalFangjdobrien, I heartily approve of this.14:59
jdobrienthisfred, CardinalFang, aquarius: I am just returning whatever get_user_db_path returns15:01
* dobey wonders what is using all his network15:01
* dobey wishes top had a %NET column15:01
jamaltadobey: now that would be convinient15:01
jblountMEETING STARTS15:01
jblountWelcome to the Ubuntu One Desktop+ developers meeting. Anyone can watch, but to give your status please respond with "me".15:01
jdobrienthisfred, CardinalFang, aquarius: I don't really want the API code deciding it should end in a slash15:01
urbanapeme15:02
aquariusme15:02
teknicome15:02
dobeyme15:02
jblountme (although I'm always tempted to say meeesa like Jar Jar Binks)15:02
CardinalFangme15:02
dobeyjblount: just a warning, i have an itchy trigger finger15:02
urbanapeDONE: Working on one-branch-to-rule-them-all with jblount. Got folder and file actions to conditionally show based on whether the user has delete or write privileges in that context. Dropped Bindwood development for Karmic. Will pick it up after release for our PPA and Lucid.15:03
urbanapeTODO: Running tests before commit and push. Find some other functionality that needs work on the files UI.15:03
urbanapeBLOCK: None.15:03
urbanapeaquarius: pour it on15:03
vdsme15:03
aquarius⚀ DONE: had no internet connection; was annoyed; working on DC-to-cloud replication15:03
aquarius⚁ TODO: DC-to-cloud replication; fix unknownloginerror; look at oauth-enabling twisted15:03
aquarius⚂ BLOCKED:15:03
aquarius⚃ BUG COUNT:https://bugs.edge.launchpad.net/~sil/+assignedbugs?field.tag=ubuntuone-karmic - 115:03
aquariusteknico, you're up15:03
teknicoDONE: updating the contacts web ui code to the sprint use cases (#440070); fixed a bug in the cloud_server CouchDb code15:03
teknicoTODO: updating the contacts web ui code to the sprint use cases (#440070); apply the contacts web design structure to server-side code (#439089)15:03
teknicoBLOCK: none15:03
thisfred( jblount : just for that you get http://www.youtube.com/watch?v=bUQfHRfX2o8 )15:03
tekniconext: dobey15:03
dobey☺ DONE: Fixed #371674 (friendly names in web ui)15:04
dobey☹ TODO: Fix more bugs.15:04
dobey☹ BLCK: None.15:04
dobeyjblount: *bang*15:04
jblountDONE: More work on the /files/ UI, chats with joshuahoover and teknico and urbanape about scheduling the redesign (and keeping lp:~jblount/ubuntuone-servers/one-branch-to-rule-them-all from getting too big.15:04
jblountTODO: https://bugs.edge.launchpad.net/ubuntuone/+bugs?field.searchtext=&orderby=-importance&search=Search&assignee_option=choose&field.assignee=jblount&field.bug_reporter=&field.bug_supervisor=&field.bug_commenter=&field.subscriber=&field.omit_dupes.used=&field.omit_dupes=on&field.has_patch.used=&field.has_cve.used=&field.tag=ubuntuone-karmic&field.tags_combinator=ANY15:04
jblountBLOCKED: Nope15:04
jblountCardinalFang: OH HAI15:04
CardinalFangSorry, not ready yet.15:05
jblountvds: Want to cut in line?15:05
vdsDONE: cloud_server quota integration almost done, code review15:06
vdsTODO: finish integration, code review15:06
vdsBLOCKED: nope15:06
=== facundobatista_ is now known as facu
CardinalFangDONE: Closed and triaged several bugs.  Fixed #440072, #435484, . Started encoding of db names in couchdb replication.  Packaged couchdb, and added to new PPA.15:13
CardinalFangTODO: Get d-c replicating to cloud.15:13
CardinalFangBLOCKED: None, maybe.15:13
jblountCardinalFang: Thanks15:13
jblountMEETING ENDS15:13
CardinalFangjdobrien, I don't really care.  You're changing path into prefix, but I can fix it up.15:15
urbanapeman, what the heck happened to the tests? crazy errors in parts of the code I'm not even touching.15:17
urbanapejblount, when was the last time trunk-2a was merged into o-b-t-r-t-a?15:19
jblounturbanape: It's been maybe a week?15:26
urbanapedoes bzr merge not have a dry-run option?15:27
urbanapeonly 2 conflicts. I'll do that on my branch15:30
mac_vhi all.. i remove ubuntuone from the bookmarks and.... everytime i start ubuntuone it keeps adding itself to the bookmarks.. how do i prevent this?15:38
facumac_v, which bookmarks? how do you start ubuntuone?15:42
mac_vfacu: the nautilus bookmarks[places menu]... i start U1 from the applications menu , i dont have it in the startup list15:43
mac_vBTW , i'm on karmic15:44
facudobey, ping15:46
dobeyfacu: hi15:47
dobeymac_v: you can't prevent it yet15:47
dobeymac_v: it's a known/open bug15:47
mac_vdobey: argh! ... really frustrating bug..15:48
* mac_v searches for bug#15:48
dobeymac_v: unfortunately it's not possible to know that the user doesn't want the bookmark there, programmatically15:49
facudobey, maybe handling it in the configuration?15:49
mac_vdobey: cant there be a gconf seting somewhere?15:49
mac_vthis is *the* main reason , i dont even start U1 :(15:49
mac_vdobey: do you happen to know the bug# ? for some reason its hiding from me ;)15:50
dobeywhat is the problem with having it in the bookmarks?15:50
dobeyi don't know the bug # no, i'd have to look for it15:51
mac_vdobey: a bookmark in the menu for something i dont even need often is frustrating ;p ... i use it rarely and this makes it even rarer ;)15:52
dobeymac_v: you have some odd logic :)15:53
dobeymac_v: the reason we add the bookmark of course is that for us to show up in places, the only way is to add the bookmark, since we're not a mounted filesystem (and if we were, you wouldn't be able to remove it from the places list either (well, you'd have to stop the service, unmounting it))15:54
mac_vdobey: a bookmark is for something you use often... when this keeps adding it self , the menu becomes bigger... i want to only see the bookmarks i use often not other bookmarks which i use rarely ...  ;) also since the folder can be brought up from the notification area ,  i dont see why this is absolutely essential ;p15:56
dobeymac_v: 99% of the time, the applet icon is hidden15:57
mac_voh!15:57
dobeymac_v: it's only shown when actively syncing, or when disconnected15:57
mac_vdobey: hmm.. doesnt hide for me... is it timed to disappear ? maybe i dont use it for long enough15:58
dobeymac_v: it times out after connecting/updating15:59
dobeymac_v: if it's disconnected, it's always show (so you can click/connect)15:59
mac_voh ... ok15:59
mac_vdobey: you could add the bookmark , similar to how indicator applet adds itself to the panel... i-a uses the /usr/share/gnome-panel/add-indicator-applet.py16:05
mac_v i-a is added only once and then sets itself a gconf to not add again16:06
sysdocUbuntuone seems to be uploading files but they do not show up in the web interface, have read where others are having the same problem, has anyone head of a possible fix and a time line?16:23
sysdocheard*16:23
aquariusCardinalFang, lp:~sil/desktopcouch/replicate-u1-encode-db-names is a tiny branch on top of your branch of the same name16:23
aquariusCardinalFang, so you probably want to pull it into your branch16:24
aquariusCardinalFang, it makes the signing stuff correctly use "https" in the URL to sign16:24
aquariusCardinalFang, this will make requests to the cloud fail, until jasondavies' patch lands in cloud couchdb and we have the apache proxy set the header correctly16:25
CardinalFangaquarius, do you mind making a bug for that?  The distro folks will want to know why code is changing.16:32
facusysdoc, I know that we had issues about notifications16:35
sysdocfacu, nitifications?16:35
sysdocnotifications?* whew16:36
facusysdoc, I mean the notifications used to synchronize the different elements16:36
facusysdoc, so you make a change through your desktop, and takes some time to show in the web ui16:36
sysdocfacu, is 8 hours more than enough time? lol16:37
facusysdoc, I'm checking right now the status16:37
sysdocfacu, thx16:38
facusysdoc, they're telling me that there isn't anything in the web UI to do live updates16:39
facusysdoc, and that you should reload the page in the browser to see the changes16:40
sysdocfacu, well that was the 1 st thing I did assuming it would be there, and of course it is not16:40
urbanapeeventually, we may explore Comet or other long polling to get a more responsive UI16:40
urbanapebut for now, yes, reloading should bring in the new information.16:40
aquariusCardinalFang, https://bugs.edge.launchpad.net/desktopcouch/+bug/440660 and assigned to you16:42
ubottuLaunchpad bug 440660 in desktopcouch "Correctly use https in OAuth signed URL when making SSL requests" [Undecided,New]16:42
urbanapeif it's not showing up after a reload 8 hours later, that sounds like a bug.16:42
sysdocHave uploaded this file twice, and on both occasions the file has not been on the site.16:42
facusysdoc, but you did reload the page, right?16:42
aquariusCardinalFang, I'll do a bug against couchdb as well for reading X-Forwarded-Ssl16:43
sysdocfacu, as I stated before that was the 1st thing I did...16:43
sysdocAnd have tried reloading, reuploading the file twice now and still nothing in the web...:)16:44
urbanapedo other of your files show up in the web ui?16:44
sysdocUbuntuOne fail... I'm moving on...:)16:44
sysdocurbanape, negative16:44
sysdocSaid that it was uploading 2 files have no idea where the 2 nd one was, but that is what I got in the notification pop up on the local machine..16:45
aquariusgrrrrrrr!16:46
aquariusCardinalFang, I can't report a bug against couchdb -- launchpad sends me to the wiki, and ubuntu-bug says "this is not a genuine ubuntu package".16:46
CardinalFangaquarius, yeah, don't bother there.16:47
CardinalFangaquarius, what did we decide about the sig method?16:47
aquariuswell...PLAINTEXT works. HMAC ought to work, but the python-oauth stuff is still being done by dobey and rodrigo, I think16:47
facusysdoc, so you should open a bug :|16:48
facusysdoc, please, attach the full log ($HOME/.cache/ubuntuone/log/syncdaemon.log) to see if the file was uploaded correctly16:48
* jblount wonders if anyone else hides when the door rings at their house.16:49
sysdocfacu, there are many bugs reporting this very same behavior. Well look at the log file to see if there is anything of interest when I have time16:49
facusysdoc, ok, thanks!16:51
facusysdoc, seek for "error", it shouldn't be any16:51
jamaltajblount: lol, i kinda do.. i sneakily try to peek at who it is16:53
aquariusCardinalFang, I need to head off because it's my weekend with my daughter. Is there anything you need from me before I go?16:54
CardinalFangaquarius, Yes.  Fix it all.16:54
* aquarius laughs16:54
CardinalFangaquarius, Have a nice weekend.16:54
* facu -> reboot16:54
aquariusCardinalFang, if you drop me a mail this evening letting me know where we're up to, I'll take a look over the weekend if I get a chance, or Monday morning16:54
CardinalFangaquarius, WIll do.16:56
aquariushave a good weekend, all17:00
statikCardinalFang, is this bug fixed already? https://bugs.edge.launchpad.net/desktopcouch/+bug/42323719:21
ubottuLaunchpad bug 423237 in desktopcouch "package couchdb 0.10.0~svn809550-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1" [Undecided,In progress]19:21
statikoops, just noticed it was assigned to me19:21
statikrmcbride, could you see if this problem still exists with the current packages? I'm inclined to close it as no longer happening: https://bugs.edge.launchpad.net/desktopcouch/+bug/42323719:23
ubottuLaunchpad bug 423237 in desktopcouch "package couchdb 0.10.0~svn809550-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1" [Undecided,In progress]19:23
CardinalFangstatik, I haven't seen that lately.19:25
statikCardinalFang, rmcbride: if it doesn't happen when upgrading from jaunty to karmic now, then i think the bug should be closed.19:28
dobeyheh19:30
dobeyCardinalFang: do you have packages from kenvandine's ppa installed?19:30
kenvandinedobey, i doubt it... don't think i ever had that snapshot in my ppa19:31
dobeykenvandine: no, but most of us have the current packages in your ppa installed to fix another problem (and i think those packages also fix that problem), but i presume that version isn't in ubuntu yet19:32
CardinalFangdobey, er, for couchdb-bin?  I have a new version arriving in Karmic, Real Soon Now.19:35
dobeyok, cool19:37
* CardinalFang boggles at slowness of us.archive.u.c .19:37
dobeywelcome to The Day After Beta19:38
dobeyit's like The Day After Tomorrow, but not as cold.19:38
thisfredThe Day after Tomorrow the musical: "you"19:47
thisfredre always two days away19:47
rmcbridestatik: hmm. That'll take some setting up. I have some stuff running on my jaunty box right now. (just saw the question in this channel). I'll look at it after teh current effort19:50
statikrmcbride: thanks.19:56
CardinalFangI'm going to set up a Jaunty image soon.20:01
nzmmhi i dont understand how to add a computer.  I click Ubuntu One and nothing seems to happen20:03
nzmmnm i figured it out20:05
CardinalFangnzmm, what did you expect, and what did you have to do?  We hate surprises.  Maybe we can make something better.20:06
rmcbridestatik: CardinalFang: my virtualization server seems to have caught the swine flu. I'm going to upgrade my other netbook, which is still on jaunty and test #423237 that way20:08
CardinalFangrmcbride, Rgr.20:09
CardinalFangjdobrien, how do I know when the u1 cloud couchdb is upgraded?20:09
nzmmCardinalFang:  so i clicked UbuntuOne in the main menu, and all i got was silence.  No feedback of any sort.  I use Opera btw.  My solution was to right click the disconnected UbuntuOne and click Go to Web, which took me to the add computer dialog.  From there on, things were fine20:11
jdobrienCardinalFang, i don't know20:12
CardinalFangnzmm, Hrm.  Suppose you open a terminal and type:  $ gnome-open http://example.com/   # what happens?20:12
nzmmCardinalFang:  also the tray icon does not animate like dropboxs' does during update.  I find that disconcerting from a, is it doing anything point of view.20:12
nzmmi get a new tab in Opera20:13
nzmmopera -notrayicon -newpage %s   <--- the command in preferred programs for opening new browser20:13
nzmmalso i think you need an 'in progress' emblem for files yet to be synced, ala dropbox.  and emblems should apply to folders as well imho20:16
statiknzmm, thanks for the suggestions. the tray icon animating is a very controversial topic, it used to animate and we got rid of the animation. for the other suggestions, filing bug reports is the best way to ensure they don't get forgotten in the mists of long lost IRC logs20:20
nzmmok20:22
vladanianHey guys, is the "Tomboy Web" sync w/ ubuntu one working for people?20:24
statikvladanian, it was broken until earlier today. we did a DB update for the OAuth credentials a couple of hours ago and I thought rodrigo said it worked for him after that.20:27
statikvladanian, are you getting 'server is not responding'?20:28
vladanianstatik: yes, and the debug info tells me error 400 bad request20:29
statikvladanian, this is the version i have: emurphy@sunk:~$ apt-cache policy tomboy20:29
statiktomboy:20:29
statik  Installed: 1.0.0-0ubuntu120:29
kenvandinehey vladanian20:30
vladanianhey ken20:30
statiki know there was a patch this week uploaded about fixing the HMAC-SHA1 signature20:30
vladanianstatik: I have 1.0.0-0ubuntu120:30
kenvandine[ERROR]: Failed to get auth URL from https://one.ubuntu.com/notes/. Exception was: System.UriFormatException: Absolute URI is too short20:31
kenvandineis what i get20:31
statikvladanian, bummer :( could you file a bug? rmcbride, you're probably interested in tracking the testing status of tomboy also ^20:31
vladanianstatik: Ok, I will20:32
rmcbridestatik: most definitely20:34
vladanianAre the ubuntu update servers crazy slow for you guys, too? Is people downloading the beta that's causing this? It's like I'm on dialup over here20:35
kenvandinevladanian, slow for me too20:36
statikvladanian, yes there is lots of slowness today20:36
dobeythe tray icon has an 'updating' icon now btw20:36
dobeynot animating, but it shows it's updating stuff20:36
kenvandinevladanian, everyone upgrading to the beta :)20:36
dobeythe browser thing sounds weird20:37
dobey"Go to Web" doesn't open the "Add this computer" page, it just opens the main page.20:37
vladaniankenvandine: It's pretty bad ass. I've playing w/ fedora 12 the past week -- the gap is widening all the time20:37
kenvandine:)20:37
vladanianI'm going to continue my fedora tests in a vm :)20:37
kenvandinermcbride, so the server should be ready to handle the tomboy syncing now?20:41
kenvandinei just assumed that wasn't up yet20:41
rmcbridekenvandine: that's my understanding. I'm not handling infrastructure on that. statik's comment was more toward the fact that the feature's testable/usable status is of interest to me.20:42
kenvandineok20:43
vladanianstatik: I filed the bug here: https://bugs.edge.launchpad.net/ubuntu/+source/tomboy/+bug/44086220:46
ubottuLaunchpad bug 440862 in tomboy "Tomboy Web synchronization fails to connect to Ubuntu One" [Undecided,New]20:46
vladanianAh, is that a bot?20:46
CardinalFangubottu, are you a bot?20:47
ubottuSorry, I don't know anything about are you a bot?20:47
kenvandineyup20:48
CardinalFangkenvandine, are you a bot?20:49
kenvandinehehe :)20:49
vladaniansweet, well you got outbotted, bot20:49
CardinalFangkenvandine, You're in a desert walking along in the sand when all of the sudden you look down, and you see a tortoise, kenvandine, it's crawling toward you.  You reach down, you flip the tortoise over on its back....20:53
* kenvandine wants to hear the end of this story20:53
CardinalFangvladanian, kenvandine is obviously a Replicant.20:54
vladanianCardinalFang: I've suspected as much. esp when kenvandine is sporting his replicantwear lime green foresight shirt20:56
kenvandinehaha20:56
dobeyfunny, he doesn't look like a replicant20:57
CardinalFangWell, he scored a C on the Turing Test.20:58
dobeywrong test20:59
dobeyVoight-Kampff would be better for that20:59
rmcbridedefinitely Voight-Kampff21:03
vladanianrmcbride: These two bugs may be related21:03
vladanianThe first time I try, it gives the too short error21:03
* rmcbride has been reading the comic adaptation of "Do Androids Dream of Electric Sheep" and thinks it would have made a better movie than the Blade Runner version21:03
vladanianThe second, third, etc times, it goes to the bad req error21:03
rmcbridevladanian: I'll leave my comments in that bug then and let it be sorted out on the dev end21:04
vladanianI changed my option to local dir, then changed it back to Tomboy Web, and got the too short error21:04
vladaniancool21:04
joshuahooverkenvandine, rmcbride: should tomboy sync work now with u1?21:19
joshuahoover(sorry if i'm late to this party)21:20
rmcbridejoshuahoover: I'm told that it should, but testing does not bear that out. vladanian has written a good bug report on the behavior21:20
rmcbrideI get consistent no-go across my test systems21:20
rmcbridefor that21:21
joshuahooverrmcbride: ok, thanks, i get a "server not responding" error when trying to set it up to hit prod21:21
rmcbridejoshuahoover: that's pretty much what we're seeing. Running tomboy from a term with 'tomboy --debug' shows what is really happening21:21
joshuahooverrmcbride: ah, good to know!21:24
joshuahooverrmcbride: out of curiosity, what vm engine do you run for your test environments?21:24
rmcbridejoshuahoover: currently I have vmware server on an old Athlon 64+ duo core21:25
rmcbridejoshuahoover: I'd much prefer to run kvm on my laptop, but it has no VE available thanks to Sony21:25
joshuahooverrmcbride: ah, got ya...i run virtualbox for mine21:25
joshuahooverrmcbride: haven't tried kvm, i know i should :)21:26
rmcbrideI'm just very familiar with vmware server, having used it at my former employ. One of these days I'll force myself to try virtualbox again. it was something like herding wolverines last time I tried it a couple years ago21:27
rmcbridekvm and our really cool image management stuff would be awesome, but the laptop isn't capable, and the other VM box is doing double duty right now.21:28
joshuahooverrmcbride: "our really cool image management stuff"?21:28
rmcbridewell the laptop is "capable" if I don't mind not actually being able to get any work done because the hypervisor has ground to a halt21:28
rmcbridejoshuahoover: one sec. I forget the package names. Basically some stuff that automates image creation/installation21:29
joshuahooverrmcbride: ahhh...cool21:29
rmcbridejoshuahoover: for instance ubuntu-virt-server and ubuntu-virt-manager.21:32
rmcbrideerr mgmt would be the last bit of the second one21:32
rmcbrideand of course ubuntu-vm-builder21:33
joshuahooverrmcbride: i remember reading something about it on the wiki a while ago but found myself needing to setup xubuntu, kubuntu and other sorts of environments to try to reproduce some problems users were seeing21:33
rmcbridejoshuahoover: that's mainly what I've been using virtualization for. anythign that's not ubuntu-karmic21:34
rmcbrideI have plenty of physical machines for karmic21:34
rmcbridethough I'll be getting more hardware by the end of the year I hope21:34
joshuahooverrmcbride: why do i have this vision in my head of you running some sort of mad laboratory of computers in your house? ;)21:35
rmcbridejoshuahoover: I don't yet have any jacobs' ladders or van-de-graf generators running, but I do have a neat lightning display hooked up for just that effect21:36
* jblount smiles at the 12 VMs sitting on his laptop21:36
joshuahooverjblount: and that's just for testing the site with different versions of windows and ie, right? ;)21:42
jblountjoshuahoover: I haven't even gotten there yet, but I have three Windows VMs. Should probably setup a Windows 7 VM sometime soon.21:43
joshuahooverrmcbride: any experience with testing evolution-couchdb? i'm trying to test evolution couchdb...i remember it working before but now when i go to copy a couple address book contacts (from a fresh evolution setup) to the u1 couchdb contacts i get a crash report with a traceback showing: importerror: cannot import name replication_services21:45
sysdocI've ran Win7 in a VM and was surprised at how well it did run (beta of course).21:46
rmcbridejoshuahoover: none whatsoever. I had planned to try that today. I am a thunderbird user, and setting up evolution is something I have not done (mainly because of the complication of setting it up with an email password that I never enter)21:46
rmcbridejoshuahoover: I suppose I could get it just talking to gmail, but I have not done so far21:46
rmcbridejoshuahoover: I would say that the importerror traceback is a significant  bug worthy event21:47
joshuahooverrmcbride: yeah, same here, i use thunderbird too...i'm working on tutorials and trying to find things i can start to doc...not having a ton of luck21:47
dobeylater! weekend time!21:53
=== yofel_ is now known as yofel

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