summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2019-05-21 10:03:28 +0200
committerJan Lehnardt <jan@apache.org>2019-05-22 11:43:48 +0200
commit04c37fc7b50a311b75fa957d2e615e13214a1df4 (patch)
tree04152673ed244d6f249e99e16cbc3e607904c9d3
parenteee1484cfaba992cb7c9ad467d54f44c5b1e3afc (diff)
downloadcouchdb-04c37fc7b50a311b75fa957d2e615e13214a1df4.tar.gz
fix: remove restart handlers for obsolete config settings
-rw-r--r--src/couch/src/couch_server.erl6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/couch/src/couch_server.erl b/src/couch/src/couch_server.erl
index 3bbd2eb34..e42f1036b 100644
--- a/src/couch/src/couch_server.erl
+++ b/src/couch/src/couch_server.erl
@@ -292,12 +292,6 @@ handle_config_change("httpd", "port", _, _, _) ->
{ok, couch_httpd:stop()};
handle_config_change("httpd", "max_connections", _, _, _) ->
{ok, couch_httpd:stop()};
-handle_config_change("httpd", "default_handler", _, _, _) ->
- {ok, couch_httpd:stop()};
-handle_config_change("httpd_global_handlers", _, _, _, _) ->
- {ok, couch_httpd:stop()};
-handle_config_change("httpd_db_handlers", _, _, _, _) ->
- {ok, couch_httpd:stop()};
handle_config_change(_, _, _, _, _) ->
{ok, nil}.