From de5bf18a1978230f8c32b6a4c514ce4b592e8d50 Mon Sep 17 00:00:00 2001 From: Josh Rosen Date: Thu, 7 Aug 2014 17:19:22 -0700 Subject: [PATCH] [SPARK-2913] Place our log4j.properties at the head of the classpath. --- bin/compute-classpath.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compute-classpath.sh b/bin/compute-classpath.sh index 16b794a1592e..f07ab6a96be3 100755 --- a/bin/compute-classpath.sh +++ b/bin/compute-classpath.sh @@ -28,7 +28,7 @@ FWDIR="$(cd `dirname $0`/..; pwd)" . $FWDIR/bin/load-spark-env.sh # Build up classpath -CLASSPATH="$SPARK_CLASSPATH:$SPARK_SUBMIT_CLASSPATH:$FWDIR/conf" +CLASSPATH="$FWDIR/conf/log4j.properties:$SPARK_CLASSPATH:$SPARK_SUBMIT_CLASSPATH:$FWDIR/conf" ASSEMBLY_DIR="$FWDIR/assembly/target/scala-$SCALA_VERSION"