the lucene zone machine is down (see INFRA-2351) so i don't think nightly
builds are running.
On my local box i'm seeing TestContentStreamDataSource fail...
junit.framework.AssertionFailedError: expected:<Hello C1> but was:<[Hello C1]>
at
org.apache.solr.handler.dataimport.TestContentStreamDataSource.testSimple(TestContentStreamDataSource.java:67)
Noble: is it possible this was caused by your SOLR-1600 changes? (which
don't seem to be listed in CHANGES.txt ... what's up with that?!?)
i think that "[]" syntax is ant's way of stringifying a collection. If i
modify the test like this...
- assertEquals("Hello C1", doc.getFieldValue("desc"));
+ assertEquals("Hello C1", doc.getFirstValue("desc"));
...it starts to pass, but i don't just wnat to commit that change without
being sure we understand why it broke in the firstplace, and wether it's
an indication of how something might break for end users.
-Hoss