Author: brane
Date: Wed Dec 19 13:27:11 2018
New Revision: 1849300
URL: http://svn.apache.org/viewvc?rev=1849300&view=rev
Log:
* subversion/tests/cmdline/dav_tests.py (connect_to_github_server):
Don't use Subversion's mirror in the test as its SVN bridge isn't stable.
Modified:
subversion/trunk/subversion/tests/cmdline/dav_tests.py
Modified: subversion/trunk/subversion/tests/cmdline/dav_tests.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/dav_tests.py?rev=1849300&r1=1849299&r2=1849300&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/dav_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/dav_tests.py Wed Dec 19 13:27:11
2018
@@ -73,7 +73,10 @@ def connect_other_dav_server(sbox):
def connect_to_github_server(sbox):
"connect to GitHub's SVN bridge"
- github_mirror_url = 'https://github.com/apache/subversion/trunk'
+ #github_mirror_url = 'https://github.com/apache/subversion/trunk'
+ # FIXME: Subversion's mirror on GitHub seems to randomly return gateway
+ # errors (status 504), so use this more stable one instead.
+ github_mirror_url = 'https://github.com/apache/serf/trunk'
# Skip this test if we can't connect to the GitHub server.
# We check this here instead of in a SkipUnless() predicate decorator,