From common-commits-return-84519-archive-asf-public=cust-asf.ponee.io@hadoop.apache.org Mon Jun 18 08:17:05 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 33200180679 for ; Mon, 18 Jun 2018 08:17:05 +0200 (CEST) Received: (qmail 21213 invoked by uid 500); 18 Jun 2018 06:17:03 -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 21176 invoked by uid 99); 18 Jun 2018 06:17:03 -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, 18 Jun 2018 06:17:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3EB32DFC42; Mon, 18 Jun 2018 06:17:03 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cdouglas@apache.org To: common-commits@hadoop.apache.org Date: Mon, 18 Jun 2018 06:17:03 -0000 Message-Id: <1ab64730906c4cef9631bb13b3a260e6@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/4] hadoop git commit: HADOOP-15533. Make WASB listStatus messages consistent. Contributed by Esfandiar Manii Repository: hadoop Updated Branches: refs/heads/branch-2 59686179a -> 4789b8e9c refs/heads/branch-3.0 34f89f5af -> d1dcc3922 refs/heads/branch-3.1 40652e77e -> 7e655b642 refs/heads/trunk 980031bb0 -> f34744603 HADOOP-15533. Make WASB listStatus messages consistent. Contributed by Esfandiar Manii Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/f3474460 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/f3474460 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/f3474460 Branch: refs/heads/trunk Commit: f34744603ee93e082e7ba148df1400af5ac7c30c Parents: 980031b Author: Chris Douglas Authored: Sun Jun 17 23:12:18 2018 -0700 Committer: Chris Douglas Committed: Sun Jun 17 23:12:18 2018 -0700 ---------------------------------------------------------------------- .../java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/f3474460/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java b/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java index e05327e..dfc881a 100644 --- a/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java +++ b/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java @@ -2886,7 +2886,7 @@ public class NativeAzureFileSystem extends FileSystem { // There is no metadata found for the path. LOG.debug("Did not find any metadata for path: {}", key); - throw new FileNotFoundException("File" + f + " does not exist."); + throw new FileNotFoundException(f + " is not found"); } return status.toArray(new FileStatus[0]); --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org