From common-commits-return-98761-archive-asf-public=cust-asf.ponee.io@hadoop.apache.org Fri May 8 08:18:44 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 51193180647 for ; Fri, 8 May 2020 10:18:44 +0200 (CEST) Received: (qmail 8833 invoked by uid 500); 8 May 2020 08:18:43 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 8820 invoked by uid 99); 8 May 2020 08:18:43 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 May 2020 08:18:43 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 1B0608091B; Fri, 8 May 2020 08:18:42 +0000 (UTC) Date: Fri, 08 May 2020 08:18:42 +0000 To: "common-commits@hadoop.apache.org" Subject: [hadoop] branch trunk updated: HDFS-15343. TestConfiguredFailoverProxyProvider is failing. (#2001) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158892592267.4111.14662200357939636343@gitbox.apache.org> From: aajisaka@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: hadoop X-Git-Refname: refs/heads/trunk X-Git-Reftype: branch X-Git-Oldrev: e9e1ead089c0b9f5f1788361329a64fec6561352 X-Git-Newrev: c784ba370eeb3e48c1c2c471ca72674c62a4edb7 X-Git-Rev: c784ba370eeb3e48c1c2c471ca72674c62a4edb7 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. aajisaka pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/hadoop.git The following commit(s) were added to refs/heads/trunk by this push: new c784ba3 HDFS-15343. TestConfiguredFailoverProxyProvider is failing. (#2001) c784ba3 is described below commit c784ba370eeb3e48c1c2c471ca72674c62a4edb7 Author: Akira Ajisaka AuthorDate: Fri May 8 17:18:23 2020 +0900 HDFS-15343. TestConfiguredFailoverProxyProvider is failing. (#2001) --- .../src/test/java/org/apache/hadoop/net/MockDomainNameResolver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/net/MockDomainNameResolver.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/net/MockDomainNameResolver.java index aa93709..3e436f3 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/net/MockDomainNameResolver.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/net/MockDomainNameResolver.java @@ -39,8 +39,8 @@ public class MockDomainNameResolver implements DomainNameResolver { public static final byte[] BYTE_ADDR_2 = new byte[]{10, 1, 1, 2}; public static final String ADDR_1 = "10.1.1.1"; public static final String ADDR_2 = "10.1.1.2"; - public static final String FQDN_1 = "host01.com"; - public static final String FQDN_2 = "host02.com"; + public static final String FQDN_1 = "host01.test"; + public static final String FQDN_2 = "host02.test"; /** Internal mapping of domain names and IP addresses. */ private Map addrs = new TreeMap<>(); --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org