aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
Diffstat (limited to 'run')
-rwxr-xr-xrun7
1 files changed, 0 insertions, 7 deletions
diff --git a/run b/run
index cb1499c6f9..15db23bbe0 100755
--- a/run
+++ b/run
@@ -19,12 +19,6 @@ if [ -z "$SCALA_HOME" ]; then
exit 1
fi
-# If the user specifies a Mesos JAR, put it before our included one on the classpath
-MESOS_CLASSPATH=""
-if [ -n "$MESOS_JAR" ] ; then
- MESOS_CLASSPATH="$MESOS_JAR"
-fi
-
# Figure out how much memory to use per executor and set it as an environment
# variable so that our process sees it and can report it to Mesos
if [ -z "$SPARK_MEM" ] ; then
@@ -49,7 +43,6 @@ BAGEL_DIR="$FWDIR/bagel"
# Build up classpath
CLASSPATH="$SPARK_CLASSPATH"
-CLASSPATH+=":$MESOS_CLASSPATH"
CLASSPATH+=":$FWDIR/conf"
CLASSPATH+=":$CORE_DIR/target/scala-$SCALA_VERSION/classes"
if [ -n "$SPARK_TESTING" ] ; then