# HG changeset patch # User Gregory Szorc # Date 1539242765 -7200 # Node ID f7ff5b4fe745369f24ac47fd0d758a57683b7557 # Parent 461583f2125baa002fc07187552242bb1586506a tests: use baseurl instead of advertisedbaseurl The distinction matters for e.g. hosts behind load balancers. But for the test environment, it doesn't matter. For whatever reason, advertisedbaseurl is resolving to http://1.0.0.127.in-addr.arpa:$HGPORT on my MBP. This hostname fails to resolve, causing the test to fail. No clue what's up with that behavior. Differential Revision: https://phab.mercurial-scm.org/D4973 diff -r 461583f2125b -r f7ff5b4fe745 tests/wireprotosimplecache.py --- a/tests/wireprotosimplecache.py Fri Oct 12 09:23:55 2018 -0400 +++ b/tests/wireprotosimplecache.py Thu Oct 11 09:26:05 2018 +0200 @@ -127,7 +127,7 @@ paths.append(b'simplecache') paths.append(self.key) - url = b'%s/%s' % (self.req.advertisedbaseurl, b'/'.join(paths)) + url = b'%s/%s' % (self.req.baseurl, b'/'.join(paths)) #url = b'http://example.com/%s' % self.key self.ui.log('simplecache', 'sending content redirect for %s to '