Hi, On Wed, Mar 22, 2017 at 09:52:32AM +0000, Jeremy Henty wrote:
I noticed that my connections to hg.dillo.org were timing out. I discovered that the IP address had changed and so my firewall was dropping the packets. So I updated my firewall to fix that, and now my connections are immediately rejected. For instance, if I try "hg incoming" it immediately responds "abort: error: Connection refused" and exits with status 255 (which I take to mean that something serious went wrong).
So what to do to fix this? Adding a "--verbose" flag to the "hg incoming" command did not change the output. Maybe the port 39390 which is specified in my repository's hgrc file is no longer correct, but I do not know how to test that.
Any ideas?
Yes, we switched to a new server with a different IP. I didn't get firewall problems, but got this message from hg: $ hg in abort: certificate for hg.dillo.org has unexpected fingerprint f4:f9:89:32:04:ee:3d:c3:da:3f:a7:b0:16:5a:09:37:0d:f4:2a:1b So I added these lines to the local repo's .hg/hgrc file: [hostfingerprints] hg.dillo.org = f4:f9:89:32:04:ee:3d:c3:da:3f:a7:b0:16:5a:09:37:0d:f4:2a:1b and it started working again. HTH. -- Cheers Jorge.-