diff --git a/CHANGES.txt b/CHANGES.txt index b18f5d40859..5b58ab24cff 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -151,6 +151,12 @@ New Features 24. SOLR-212: Added a DirectSolrConnection class. This lets you access solr using the standard request/response formats, but does not require an HTTP connection. It is designed for embedded applications. (ryan) + +25. SOLR-204: The request dispatcher (added in SOLR-104) can handle + calls to /select. This offers uniform error handling for /update and + /select. To enable this behavior, you must add: + to your solrconfig.xml + See the example solrconfig.xml for details. (ryan) Changes in runtime behavior 1. Highlighting using DisMax will only pick up terms from the main diff --git a/example/solr/conf/solrconfig.xml b/example/solr/conf/solrconfig.xml index c5eeb4f90da..1c78a66370f 100755 --- a/example/solr/conf/solrconfig.xml +++ b/example/solr/conf/solrconfig.xml @@ -231,9 +231,17 @@ - - - + + + + + + + - + + + solr diff --git a/src/webapp/WEB-INF/web.xml b/src/webapp/WEB-INF/web.xml index ffaa8ebcec6..ecf38e23463 100644 --- a/src/webapp/WEB-INF/web.xml +++ b/src/webapp/WEB-INF/web.xml @@ -35,10 +35,6 @@ SolrRequestFilter org.apache.solr.servlet.SolrDispatchFilter