DATACASS-331 - Polishing.

Fix logger dependency. Fix flakey async test.
This commit is contained in:
Mark Paluch
2016-08-22 14:04:27 +02:00
parent f83d4bf62d
commit 00c8aa2cc4
4 changed files with 11 additions and 1 deletions

View File

@@ -87,6 +87,10 @@
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>

View File

@@ -82,6 +82,8 @@ public class AsynchronousTest extends AbstractAsynchronousTest {
Book[] books = new Book[n];
for (int i = 0; i < n; i++) {
Book b = books[i] = Book.random();
b.isbn = "i- " + i;
b.title = "t- " + i;
t.execute(String.format("insert into %s (isbn, title) values ('%s', '%s')", TABLE, b.isbn, b.title));
}
return books;

View File

@@ -10,7 +10,7 @@
</appender>
<logger name="org.springframework" level="error" />
<logger name="org.springframework.cassandra" level="DEBUG" />
<logger name="org.springframework.cassandra" level="error" />
<logger name="com.datastax" level="error" />
<root level="error">

View File

@@ -99,6 +99,10 @@
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>