: -1 to release... sorry guys.
:
: I get an exception if I type in more than one word on the analysis page.
: Haven't looked into it yet, but perhaps it's jetty mis-compiling the JSP.
looks like it has to be a jetty issue, stack trace...
java.lang.AbstractMethodError:
org.apache.jsp.admin.analysis_jsp$2.compare(Ljava/lang/Object;Ljava/lang/Object;)I
at java.util.Arrays.mergeSort(Arrays.java:1284)
at java.util.Arrays.sort(Arrays.java:1223)
at
org.apache.jsp.admin.analysis_jsp.writeTokens(org.apache.jsp.admin.analysis_jsp:199)
...lines in question...
Arrays.sort(arr, new Comparator<List<Tok>>() {
public int compare(List<Tok> toks, List<Tok> toks1) {
return toks.get(0).pos - toks1.get(0).pos;
}
}
);
...they've been around since r372455 ... the initial import of Solr code
to apache.
-Hoss