You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2009/01/17 14:34:43 UTC

svn commit: r735285 - /couchdb/trunk/share/www/script/couch_tests.js

Author: jan
Date: Sat Jan 17 05:34:43 2009
New Revision: 735285

URL: http://svn.apache.org/viewvc?rev=735285&view=rev
Log:
Back out unintentionally committed changes from r735284.

Modified:
    couchdb/trunk/share/www/script/couch_tests.js

Modified: couchdb/trunk/share/www/script/couch_tests.js
URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/script/couch_tests.js?rev=735285&r1=735284&r2=735285&view=diff
==============================================================================
--- couchdb/trunk/share/www/script/couch_tests.js [utf-8] (original)
+++ couchdb/trunk/share/www/script/couch_tests.js [utf-8] Sat Jan 17 05:34:43 2009
@@ -2183,14 +2183,7 @@
       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);