summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2009-01-17 13:34:43 +0000
committerJan Lehnardt <jan@apache.org>2009-01-17 13:34:43 +0000
commit79d725aad6b5ca51ac092df901e8e32668fc43f9 (patch)
tree8d8bbbe36a84eeb1751cb2bd80b3d80f68a3e58d /share
parent1be12947c878bbbf28b24a1a330e336272fa3b06 (diff)
Back out unintentionally committed changes from r735284.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@735285 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r--share/www/script/couch_tests.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js
index f292bb1f..34c5c3aa 100644
--- a/share/www/script/couch_tests.js
+++ b/share/www/script/couch_tests.js
@@ -2183,14 +2183,7 @@ var tests = {
for(test in repTests)
if(repTests[test].init) repTests[test].init(dbA, dbB);
- try {
- T(CouchDB.replicate(A, B).ok);
- } catch (e) {
- if(window.location.host.match(/localhost/)) {
- alert("Hi, the replication test failed. The most likely cause is that 'localhost' resolves to ::1 (IPv6) and CouchDB only listenes at 127.0.0.1 (IPv4). Try 127.0.0.1 to access Futon and run this test suite again.");
- }
- throw e;
- }
+ T(CouchDB.replicate(A, B).ok);
for(test in repTests)
if(repTests[test].afterAB1) repTests[test].afterAB1(dbA, dbB);