Disable JMX reporting in Cassandra tests.

Closes gh-281.
This commit is contained in:
Mark Paluch
2019-02-13 14:55:39 +01:00
parent 4c3cda0ee3
commit b712206e51

View File

@@ -124,7 +124,7 @@ public class VaultConfigCassandraTests {
try (Cluster cluster = Cluster.builder().addContactPoint(CASSANDRA_HOST)
.withAuthProvider(new PlainTextAuthProvider(this.username, this.password))
.build()) {
.withoutJMXReporting().build()) {
Session session = cluster.connect();
session.close();
}