Manno15 opened a new pull request #175: URL: https://github.com/apache/accumulo-testing/pull/175
Fixes #161. The issue with #161 was the class `TimedScanDispatcher.java` could not be found by accumulo. Adding the shaded jar to the classpath (similar to what every other testing script does) fixes that issue and now the test completes successfully. I did run into one issue. I now have a warning for multiple slf4j bindings that I could not figure out a good solution for (I have tried multiple exclusions in the jar along with various ways to add the shaded jar to the classpath). Below is the snippet for that: ``` SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/home/jeffrey/git/accumulo-testing/target/accumulo-testing-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/home/jeffrey/git/fluo-uno/install/accumulo-2.1.0-SNAPSHOT/lib/log4j-slf4j-impl-2.14.1.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory] ~ ``` To note, this does not prevent the test to run but it does break the logging inside fluo-uno. -- 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]
