Repository: spark
Updated Branches:
  refs/heads/master a8d86b080 -> e25b59344


SPARK-1445: compute-classpath should not print error if lib_managed not found

This was added to the check for the assembly jar, forgot it for the datanucleus 
jars.

Author: Aaron Davidson <aa...@databricks.com>

Closes #361 from aarondav/cc and squashes the following commits:

8facc16 [Aaron Davidson] SPARK-1445: compute-classpath should not print error 
if lib_managed not found


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/e25b5934
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/e25b5934
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/e25b5934

Branch: refs/heads/master
Commit: e25b593447a2e0aab9e5066f755e41be9068ecdc
Parents: a8d86b0
Author: Aaron Davidson <aa...@databricks.com>
Authored: Tue Apr 8 14:40:20 2014 -0700
Committer: Patrick Wendell <pwend...@gmail.com>
Committed: Tue Apr 8 14:40:20 2014 -0700

----------------------------------------------------------------------
 bin/compute-classpath.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/e25b5934/bin/compute-classpath.sh
----------------------------------------------------------------------
diff --git a/bin/compute-classpath.sh b/bin/compute-classpath.sh
index be37102..2a2bb37 100755
--- a/bin/compute-classpath.sh
+++ b/bin/compute-classpath.sh
@@ -63,7 +63,7 @@ fi
 # built with Hive, so first check if the datanucleus jars exist, and then 
ensure the current Spark
 # assembly is built for Hive, before actually populating the CLASSPATH with 
the jars.
 # Note that this check order is faster (by up to half a second) in the case 
where Hive is not used.
-num_datanucleus_jars=$(ls "$FWDIR"/lib_managed/jars/ | grep 
"datanucleus-.*\\.jar" | wc -l)
+num_datanucleus_jars=$(ls "$FWDIR"/lib_managed/jars/ 2>/dev/null | grep 
"datanucleus-.*\\.jar" | wc -l)
 if [ $num_datanucleus_jars -gt 0 ]; then
   AN_ASSEMBLY_JAR=${ASSEMBLY_JAR:-$DEPS_ASSEMBLY_JAR}
   num_hive_files=$(jar tvf "$AN_ASSEMBLY_JAR" org/apache/hadoop/hive/ql/exec 
2>/dev/null | wc -l)

Reply via email to