Skip to content
Snippets Groups Projects
Commit da969cf7 authored by Sören Henning's avatar Sören Henning Committed by GitHub
Browse files

added console output

parent 8fcc8eef
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,9 @@ public class CassandraService { ...@@ -32,6 +32,9 @@ public class CassandraService {
private void createSession(final String host, final int port, final String keyspace, final int timeoutInMillis) { private void createSession(final String host, final int port, final String keyspace, final int timeoutInMillis) {
final Instant start = Instant.now(); final Instant start = Instant.now();
System.out.println("Use host: " + host); // TODO
System.out.println("Use port: " + port); // TODO
Cluster cluster = Cluster.builder().addContactPoint(host).withPort(port).build(); Cluster cluster = Cluster.builder().addContactPoint(host).withPort(port).build();
while (true) { while (true) {
try { try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment