Repository: couchdb-chttpd Updated Branches: refs/heads/master 408d218e1 -> 34f0a81df
fix missing transition in cassim revert, sec obj in external calls empty Project: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/commit/34f0a81d Tree: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/tree/34f0a81d Diff: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/diff/34f0a81d Branch: refs/heads/master Commit: 34f0a81df353ecbb2dbb7d63b258f4c25e8a04ff Parents: 408d218 Author: Jan Lehnardt <[email protected]> Authored: Sun May 15 21:38:04 2016 +0200 Committer: Jan Lehnardt <[email protected]> Committed: Sun May 15 21:38:24 2016 +0200 ---------------------------------------------------------------------- src/chttpd_external.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/34f0a81d/src/chttpd_external.erl ---------------------------------------------------------------------- diff --git a/src/chttpd_external.erl b/src/chttpd_external.erl index a0850b1..5e93cee 100644 --- a/src/chttpd_external.erl +++ b/src/chttpd_external.erl @@ -123,7 +123,7 @@ get_db_info(#db{} = Db) -> get_db_security(#db{main_pid = nil}=Db, #user_ctx{}=UserCtx) -> - couch_db:get_security(Db); + fabric:get_security(Db); get_db_security(#db{}=Db, #user_ctx{}) -> couch_db:get_security(Db).
