SOLR-12759: Disable ExtractingRequestHandlerTest on JDK 11 due to

JDK bug with timezone locale and Date.toString
This commit is contained in:
David Smiley 2018-09-10 11:45:44 -04:00
parent a537aa20c1
commit 623cdf29ad
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ public class ExtractingRequestHandlerTest extends SolrTestCaseJ4 {
@BeforeClass
public static void beforeClass() throws Exception {
assertFalse("SOLR-12759 JDK 11 (1st release) and Tika 1.x can result in extracting dates in a bad format.",
System.getProperty("java.version").startsWith("11"));
initCore("solrconfig.xml", "schema.xml", getFile("extraction/solr").getAbsolutePath());
}