Skip to content

Commit

Permalink
Bump guava version to 24.1.1-jre.
Browse files Browse the repository at this point in the history
  • Loading branch information
acabezas committed Jun 24, 2019
1 parent 8673b23 commit 9054094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<pedantic.enforcers>MODULE_ORDER,DEPENDENCY_CONFIGURATION,DEPENDENCY_SCOPE,PLUGIN_CONFIGURATION</pedantic.enforcers>
<avro.version>1.8.2</avro.version>
<lombok.version>1.18.4</lombok.version>
<guava.version>19.0</guava.version>
<guava.version>24.1.1-jre</guava.version>
<slf4j.version>1.7.24</slf4j.version>
<cassandra.version>3.11.2</cassandra.version>
<cassandra.driver.version>3.3.0</cassandra.driver.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public static Cluster connect() {
HostAndPort hostAndPort = getNativeHostAndPort();
log.debug("Connecting to local Cassandra server at {}...", hostAndPort);
return Cluster.builder()
.addContactPoint(hostAndPort.getHostText())
.addContactPoint(hostAndPort.getHost())
.withPort(hostAndPort.getPort())
.withTimestampGenerator(new AtomicMonotonicTimestampGenerator())
.withoutMetrics()
Expand Down

0 comments on commit 9054094

Please sign in to comment.