You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by jc...@apache.org on 2010/07/28 01:08:45 UTC

svn commit: r979910 - /couchdb/branches/0.11.x/src/couchdb/couch_rep_httpc.erl

Author: jchris
Date: Tue Jul 27 23:08:44 2010
New Revision: 979910

URL: http://svn.apache.org/viewvc?rev=979910&view=rev
Log:
replicator was getting stuck on push replication to design docs by non-admins. this fix is a bit hackish but makes replication work. once the new_replicator is in place this hackish fix will not matter, so for now it is a good solution.

Modified:
    couchdb/branches/0.11.x/src/couchdb/couch_rep_httpc.erl

Modified: couchdb/branches/0.11.x/src/couchdb/couch_rep_httpc.erl
URL: http://svn.apache.org/viewvc/couchdb/branches/0.11.x/src/couchdb/couch_rep_httpc.erl?rev=979910&r1=979909&r2=979910&view=diff
==============================================================================
--- couchdb/branches/0.11.x/src/couchdb/couch_rep_httpc.erl (original)
+++ couchdb/branches/0.11.x/src/couchdb/couch_rep_httpc.erl Tue Jul 27 23:08:44 2010
@@ -140,7 +140,7 @@ process_response({ok, Status, Headers, B
         do_request(redirected_request(Req, RedirectUrl));
     Code =:= 409 ->
         throw(conflict);
-    Code >= 400, Code < 500 ->
+    Code >= 400, Code =< 500 ->
         ?JSON_DECODE(maybe_decompress(Headers, Body));
     Code =:= 500; Code =:= 502; Code =:= 503 ->
         #http_db{pause = Pause, retries = Retries} = Req,