[
https://issues.apache.org/jira/browse/SOLR-1341?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Yonik Seeley resolved SOLR-1341.
--------------------------------
Resolution: Fixed
Found it and committed - there was a bug in analysis.jsp that created the
tokenstream again:
{code}
Index: src/webapp/web/admin/analysis.jsp
===================================================================
--- src/webapp/web/admin/analysis.jsp (revision 801477)
+++ src/webapp/web/admin/analysis.jsp (working copy)
@@ -199,7 +199,6 @@
reader.reset();
TokenStream tstream = tfac.create(reader);
List<Token> tokens = getTokens(tstream);
- tstream = tfac.create(reader);
if (verbose) {
writeHeader(out, tfac.getClass(), tfac.getArgs());
}
{code}
> Trie* fields don't work in Analysis.jsp
> ---------------------------------------
>
> Key: SOLR-1341
> URL: https://issues.apache.org/jira/browse/SOLR-1341
> Project: Solr
> Issue Type: Bug
> Affects Versions: 1.4
> Reporter: Yonik Seeley
> Fix For: 1.4
>
>
> trie fields don't seem to work in the admin analysis page
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.