nfsantos opened a new pull request, #2196: URL: https://github.com/apache/jackrabbit-oak/pull/2196
The `LuceneIndexWriterFactory` was not being closed by the test. This object contains a thread pool with the Lucene index writers which write data to disk on the background. After the test ends, JUnit deletes the test directory where all the Lucene data was written. If the Lucene writer threads try to access the Lucene files after the files are deleted, they will fail. This is likely what was causing the failure. This PR closes the the `LuceneIndexWriterFactory` at the end of the test. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
