diff --git a/hbase-common/src/test/java/org/apache/hadoop/hbase/net/TestAddress.java b/hbase-common/src/test/java/org/apache/hadoop/hbase/net/TestAddress.java new file mode 100644 index 00000000000..22c79403513 --- /dev/null +++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/net/TestAddress.java @@ -0,0 +1,50 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.hadoop.hbase.net; + + +import org.apache.hadoop.hbase.HBaseClassTestRule; +import org.apache.hadoop.hbase.testclassification.MiscTests; +import org.apache.hadoop.hbase.testclassification.SmallTests; +import org.junit.Assert; +import org.junit.ClassRule; +import org.junit.Test; +import org.junit.experimental.categories.Category; + +import static org.junit.Assert.assertEquals; + +@Category({ MiscTests.class, SmallTests.class }) +public class TestAddress { + @ClassRule + public static final HBaseClassTestRule CLASS_RULE = + HBaseClassTestRule.forClass(TestAddress.class); + + @Test + public void testGetHostWithoutDomain() { + assertEquals("a:123", + Address.fromParts("a.b.c", 123).toStringWithoutDomain()); + assertEquals("1:123", + Address.fromParts("1.b.c", 123).toStringWithoutDomain()); + assertEquals("123.456.789.1:123", + Address.fromParts("123.456.789.1", 123).toStringWithoutDomain()); + assertEquals("[2001:db8::1]:80", + Address.fromParts("[2001:db8::1]:", 80).toStringWithoutDomain()); + assertEquals("[2001:db8::1]:80", + Address.fromParts("[2001:db8::1]:", 80).toStringWithoutDomain()); + } +} diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java.rej b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java.rej new file mode 100644 index 00000000000..3c7237c36b1 --- /dev/null +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java.rej @@ -0,0 +1,9 @@ +diff a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java (rejected hunks) +@@ -100,6 +100,7 @@ import org.apache.hadoop.hbase.ipc.ServerNotRunningYetException; + import org.apache.hadoop.hbase.ipc.ServerRpcController; + import org.apache.hadoop.hbase.log.HBaseMarkers; + import org.apache.hadoop.hbase.master.MasterRpcServices; ++import org.apache.hadoop.hbase.net.Address; + import org.apache.hadoop.hbase.quotas.ActivePolicyEnforcement; + import org.apache.hadoop.hbase.quotas.OperationQuota; + import org.apache.hadoop.hbase.quotas.QuotaUtil; diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/master/ReplicationPeerConfigUpgrader.java.rej b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/master/ReplicationPeerConfigUpgrader.java.rej new file mode 100644 index 00000000000..a9829ef3292 --- /dev/null +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/master/ReplicationPeerConfigUpgrader.java.rej @@ -0,0 +1,10 @@ +diff a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/master/ReplicationPeerConfigUpgrader.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/master/ReplicationPeerConfigUpgrader.java (rejected hunks) +@@ -100,7 +100,7 @@ public class ReplicationPeerConfigUpgrader extends ReplicationStateZKBase { + // We only need to copy data from tableCFs node to rpc Node the first time hmaster start. + if (rpc.getTableCFsMap() == null || rpc.getTableCFsMap().isEmpty()) { + // we copy TableCFs node into PeerNode +- LOG.info("copy tableCFs into peerNode:" + peerId); ++ LOG.info("Copy table ColumnFamilies into peer=" + peerId); + ReplicationProtos.TableCF[] tableCFs = + ReplicationPeerConfigUtil.parseTableCFs( + ZKUtil.getData(this.zookeeper, tableCFsNode));