[00:54] Good morning. [01:34] hi all [01:46] I think there was a plugin that automatically finds the revision where something broke (by running a command on different revisions in a binary search). Does anyone remember the name? [01:46] bisect [01:49] hello spiv [01:50] Hi poolie [04:32] i might have a look at this spurious test failure [04:57] should we actually keep the strace facility? [04:57] nothing uses it but its own tests [04:57] lifeless: ^^ [04:57] i can see it being useful for some effort tests, but i can also see that causing deadlocks etc by trying to trace ourselves [04:59] poolie: if its a pain, nuke it. [05:00] I doubt I'll be doing low level perf work on bzr in the near term :( [05:00] :( [05:00] if you were, do you think you'd use this? [05:00] I did anytime I needed strace stuff [05:00] how did you use it? by logging the activity of a particular bit of code? [05:01] or actually writing tests that inspected it? [05:01] the former [05:03] i can see that being useful, to catch just a particular seciton [05:03] wbn for prof too [05:04] right, prof does that :) [05:05] prof does what? [05:05] sorry, brb [05:23] https://code.edge.launchpad.net/~mbp/bzr/626679-strace/+merge/34157 [05:24] poolie: sorry, was otp [05:24] back now [05:24] np [05:24] i decided it was worth keeping around [05:24] bzrlib.lsprof lets you call a specific section easily. [05:24] you can review it if you have a moment [05:25] when it updates the diff I shall [05:26] sorry i meant perf, not prof [05:26] which is an external tool like strace [05:26] Most profs get annoyed if you perf them... [05:27] Prof perf. [05:29] hello mkanat [05:29] Hey poolie! [05:29] hi there [05:29] i'm back from my trip [05:29] Oh great. :-) [05:29] did you get to working on loggerhead yet? [05:29] poolie: I didn't, unfortunately. I'm thinking it will be after Sept 2. [05:30] poolie: Although I did do a bit of work last week. [05:30] np, just wondered if you were blocked or anything [05:31] poolie: Okay. :-) [08:00] hi all ! [08:10] morning all. [08:16] vila: these are the tests that are different between r5395 and r5396 from my run: [08:16] http://float.endofinternet.org/temp/landed_leaking_diff.xml [08:18] mgz: meh, http://float.endofinternet.org/temp/landed_leaking_diff.xml#bb.test_branch.TestSmartServerBranching.test_branch_from_trivial_branch_to_same_server_branch_acceptance [08:18] AttributeError: 'TestAncestry' object has no attribute '_cleanups' ? You're cleaning up too much my dear :) [08:19] yeah, I think this is to do with TestCase instances sharing too much [08:19] mgz: first you don't want me to use closures and now I can't even use cleanups ? :) [08:19] no, I just think it's a pre-existing bug :) [08:19] like bug 625574 or something [08:19] Launchpad bug 625574 in Bazaar "testtools details should not be shared between parameterised tests (affected: 1, heat: 6)" [Medium,Confirmed] https://launchpad.net/bugs/625574 [08:21] mgz: TestCase instances sharing... anything sounds scary, that needs to be precisely diagnose to know whether or not we can do that (by default: no, but there could be exceptions for read-only things (methods, functions, whatever, I think there is at least a _test_root_dir or something that is legal to share))))) [08:22] mgz: hmm, interesting bug... this really needs to be dug [08:23] mgz: anyway, back to your initial remark, can you summarize your feelings about the differences ? [08:25] well, took 72mins vs. 51mins which I think I can live with for the moment, and basically everything but the run time is an improvement [08:26] (pretty sure all the new orange is equally shallow) [08:26] mgz: so on this precise point, I'm pretty sure it's only the hung threads adding their 5s timeouts which a 'kill thread' should fix [08:26] I prefer 5s waits to thread killing. [08:26] why ? [08:27] TerminateThread is scary in a way TerminateProcess isn't [08:27] I've diagnosed those as being: both client and server are waiting for each other or, said otherwise, python seem to not shake some bytes in the socket under unknown scenarios only encountered on windows [08:29] mgz: ha, yes, this fear :) Well, the plan is to test first how this behaves, since all threads (we care about in this precise case) catch exceptions, it will be totally safe (the kill will happen during test shutdown where, by definition, we know we are done with whatever socket or any other resource used) [08:31] ah, you just mean raising an exception in the threads? [08:31] spiv: have you seen bug #626876 [08:31] Launchpad bug 626876 in Bazaar "tests.test_transport.TestSSHConnections.test_bzr_connect_to_bzr_ssh considered harmful (affected: 1, heat: 6)" [Critical,Confirmed] https://launchpad.net/bugs/626876 [08:31] not killing them dead? [08:31] mgz: hehe, 'kill thread' is implemented by raising an exception in the thread :) [08:32] and AFAIK we can raise *any* exception [08:32] but that's what I want to test [08:32] okay, that's less scary then [08:33] good [08:34] Knowledge 1 - Ignorance (driving fear) 0 [08:49] I'm out for the day, see y'all later. [08:53] ciao [08:55] vila: seen, yes. Thought carefully about... not yet :) [08:55] lifeless: cu [08:56] spiv: right, so I think there are two ways to rewrite it: 1) use a server in the same process, 2) spawn a real server as a separate process [08:56] the actual version is a mix of both (the real server is spawned at connection time) [08:57] I favour (1) and may give it a shot today [09:00] hi mgz, vila [09:00] poolie: hey !! [09:01] thanks for the speedy review vila [09:01] my great pleasure ;) [09:02] poolie: made me feel, like, 5 years younger or something :) [09:07] :) === idart_ is now known as idart [12:16] Hi vila. I'm trying to fix the test error with https://code.edge.launchpad.net/~vila/qbzr/config-get-filename-deleted/+merge/34095 [12:17] It's failing because TEST_DIR/home/.bazaar does not exist. [12:18] vila: Can you give me any pointers on how to fix? [12:24] GaryvdM: that's ensure_config_dir() call missing, rats, old bzr or current ? [12:25] GaryvdM: lunch time, here, bbl-ish [12:25] vila: That error is only on old bzr, not on current [12:25] vila: ok - Busy reading diff of you lock config files patch [12:26] GaryvdM: right, ok, so for old you can call ensure_confdir_exist with a check for bzr version :-/ [12:27] GaryvdM: yeah, you should read it carefully and I advice you now inherit from LockableConfig, just to protect yourself against multiple qbzr instances runnning conccurrently (qlog here, qblame there, yet another qlog, etc), I dunno if you're yet ready to have a 2.2 branch in addition to a trunk branch though [12:28] GaryvdM: but definitely interested in how you handle the transition [12:28] GaryvdM: off now, back in <= 1h [12:28] vila: ok [12:50] Hi [12:50] is it possible to revert the damage done by the rewrite plugin? I'm guessing no. [12:51] Actually, it's probably okay. No commits were lost. [12:53] I'm sure they are not [12:53] revisions are never deleted from a repository [12:53] right [12:53] use bzr heads --dead to see all the revisions which are not referenced by the branch [12:53] they're just organized a bit bogusly and I found a better way to fix the original problem [12:53] then you can use bzr pull -r revid:XXX --overwrite to get the revision back [13:13] lvh`: daggy-fix is your friend then, start again from before your first attempt and redo your commits from there in the right order. 'bzr merge -rx..y' (aka cherry-pick) can help you, as well as 'bzr diff --old .' to see how you converge [13:14] GaryvdM: I'm back [13:25] Hi vila. [13:26] vila: I think I need to do alot of cleaning up of the qbzr config code. [13:27] GaryvdM: Will you try to maintain compatibility with bzr-2.2 ? [13:27] vila: Yes [13:28] GaryvdM: good, I'm all ears about potential problems then, especially if we could make the transition easier by adding some deprecated helpers in bzr.dev [13:30] vila: Well in not sure why we have 2 different classes to write to qbzr.conf. So I'm going to start by deleting QBzrGlobalConfig... [13:30] wow [13:31] QBzrConfig does not inherit from bzrlib.config.XXX classes, so compatibility should not be a issue... [13:31] WOW [13:32] I'm going to copy your locking code to QBzrConfig [13:34] GaryvdM: it's abit of a shame that this code isn't shared, but on the other hand, it addresses the compatibility issues :) === lvh` is now known as lvh [14:49] hi. i'm trying to create a svn mirror of a bazaar branch, that for instance in a cron job pulls from the bazaar branch and pushes into the svn repository. [14:49] However, the "bzr push svn://whatever/path" fails due to "Tags not supported" [14:50] The revisions are there, so it seems to work, but is there a better way that does not cause the command to fail? [14:51] I've tried dpush, but then the next pull won't work since I get the message about diverged branches. [14:57] stianse, hi [14:57] stianse: your local branch has tags, and bzr-svn doesn't know where to add them. === Ursinha is now known as Ursinha-afk [14:59] jelmer, yes i figured. That's why I tried dpush, but that had bad side effects for the next pull. [15:00] Perhaps there is a way to delete all tags before pushing to svn? [15:00] stianse: did you use the --no-rebase option perhaps? [15:00] stianse: You can delete the tags using "bzr tag --delete" [15:01] hello. i update my bzr.dev trunk today and `bzr selftest` fails with error importing TestLoader. has something changed? http://pastebin.com/KSbvutec [15:02] parthm: perhaps you didn't run the tests for bzr-search for a long time ? [15:03] vila: ah. yes. ... i just noticed it was the plugin. never mind. i will just disable it. i wanted to run the test on the trunk :) [15:03] vila: thanks. [15:04] parthm: you're welcome [15:05] hmm. it seems to fail for plugin_info also. [15:06] jelmer, the problem about using tag --delete is that you have to know the tag names. since I plan to run this in a automatic script this is not very practical [15:07] stianse: can you just not create the tags in the first place, or push to a svn location that supports tags? [15:07] jelmer: Russel mentioned bzr-svn trunk being broken with bzr.dev, I'm 95% sure it's related to my second fix for bug #525571 which introduced real lock for config files, feel free to ping me if you need help. Otherwise, your feedback is welcome if you encounter problems migrating to the new config objects. [15:07] Launchpad bug 525571 in Launchpad Bazaar Integration "No locking when updating files in ~/.bazaar (affected: 7, heat: 52)" [High,Fix released] https://launchpad.net/bugs/525571 [15:08] jelmer, I could if I had control of either of the two. unfortunately I don't [15:08] jelmer, dpush --no-rebase causes the next dpush to fail because they have diverged. not using --no-rebase causes the next pull to fail [15:09] stianse, how does the next pull fail exactly? [15:09] stianse: well, you can push to the svn repository so you have /some/ control over it :-) [15:13] jam: can you test lp:~vila/bzr/626876-bzr-connect-to-bzr-ssh on windows ? [15:13] morning vila [15:13] sure [15:13] jam: morning ! [15:14] This "fix" it for me on hardy and karmic so far [15:14] can i create a new branch from changes i did but not actualy commiting them to the current branch? [15:14] parthm: I've logged that as bug 627435 [15:15] Launchpad bug 627435 in bzr search plugin "ImportError running selftest -s bp.search in bzr.dev (affected: 1, heat: 6)" [Undecided,New] https://launchpad.net/bugs/627435 [15:15] jam: I totally forgot about the FIXME above the one-liner fix :) [15:15] jelmer, uploaded the commands and output at http://pastebin.com/hghpLeYQ [15:16] GaryvdM: thanks for the ticket :) [15:16] vila: well, not really a fix per say just a hack around :) [15:16] stianse, you're pulling from a different location than you're dpushing to [15:18] jelmer, i know. isn't that allowed if i don't have any new commits? [15:18] jam: well, you've read the comment ? I was deep into paramiko internals when I wrote that, it's a shame we have to wait there, but it's needed to make paramiko happy. [15:18] jelmer, the location I'm pushing to is just a mirror and won't have any additional commits [15:18] stianse: it is, but please read up on what dpush does - it changes the revisions in the current branch [15:19] vila: paramiko is doing a 'wait' on a Threading.event() I don't see why we should need to sleep at all [15:19] though it may depend on version [15:19] jam: Otherwise, we get all sort of random failures (as collected in the bug report) because some sockets are checked too early and considered broken [15:19] stianse: thus making your current branch deferred from whatever branch you might be pulling from [15:19] jam: because multiple threads are involved and if the wrong one is awaken too soon it draws the wrong conclusion about the socket [15:20] jelmer, ok I understand. That leaves me with the push command. [15:21] vila: any sort of delay like this is going to be wrong sometimes... depending on load, etc. [15:21] but I'm running it now [15:21] (while my system is otherwise heavily loaded :) [15:21] having several threads handling the same socket (from both sides) *and* using timeouts is a Bad Idea [15:21] failed [15:21] jam: shouldn't matter [15:21] try increasing the timeout [15:21] vila: changing 0.2 => 0.5 would have a strong indication on load [15:21] running again, it fails in a different place, at least [15:22] stianse: You can either add "/trunk" to the URL you're pushing to, and bzr-svn will push tags to "/tags/tagname", or remove the tags before pushing. [15:22] jam: I don't intend to propose this fix, I just wanted to know if I had a fallback [15:22] jam: I encounter the comment while setting up a new test smart server :) [15:23] vila: if I set the time.sleep to 5.0s then it does pass [15:24] at 1.0s, it sometimes passes, sometimes fails, and still gives: No handlers could be found for logger "paramiko.transport" [15:24] jam: ok, thanks, that's enough for me. It means paramiko is somehow broken and should be used with caution, once I had the test rewritten, I'll get rid of the sleep too [15:28] jelmer, that "/trunk" in the URL was exactly what I was looking for. I didn't know about that feature. [15:28] jelmer, thanks for your help [15:28] stianse, np [16:06] is there a step-by-step for a proper merge.. I keep getting Branches have no common ancestor, and no merge base revision was specified. [16:07] bcurtiswx: Merging branches that don't have a common ancestor in quite uncommon. Is there a reason why you are doing that? [16:08] bcurtiswx: May be you are merging branches from different projects. [16:08] well, i think my issue is with getting that common ancestor [16:08] i branch lp:ubuntu/lucid-proposed/empathy [16:08] which is version 2.30.2 [16:08] A common ancestor naturally results from normal bzr usage [16:09] You must be doing something unusual :-) [16:09] ... when faced with parallel imports :-/ [16:09] ... except when faced with parallel imports :-/ [16:09] maxb: im not denying that, i'm trying to figure out where my stupidity has started from :P [16:09] bcurtiswx: what is your other branch and where is it coming from ? [16:10] so I want to take the new 2.30.3 and merge with 2.30.2,.. [16:10] i bzr init empathy/empathy-2.30.3 [16:10] move file contents over, bzr add [16:10] stop [16:10] wrong [16:10] uh, yes, don't do that :-) [16:10] OK, so where to go from here :) [16:11] bcurtiswx: doing that will create a different ancestry which is why you wont have a common ancestor :) [16:11] err, sry, where do you get 2.30.3 ? === deryck is now known as deryck[lunch] [16:12] vila http://ftp.gnome.org/pub/GNOME/sources/empathy/2.30/ [16:12] bottom [16:12] ha, right, a tarball [16:12] so, tar xf on top of your branch unless there is a lp:empathy, [16:13] sorry for the newbish but what do you mean on top of my branch? [16:14] bcurtiswx: sry, I meant, in the directory where you have your 2.30.2 branch [16:14] i.e. you will update your working tree which is 2.30.2 with the sources that are 2.30.3 [16:15] bzr st ; bzr diff; should show you what have changed [16:15] except, wait, if this is an Ubuntu packaging branch, you presumably want bzr merge-upstream [16:15] bcurtiswx: oops, listen to maxb ! [16:15] my goal is to make a branch of the changes, and request a merge [16:15] yes ubuntu [16:16] maxb: how does a bzr merge-upstream work, and whats the correct syntax? [16:16] I'm not very familiar with bzr-builddeb's voodoo, but I do know you definitely need to use it [16:17] james_w`: You don't happen to be around, do you? [16:17] maxb: I do [16:17] james_w`: bzr merge-upstream confuses me, but I know it's what bcurtiswx needs to use - do you have a good initial reference to point him to? [16:18] hi bcurtiswx [16:18] james_w`, hi [16:18] bzr merge-upstream takes a tarball and merges it in to your packaging branch [16:18] james_w`, whats the correct syntax then? [16:18] it does this in a way that means that it builds on the previous upstream changes, but merges in your packaging changes [16:19] mgz: ping, I have another instance of selftest unable to complete because of a unicode error (on OSX). testtools and subunit up-to-date, Do you have something in the pipe I can try or do you want a bug report ? [16:19] the basic syntax is (in the branch you want to merge to) bzr merge-upstream --version 2.30.3 http://ftp.gnome.org/pub/GNOME/sources/empathy/2.30/empathy-2.30.3.tar.gz [16:19] mgz: or is there some existing bugs I should check ? [16:20] that will then churn for a minute, then should tell you either that there were conflicts or that the merge went fine [16:20] either way "bzr diff" will show you the changes bought in by the new upstream version [16:20] james_w`, 'bzr merge-upstream ' from the packaging branch? [16:20] tweak the changelog as necessary, and make any other changes that need making, including resolving any conflicts, and then commit [16:21] james_w`, thx, i will go try that right now [16:21] bcurtiswx: you currently need --version as well, as it is not smart enough to infer that yet [16:21] for the tar.gz file it can take any local path, or http, ftp, sftp, etc. uri [16:22] james_w`, i get an "unknown command 'merge-upstream'" [16:23] You need the bzr-builddeb extension [16:23] bcurtiswx: install bzr-builddeb [16:23] hmm, thought I had that. thx [16:27] * maxb wonders if anyone has thoughts on my "testtools and subunit in the ~bzr PPA" email [16:37] hmm, may still need some advice === beuno is now known as beuno-lunch [16:38] bzr push lp:~bcurtiswx/lucid-proposed/empathy | bzr: ERROR: Invalid url supplied to transport: "lp:~bcurtiswx/lucid-proposed/empathy": No such project: lucid-proposed [16:38] i wanted it to create lp:~bcurtiswx/lucid-proposed/empathy , it has before, idk why not now [16:39] bcurtiswx: Basically, there are two kinds of lp: URLs [16:39] Project, and Distro-Source-Package [16:40] So, lp:~user/project/branchname, but lp:~user/distro/series/package/branchname [16:40] And then each of those has abbreviated forms for important branches [16:41] so i want lp:~bcurtiswx/ubuntu/lucid-proposed/empathy ? [16:42] no - look again at my 5-element example (most importantly, there must be 5 elements :-) ) [16:42] so i want lp:~bcurtiswx/ubuntu/lucid-proposed/empathy/empathy-2.30.3 [16:42] Nearly, but the 3rd component is just a series, not a series-pocket [16:43] so it doesn't matter that it will end up in lucid-proposed, i just need lucid? [16:43] yes [16:43] and yes, this is a bit arcane [16:44] especially since the 3-element shortcut form for DSP branches does have a series-pocket in it === Meths_ is now known as Meths === deryck[lunch] is now known as deryck [17:53] vila: is the OSX problem bug 625589 as well? in which case, yeah, I've got something lined up. [17:53] Launchpad bug 625589 in Bazaar "babune junitxml not well formed on Python 2.7 (affected: 1, heat: 6)" [Medium,Confirmed] https://launchpad.net/bugs/625589 === beuno-lunch is now known as beuno [17:59] Why can't I see any loom data when I check out nosmart+bzr+ssh://bazaar.launchpad.net/~exarkun/+junk/modules ? [18:04] mgz: I don't think so: http://paste.ubuntu.com/486389/ [18:08] ah, I see. Yeah, I've hit that before and just changed this line in the bzrlib TextTestRunner: [18:08] stream = osutils.UnicodeOrBytesToBytesWriter(encode, stream) [18:09] to add a 'replace' [18:09] wonder why the mac stdout is 'ascii' rather than 'utf8' like other nix boxes. [18:10] hmmm, ascii, indeed, why ? [18:10] 'v written code in testtools 0.9.4 that's a bit more robust about how it prints test results to stream, but didn't want to change the bzrlib code to require it till people had time to upgrade [18:11] exarkun: According to http://bazaar.launchpad.net/~exarkun/+junk/modules/.bzr/branch/last-loom, your loom has no threads [18:12] mgz: mail the list, pqm should come first [18:12] exarkun: that is somewhat broken, as I understand it [18:12] vila: what does python -c "import bzrlib.osutils;print osutils.get_terminal_encoding()" give you? [18:12] maxb: The branch I pushed had two threads [18:12] +bzrlib. [18:12] exarkun: sounds like an old bug in loom [18:12] Last night lifeless suggested that if I re-pushed with a new version of loom everything would be great [18:12] But I did that and it didn't appear to help [18:12] exarkun: Perhaps you could try pushing to a fresh launchpad branch? [18:13] mgz: just a sec, locale under emacs (where I ran selftest) says: LC_ALL='' and the rest C, while launching a terminal properly put utf8 all over the place [18:13] ha. that'd be the immediate cause then. [18:13] Hm. Okay. When the machine with the original branch comes back. [18:14] there is a real bug with printing results to non-unicode-encoding streams though, that I'll file. [18:15] exarkun: based on 'bzr heads --dead' not showing anything, it appears the loom metadata has not made it up to launchpad at all [18:16] mgz: yup, US-ASCII under emacs, UTF-8 in terminal, that maybe a bug in my setup though [18:26] vila: I'm trying to write better tests for qlog. I just wrote this: http://bazaar.launchpad.net/~garyvdm/qbzr/log_refactor/annotate/head:/lib/tests/test_loggraphprovider.py#L47 [18:27] vila: what do you think. one thing I don't like about it is I can't easily visualise the expected data that I am specifying. [18:31] * GaryvdM starts writing a printComputed method for debugging... [18:51] GaryvdM: argh, I've EODed, cooking right now :-/ Can you send me an email so I don' forget to look at that ? [18:52] vila: np - ok [18:53] GaryvdM: but after quick glance, you want to look at branchbuilder.py and hmmm what;s the name LogCatcher ? in bt.test_log ? [18:54] vila: I did look a branchbuilder. I will take a look at test_log. === Ursinha-afk is now known as Ursinha === Ursinha is now known as Ursinha-afk [20:33] woot! qlog data represented as unicode text: http://pastebin.com/Eruy5wnC [20:34] And as ascii, for test results: http://pastebin.com/WSjGe2TJ [20:35] GaryvdM: interesting, though the dot doesn't seem quite right in the ascii case [20:35] or maybe it is, but it doesn't match the unicode version [20:36] jam: I fiddled with the data to cause a failure. [20:37] jam: In the ascii, you see 2. The second is correct [20:37] 'evening Gary, John [20:38] Hi jelmer [20:38] hi jelmer [20:43] if i wanted to save the changes i did to my current branch as a new branch, how would i go about that? [20:43] mgolisch: If you have allready commited: push to new branch. uncommit & revert in old [20:44] mgolisch: If you have not yet committed: branch. then merge --uncommited [20:44] and revert in old branch [20:44] oh i see [20:44] that was what i was looking for [20:44] thx [21:03] jam: How do you think about this: http://bazaar.launchpad.net/~garyvdm/qbzr/log_refactor/revision/1323 [21:05] s/How/What/ === Ursinha-afk is now known as Ursinha [21:07] GaryvdM: you mean what do I think about having a DummyBranch that just proxies the graph information? It looks like it does what you want it to do [21:07] I believe I've written similiar code myself [21:08] jam: So doing that in a test is ok. [21:08] though it also makes me wonder if it would be better to have a specific function on loggraphprovider.BranchInfo that didn't require going through self.branch.repository.get_graph() [21:08] such as... passing in the Graph object yourself [21:10] jam: Or a custom version of LogGraphProvider that you can just pass a graph. [21:10] GaryvdM: I don't know the qbzr internals all that well, but yeah, basically all you need for what you are doing is a Graph and a tip pointer [21:11] jam: Ok - Thanks [21:13] GaryvdM: though I guess you also are doing something with tags? [21:14] what about fixed bugs, etc [21:14] jam: fixed bugs come from the revisions, which get loaded lazyly [21:15] jelmer: Is a bzr-svn LogWalker iter_changes supposed to traverse copy history? [21:16] maxb: yes [21:17] * maxb is confused - I have an invocation with strict_node_history=False, yet I'm not seeing history traversed [21:18] * maxb wonders if the Apache repository is just being *odd* === Ursinha is now known as Ursinha-afk [21:30] jam: Better solution: http://bazaar.launchpad.net/~garyvdm/qbzr/log_refactor/revision/1323 === Ursinha-afk is now known as Ursinha === Ursinha is now known as Ursinha-afk [22:42] I get this error when I try to push this branch with loom info to a new location on launchpad [22:42] bzr: ERROR: The revision exarkun@twistedmatrix.com-20100830220539-v8ovhik3byonepog is not recorded in the loom LoomBranch7 [22:42] What does that mean? [22:44] Well, I guessed that it means that I should run `bzr record ''` again, and that let the push succeed at least. [22:44] not a particularly comprehensible error message though [22:45] However, my threads are still destroyed by the process. [22:45] branching nosmart+bzr+ssh://bazaar.launchpad.net/~exarkun/+junk/modules-with-loom doesn't give me something very closely resembling the original branch [22:54] exarkun: what version of bzr-loom do you have? [22:54] 2.1.0 [22:55] i have to admit i've never been able to predict what will happen when i push or pull looms [22:55] Hmm, well it's definitely possible for it to work, since I took your previous branch, pushed it to a new non-loomed branch, loomified it, and pushed it to lp:~maxb/+junk/to-loom-or-not-to-loom, and it seems intact [22:56] looms are woefully underdocumented. After trying for quite some time, I only finally understood them after turning to the source code [22:57] After which, I finally went "ooh, what a clever idea" [22:57] When I branch lp:~maxb/+junk/to-loom-or-not-to-loom I get something without any threads [22:57] hrm [22:57] When I do, I get a loom with one thread called 'base' [22:57] Ah, but it works when I branch nosmart+bzr+ssh://bazaar.launchpad.net/~maxb/+junk/to-loom-or-not-to-loom [22:58] But the nosmart trick didn't help my modules-with-loom branch [22:58] Why nosmart+, ooi? [22:59] bzr show-loom sftp://bazaar.launchpad.net/~exarkun/+junk/modules-with-loom doesn't give any output [22:59] exarkun: Well, I'm guessing the lack of any threads listed at http://bazaar.launchpad.net/~exarkun/+junk/modules-with-loom/.bzr/branch/last-loom indicates the loom never made it up to the server successfully [22:59] I heard a rumor that bzr+ssh doesn't support looms properly [22:59] Well, I've both pushed and branched my to-loom-or-not-to-loom over bzr+ssh [22:59] smart bzr+ssh, that is [23:00] Are you on Ubuntu? [23:00] yes, 9.10 [23:00] whereas bzr show-loom sftp://bazaar.launchpad.net/~maxb/+junk/to-loom-or-not-to-loom does [23:00] with versions of everything from the bzr ppa [23:00] exarkun: hmm, interesting. Let me downgrade my bzr-loom..... [23:01] maxb: downgrade? so you've got something newer than 2.1.0? [23:01] I generally run tip of trunk for most bzr plugins [23:02] hey so I just pushed again to nosmart+bzr+ssh: instead of lp: and I think that helped [23:03] yea, branching that, also with nosmart+bzr+ssh: gives me something with threads [23:03] mwhudson: is sftp: the same as nosmart+bzr+ssh:? [23:04] ahaha [23:04] Using 2.1 my loom comes back broken [23:05] exarkun: for the purposes of this discussion, yes, i expect so [23:05] I was wondering if they indicated the same protocol [23:05] the bytes on the wire will be different [23:05] Hmm, so using 2.1, my push pushed a working loom, but I couldn't branch it back until I upgraded to trunk again [23:06] with nosmart+bzr+ssh there's still a bzr serve process on the other end [23:06] rather than something talking sftp [23:06] gotcha [23:07] So it's sounding like we need a bzr-loom release [23:08] doit [23:08] bug 201613 sounds likely [23:08] Launchpad bug 201613 in Loom "fetching looms does not work properly with bzr+ssh (dup-of: 193893)" [Critical,Fix released] https://launchpad.net/bugs/201613 [23:08] Launchpad bug 193893 in Loom "branching over bzr+ssh does not propogate loom threads (affected: 2, heat: 16)" [Critical,Fix released] https://launchpad.net/bugs/193893 [23:08] * lifeless throws the reins in the air [23:08] heh [23:10] thanks for the help