From common-commits-return-85060-archive-asf-public=cust-asf.ponee.io@hadoop.apache.org Mon Jul 2 22:32:31 2018 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 [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 32BFA18067B for ; Mon, 2 Jul 2018 22:32:31 +0200 (CEST) Received: (qmail 89505 invoked by uid 500); 2 Jul 2018 20:32:20 -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 88231 invoked by uid 99); 2 Jul 2018 20:32:20 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Jul 2018 20:32:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 39F90E11BC; Mon, 2 Jul 2018 20:32:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: xyao@apache.org To: common-commits@hadoop.apache.org Date: Mon, 02 Jul 2018 20:32:52 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [35/45] hadoop git commit: HDFS-13635. Incorrect message when block is not found. Contributed by Gabor Bota. HDFS-13635. Incorrect message when block is not found. Contributed by Gabor Bota. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/fef20a44 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/fef20a44 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/fef20a44 Branch: refs/heads/HDDS-4 Commit: fef20a446f7bf9f29e0f0ee690987fb6fc78a031 Parents: f51da9c Author: Wei-Chiu Chuang Authored: Mon Jul 2 09:41:15 2018 -0700 Committer: Wei-Chiu Chuang Committed: Mon Jul 2 09:41:15 2018 -0700 ---------------------------------------------------------------------- .../hadoop/hdfs/server/datanode/ReplicaNotFoundException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/fef20a44/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java index 90f257f..946950c 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java +++ b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java @@ -37,7 +37,7 @@ public class ReplicaNotFoundException extends IOException { "Cannot recover append/close to a replica that's not FINALIZED and not RBW" + " "; public final static String NON_EXISTENT_REPLICA = - "Cannot append to a non-existent replica "; + "Replica does not exist "; public final static String UNEXPECTED_GS_REPLICA = "Cannot append to a replica with unexpected generation stamp "; --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org