Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 985A5200BCF for ; Mon, 5 Dec 2016 19:47:31 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 96C7C160B21; Mon, 5 Dec 2016 18:47:31 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E049F160B09 for ; Mon, 5 Dec 2016 19:47:30 +0100 (CET) Received: (qmail 87297 invoked by uid 500); 5 Dec 2016 18:47:21 -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 85630 invoked by uid 99); 5 Dec 2016 18:47: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, 05 Dec 2016 18:47:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E4A82F172B; Mon, 5 Dec 2016 18:47:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: xgong@apache.org To: common-commits@hadoop.apache.org Date: Mon, 05 Dec 2016 18:47:46 -0000 Message-Id: <03500993d6514a3aabb7a09b9161d1bc@git.apache.org> In-Reply-To: <319cb7600753433ba04629beea9e2c4a@git.apache.org> References: <319cb7600753433ba04629beea9e2c4a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [28/29] hadoop git commit: HDFS-11181. Fuse wrapper has a typo. Contributed by Wei-Chiu Chuang. archived-at: Mon, 05 Dec 2016 18:47:31 -0000 HDFS-11181. Fuse wrapper has a typo. Contributed by Wei-Chiu Chuang. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/c51bfd29 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/c51bfd29 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/c51bfd29 Branch: refs/heads/YARN-5734 Commit: c51bfd29cd1e6ec619742f2c47ebfc8bbfb231b6 Parents: f885160 Author: Wei-Chiu Chuang Authored: Mon Dec 5 08:44:40 2016 -0800 Committer: Wei-Chiu Chuang Committed: Mon Dec 5 08:44:40 2016 -0800 ---------------------------------------------------------------------- .../src/main/native/fuse-dfs/fuse_dfs_wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/c51bfd29/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/fuse-dfs/fuse_dfs_wrapper.sh ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/fuse-dfs/fuse_dfs_wrapper.sh b/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/fuse-dfs/fuse_dfs_wrapper.sh index c52c5f9..d5bfd09 100755 --- a/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/fuse-dfs/fuse_dfs_wrapper.sh +++ b/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/fuse-dfs/fuse_dfs_wrapper.sh @@ -43,7 +43,7 @@ done < <(find "$HADOOP_HOME/hadoop-client" -name "*.jar" -print0) while IFS= read -r -d '' file do export CLASSPATH=$CLASSPATH:$file -done < <(find "$HADOOP_HOME/hhadoop-hdfs-project" -name "*.jar" -print0) +done < <(find "$HADOOP_HOME/hadoop-hdfs-project" -name "*.jar" -print0) export CLASSPATH=$HADOOP_CONF_DIR:$CLASSPATH export PATH=$FUSEDFS_PATH:$PATH --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org