This is an automated email from the ASF dual-hosted git repository. jan pushed a commit to branch 749-fix-couch_peruser-app-structure in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 372fb35ac5995fa6df7342bc8555a2e398e65256 Author: Jan Lehnardt <[email protected]> AuthorDate: Tue Oct 10 10:52:09 2017 +0200 fix state --- src/couch_peruser/src/couch_peruser.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/couch_peruser/src/couch_peruser.erl b/src/couch_peruser/src/couch_peruser.erl index 23def43..8394db5 100644 --- a/src/couch_peruser/src/couch_peruser.erl +++ b/src/couch_peruser/src/couch_peruser.erl @@ -343,7 +343,7 @@ handle_cast(cluster_stable, State) -> handle_cast(_Msg, State) -> {noreply, State}. -handle_info({'DOWN', Ref, _, _, _Reason}, #changes_state{changes_ref=Ref} = State) -> +handle_info({'DOWN', _Ref, _, _, _Reason}, State) -> {stop, normal, State}; handle_info({config_change, "couch_peruser", _, _, _}, State) -> handle_cast(update_config, State); -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
