saintstack commented on a change in pull request #3478:
URL: https://github.com/apache/hbase/pull/3478#discussion_r671458461
##########
File path: hbase-rest/pom.xml
##########
@@ -432,24 +436,13 @@
<exclusions>
<exclusion>
<groupId>com.sun.jersey</groupId>
- <artifactId>jersey-core</artifactId>
+ <artifactId>jersey-server</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-mapreduce-client-core</artifactId>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
Review comment:
This change related?
##########
File path:
hbase-it/src/test/java/org/apache/hadoop/hbase/DistributedHBaseCluster.java
##########
@@ -33,17 +33,23 @@
import org.apache.hadoop.hbase.client.ConnectionFactory;
import org.apache.hadoop.hbase.client.RegionInfo;
import org.apache.hadoop.hbase.client.RegionLocator;
+import org.apache.hadoop.hbase.testing.HBaseCluster;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
import org.apache.hadoop.hbase.util.Threads;
import org.apache.yetus.audience.InterfaceAudience;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
/**
- * Manages the interactions with an already deployed distributed cluster (as
opposed to
- * a pseudo-distributed, or mini/local cluster). This is used by integration
and system tests.
+ * Manages the interactions with an already deployed distributed cluster (as
opposed to a
+ * pseudo-distributed, or mini/local cluster). This is used by integration and
system tests.
*/
@InterfaceAudience.Private
public class DistributedHBaseCluster extends HBaseCluster {
+
+ private static final Logger LOG =
LoggerFactory.getLogger(DistributedHBaseCluster.class);
Review comment:
Used?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]