I can't do concurrent builds of trunk and 1.* version on my pc. While I
don't know if these are all the causes, I identified at least two reasons:
ForkParserIntegrationTest.java:
address=54321
TikaServerIntegrationTest.java:
INTEGRATION_TEST_PORT = "9999";
It still fails for me after I changed the port of the trunk build to
9997. The trunk build now has this:
org.junit.runners.model.TestTimedOutException: test timed out after
60000 milliseconds
at
org.apache.tika.server.TikaServerIntegrationTest.awaitServerStartup(TikaServerIntegrationTest.java:435)
at
org.apache.tika.server.TikaServerIntegrationTest.testBaseline(TikaServerIntegrationTest.java:517)
at
org.apache.tika.server.TikaServerIntegrationTest.testTimeout(TikaServerIntegrationTest.java:286)
I looked into the log, there is "tika test client failed to connect to
server with status: 404" many times until it gives up.
I also tried with the browser, http://localhost:9997/tika shows 404.
Could it be that both jetty instances use something in common?
Has this (not being able to run the builds on the same machine) been
discussed before?
Tilman