You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/10/15 18:38:07 UTC

[1/2] chttpd commit: updated refs/heads/master to 465f29c

Repository: couchdb-chttpd
Updated Branches:
  refs/heads/master 76831000a -> 465f29c45


Use couch_httpd_multipart:abort_multipart_stream

abort_multi_part_stream has been moved and renamed into
couch_httpd_mutlipart:abort_multipart_stream


Project: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/commit/f8f5d7fc
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/tree/f8f5d7fc
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/diff/f8f5d7fc

Branch: refs/heads/master
Commit: f8f5d7fcd506b53be170c587ee3bd38f7433bc2f
Parents: b44515f
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Fri Nov 28 11:46:24 2014 -0800
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Wed Jan 7 11:16:19 2015 -0800

----------------------------------------------------------------------
 src/chttpd_db.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/f8f5d7fc/src/chttpd_db.erl
----------------------------------------------------------------------
diff --git a/src/chttpd_db.erl b/src/chttpd_db.erl
index 24eb78c..672509d 100644
--- a/src/chttpd_db.erl
+++ b/src/chttpd_db.erl
@@ -683,7 +683,7 @@ db_doc_req(#httpd{method='PUT', user_ctx=Ctx}=Req, Db, DocId) ->
             Result
         catch throw:Err ->
             % Document rejected by a validate_doc_update function.
-            couch_doc:abort_multi_part_stream(Parser),
+            couch_httpd_multipart:abort_multi_part_stream(Parser),
             throw(Err)
         end;
     _Else ->


[2/2] chttpd commit: updated refs/heads/master to 465f29c

Posted by kx...@apache.org.
Merge remote-tracking branch 'github/pr/11'


Project: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/commit/465f29c4
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/tree/465f29c4
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/diff/465f29c4

Branch: refs/heads/master
Commit: 465f29c45aeb6dc4aff27a6e711bfc5bff9d2f3e
Parents: 7683100 f8f5d7f
Author: Alexander Shorin <kx...@apache.org>
Authored: Thu Oct 15 19:36:41 2015 +0300
Committer: Alexander Shorin <kx...@apache.org>
Committed: Thu Oct 15 19:36:41 2015 +0300

----------------------------------------------------------------------
 src/chttpd_db.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/465f29c4/src/chttpd_db.erl
----------------------------------------------------------------------