ctubbsii edited a comment on issue #2343: URL: https://github.com/apache/accumulo/issues/2343#issuecomment-958633829
I have seen this on the ASF Jenkins builds... but I have never seen it anywhere else. The ASF Jenkins servers aren't available for administrative access to troubleshoot the logs and state of the system when it happens, though, so it's been hard to track down. I can't reproduce it locally. Also, just a note of caution, you shouldn't use `mvn clean test` for Accumulo, in general. For `<lengthy explanation; don't want to derail this; ask me in Slack or mailing list if you want details>`, it is better to use `mvn clean package` to run the unit tests. I tried to reproduce this by running it in a loop as fast as possible with a bash one-liner (exit condition on first failure): ```bash while mvn clean process-test-classes surefire:test -pl start,core -Dtest=RFileTest -Dformatter.skip -Dimpsort.skip -Denforcer.skip -Dassembly.skip -Dsort.skip -Drat.skip -Dwarbucks.skip -Dmodernizer.skip -Dlicense.skip -Dremoteresources.skip; do true; done ``` -- 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]
