OpenSearch/modules
Adriano Ferreira 154dcf007e Make RestUtils.decodeQueryString() more robust in edge cases
The code of decodeQueryString() had some trouble with weird URLs:

(1) an input like "uri?param&p=v" causes an exception to be thrown
(2) an input like "uri?param1&param2" causes an infinite loop

This could be verified against an ES server with requests like

    curl -XGET localhost:9200/test/_analyze?t&text=this+is+a+test
    # the exception stack trace shows up in logs

    curl -XGET localhost:9200/test/_analyze?t1&t2&text=this+is+a+test
    # never returns, never ends

This change fixes these issues.
2011-01-07 14:13:25 +02:00
..
benchmark make lucene document creation allowed to be indexed twice 2011-01-07 14:09:39 +02:00
elasticsearch Make RestUtils.decodeQueryString() more robust in edge cases 2011-01-07 14:13:25 +02:00
jarjar upgrade to jackson 1.6.3 2010-12-07 09:14:13 +02:00
test make lucene document creation allowed to be indexed twice 2011-01-07 14:09:39 +02:00