Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Last weekend (16. July 2011) our mercurial packages auto-updated to the newest 1.9 mercurial binaries using the mercurial-stable ppa on a ubuntu lucid.

Now pulling from repository over SSH no longer works. Following error is displayed:

remote: Traceback (most recent call last):
remote:   File "/usr/share/mercurial-server/hg-ssh", line 86, in <module>
remote:     dispatch.dispatch(['-R', repo, 'serve', '--stdio'])
remote:   File "/usr/lib/pymodules/python2.6/mercurial/dispatch.py", line 31, in dispatch
remote:     if req.ferr:
remote: AttributeError: 'list' object has no attribute 'ferr'
abort: no suitable response from remote hg!

In the mercurial 1.9 upgrade notes (http://mercurial.selenic.com/wiki/UpgradeNotes) there is an 'interesting' note:

contrib/hg-ssh from older Mercurial releases will not be compatible with version 1.9, please update your copy.

Has somebody an idea how to upgrade (if there is already a version) the package mercurial-server? Or do we need to upgrade something else? (New python scripts?)

If there is no new version yet of the necessary packages, how to downgrade to the previous 1.7.5 (ubuntu lucid)?

Any help is really appreciated as our development processes are really slowed down by this fact. :S

Thanks

share|improve this question
Well if somebody gives a negative vote, it may also be interesting to knowing why!?!? Mercurial is related to development!!! – Danilo Tommasina Jul 18 '11 at 9:25
2  
+1 even if the question should have been posted on mercurial mailing list, I think it's helpful enough here (or on superuser.com). – alexandrul Jul 18 '11 at 11:22
@Danilo: it's possible that it has been downvoted due to the exact duplicate stackoverflow.com/questions/6730529/… - what's going on? Why is the same question posted twice? Do you have two active accounts? You should kill one off. – Chris Morgan Jul 18 '11 at 11:34
Wait, I think that was someone else messing up their entirely unrelated question somehow. Rolled back their changes... – Chris Morgan Jul 18 '11 at 11:35
@Chris: Urghs... that's really odd, I posted my question only once... but I see that in the question you linked, my text is displayed... (sound like a stackoverflow bug?) – Danilo Tommasina Jul 18 '11 at 12:02
show 3 more comments

2 Answers

up vote 16 down vote accepted

Ok, found a (workaround) solution by editing a python script.

Edit the script /usr/share/mercurial-server/hg-ssh At the end of the script replace the line:

dispatch.dispatch(['-R', repo, 'serve', '--stdio'])

with the line:

dispatch.dispatch(dispatch.request(['-R', repo, 'serve', '--stdio']))

Replace also:

dispatch.dispatch(['init', repo])

with the line:

dispatch.dispatch(dispatch.request(['init', repo]))

This works for us.

Hopefully this saves to somebody else burning 4 hours of work with googleing and learning basics of python. :S

share|improve this answer
Yep, dispatch API changed. – Joel B Fant Jul 18 '11 at 16:44
2  
@Danilo Tommasina: If it means anything to you, I've just run into that exact same issue, and your question, along with your generously posted answer has saved me a lot of time and headache. Thanks a lot! – Thomas Jul 31 '11 at 14:19
1  
As to API change, if yoy take a look at the commit's comment, "[request class] currently only stores the arguments", it looks a bit irresponsible, don't you think? Cosmetic change that breaks API... – pwes Aug 5 '11 at 9:11
1  
Okay this did save me :-). I'd posted a question on the Gentoo User mailing list thinking this was a gentoo specific issue, but someone pointed me here. Thanks :-) – Nilesh Govindrajan Aug 21 '11 at 2:18
Great answer! Thanks a lot! 15 minutes, instead of a few hours! – WRz Mar 28 '12 at 8:31

More recent versions of mercurial-server are updated to support the API changes, but may require the refresh-auth script to be rerun for installations being upgraded.

share|improve this answer
Hi James, thanks for the info. – Danilo Tommasina Apr 24 '12 at 14:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.