This is an automated email from the ASF dual-hosted git repository. chewbranca pushed a commit to branch ioq-per-shard-or-user in repository https://gitbox.apache.org/repos/asf/couchdb-ioq.git
commit 0ffa7cd9fd1e89ae667ed234d21e04696e3033ae Author: ILYA Khlopotov <[email protected]> AuthorDate: Fri Jan 30 11:30:02 2015 -0800 Don't restart event handler on termination COUCHDB-2561 --- src/ioq.erl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ioq.erl b/src/ioq.erl index c4b3b4e..967a49b 100644 --- a/src/ioq.erl +++ b/src/ioq.erl @@ -91,6 +91,7 @@ handle_config_change("ioq", _, _, _, _) -> handle_config_change(_, _, _, _, _) -> {ok, nil}. +handle_config_terminate(_, stop, _) -> ok; handle_config_terminate(_, _, _) -> spawn(fun() -> timer:sleep(5000),
