You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ii...@apache.org on 2019/10/24 17:29:50 UTC

[couchdb] branch prototype/fdb-layer updated: Remove compiler warning

This is an automated email from the ASF dual-hosted git repository.

iilyak pushed a commit to branch prototype/fdb-layer
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/prototype/fdb-layer by this push:
     new 3f322a5  Remove compiler warning
     new ed1c3d7  Merge pull request #2274 from cloudant/fix-warning
3f322a5 is described below

commit 3f322a554cd0a29b8d4d0976a0dd4c8701ef355a
Author: ILYA Khlopotov <ii...@apache.org>
AuthorDate: Tue Oct 1 16:10:26 2019 +0000

    Remove compiler warning
---
 src/chttpd/src/chttpd_db.erl | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/chttpd/src/chttpd_db.erl b/src/chttpd/src/chttpd_db.erl
index 5a7f060..8cfa1f4 100644
--- a/src/chttpd/src/chttpd_db.erl
+++ b/src/chttpd/src/chttpd_db.erl
@@ -333,8 +333,6 @@ update_partition_stats(PathParts) ->
 handle_design_req(#httpd{
         path_parts=[_DbName, _Design, Name, <<"_",_/binary>> = Action | _Rest]
     }=Req, Db) ->
-    DbName = fabric2_db:name(Db),
-%%    case ddoc_cache:open(DbName, <<"_design/", Name/binary>>) of
     case fabric2_db:open_doc(Db, <<"_design/", Name/binary>>) of
     {ok, DDoc} ->
         Handler = chttpd_handlers:design_handler(Action, fun bad_action_req/3),