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/11/24 21:16:19 UTC

[2/4] chttpd commit: updated refs/heads/master to 7dcf127

Drop R14 support


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

Branch: refs/heads/master
Commit: 5e44123a4accc1e61546037dec9577806a40f796
Parents: 6a1858f
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Thu Nov 19 10:09:52 2015 -0800
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Thu Nov 19 10:09:52 2015 -0800

----------------------------------------------------------------------
 src/chttpd.erl | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/5e44123a/src/chttpd.erl
----------------------------------------------------------------------
diff --git a/src/chttpd.erl b/src/chttpd.erl
index 0e93728..1bfc223 100644
--- a/src/chttpd.erl
+++ b/src/chttpd.erl
@@ -311,8 +311,6 @@ catch_error(HttpReq, Tag, Error) ->
     case {Tag, Error, Stack} of
         {exit, normal, [{mochiweb_request, send, _, _} | _]} ->
             exit(normal); % Client disconnect (R15+)
-        {exit, normal, [{mochiweb_request, send, _} | _]} ->
-            exit(normal); % Client disconnect (R14)
         _Else ->
             send_error(HttpReq, {Error, nil, Stack})
     end.