Skip to content

Commit

Permalink
HIVE-27167: Upgrade guava version in standalone-metastore and storage…
Browse files Browse the repository at this point in the history
…-api modules (Raghav Aggarwal, reviewed by Chris Nauroth, Denys Kuzmenko)

Closes apache#4143
  • Loading branch information
Aggarwal-Raghav authored and tarak271 committed Dec 19, 2023
1 parent 09bf795 commit c5f2b69
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,9 @@ public static List<FieldSchema> createSchema(@Nullable List<String> params) {
HostAndPort hp = HostAndPort.fromString(host)
.withDefaultPort(port);

LOG.info("Connecting to {}:{}", hp.getHostText(), hp.getPort());
LOG.info("Connecting to {}:{}", hp.getHost(), hp.getPort());

return new URI(THRIFT_SCHEMA, null, hp.getHostText(), hp.getPort(),
return new URI(THRIFT_SCHEMA, null, hp.getHost(), hp.getPort(),
null, null, null);
}

Expand Down
2 changes: 1 addition & 1 deletion standalone-metastore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<dropwizard-metrics-hadoop-metrics2-reporter.version>0.1.2
</dropwizard-metrics-hadoop-metrics2-reporter.version>
<dropwizard.version>3.1.0</dropwizard.version>
<guava.version>19.0</guava.version>
<guava.version>22.0</guava.version>
<hadoop.version>3.3.1</hadoop.version>
<hikaricp.version>4.0.3</hikaricp.version>
<jackson.version>2.12.7</jackson.version>
Expand Down
2 changes: 1 addition & 1 deletion storage-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<commons-logging.version>1.1.3</commons-logging.version>
<guava.version>19.0</guava.version>
<guava.version>22.0</guava.version>
<hadoop.version>3.3.1</hadoop.version>
<junit.version>4.13.2</junit.version>
<junit.jupiter.version>5.6.3</junit.jupiter.version>
Expand Down

0 comments on commit c5f2b69

Please sign in to comment.