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

When I push files to the server, then after 60 seconds i get "urlopen error [Errno 10054]". I think it's because i push large files. I use nginx web-server with fast-cgi process. What nginx parametr responsible to that 60sec timeout? Or maybe i should see to another way?

share|improve this question
How are you pushing? http? ssh? – Chris Morgan Jul 23 '11 at 11:04
I think through http. – EthanHunt Jul 23 '11 at 11:11

1 Answer

Please refer to: http://code.google.com/p/support/issues/detail?id=2716.

If you are using latest TortoiseHg client, just put below config to your mercurial.ini:

[ui]
usehttp2=true
share|improve this answer
1  
+1 Thx, worked for me. Note for others: I've tried to put the config directly to repo's .hgrc, but that did not helped. Putting to mercurial.ini is needed! – TN. Sep 1 '12 at 17:48
Works for me too. Thank you very much. Since I started using Mercurial I've always had this problem and now thanks to you it is solved. – Maxence Dec 14 '12 at 15:27

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.