diff options
author | John Christopher Anderson <jchris@apache.org> | 2009-01-04 01:01:33 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2009-01-04 01:01:33 +0000 |
commit | e27fb8eaa628128f0ec8f1797805e92ec39ec6cb (patch) | |
tree | 2e91e8365302bc7da520076efca194d4ccafd3eb /etc/couchdb | |
parent | 449ad331057100adc830016d08dac081077b3df2 (diff) |
Rename _temp_views to _slow_views. Any clients who were using temp views are encouraged not to use slow views, and instead transition to design documents (or running the views on the client).
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@731144 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'etc/couchdb')
-rw-r--r-- | etc/couchdb/default.ini.tpl.in | 2 | ||||
-rw-r--r-- | etc/couchdb/local_dev.ini | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/etc/couchdb/default.ini.tpl.in b/etc/couchdb/default.ini.tpl.in index b06c4692..582017fd 100644 --- a/etc/couchdb/default.ini.tpl.in +++ b/etc/couchdb/default.ini.tpl.in @@ -46,7 +46,7 @@ _restart = {couch_httpd_misc_handlers, handle_restart_req} [httpd_db_handlers] _view = {couch_httpd_view, handle_view_req} -_temp_view = {couch_httpd_view, handle_temp_view_req} +_slow_view = {couch_httpd_view, handle_slow_view_req} _form = {couch_httpd_form, handle_form_req} ; The external module takes an optional argument allowing you to narrow it to a diff --git a/etc/couchdb/local_dev.ini b/etc/couchdb/local_dev.ini index 53a75a51..e6e8ca93 100644 --- a/etc/couchdb/local_dev.ini +++ b/etc/couchdb/local_dev.ini @@ -20,3 +20,6 @@ level = error [test] foo = bar + +[test] +foo = bar |