miklosgergely commented on a change in pull request #13525:
URL: https://github.com/apache/flink/pull/13525#discussion_r498058981
##########
File path:
flink-connectors/flink-connector-hbase-2.2/src/test/java/org/apache/flink/connector/hbase2/util/HBaseTestingClusterAutoStarter.java
##########
@@ -119,6 +123,9 @@ private static void initialize(Configuration c) {
@BeforeClass
public static void setUp() throws Exception {
+ // HBase 2.2.3 HBaseTestingUtility works with only a certain
range of hadoop versions
+ String hadoopVersion = System.getProperty("hadoop.version");
+ Assume.assumeTrue(HADOOP_VERSION_RANGE.contains(hadoopVersion));
Review comment:
Range is using VersionUtil::compareVersions now to compare.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]