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 2008/09/23 19:46:10 UTC

svn commit: r698260 - /incubator/couchdb/trunk/src/couchdb/couch_httpd.erl

Author: jan
Date: Tue Sep 23 10:46:10 2008
New Revision: 698260

URL: http://svn.apache.org/viewvc?rev=698260&view=rev
Log:
Changed call to Req:recv_body() by Damien's request.

Modified:
    incubator/couchdb/trunk/src/couchdb/couch_httpd.erl

Modified: incubator/couchdb/trunk/src/couchdb/couch_httpd.erl
URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/couchdb/couch_httpd.erl?rev=698260&r1=698259&r2=698260&view=diff
==============================================================================
--- incubator/couchdb/trunk/src/couchdb/couch_httpd.erl (original)
+++ incubator/couchdb/trunk/src/couchdb/couch_httpd.erl Tue Sep 23 10:46:10 2008
@@ -789,7 +789,7 @@
         _ ->
             [{FileName, {
                 list_to_binary(Req:get_header_value("Content-Type")),
-                Req:recv_body()
+                Req:recv_body(?MAX_DOC_SIZE)
             }}]
     end,