aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark
diff options
context:
space:
mode:
authorPrashant Sharma <prashant.s@imaginea.com>2014-01-03 15:08:01 +0530
committerPrashant Sharma <prashant.s@imaginea.com>2014-01-03 15:08:01 +0530
commit74ba97fcf75ae61833295a896dcdf775036ae1d8 (patch)
tree16f41168924ac81c0c0b25c3286b2242704ecc2e /python/pyspark
parent59e8009b8d5e51b6f776720de8c9ecb09e1072dc (diff)
downloadspark-74ba97fcf75ae61833295a896dcdf775036ae1d8.tar.gz
spark-74ba97fcf75ae61833295a896dcdf775036ae1d8.tar.bz2
spark-74ba97fcf75ae61833295a896dcdf775036ae1d8.zip
sbin/spark-class* -> bin/spark-class*
Diffstat (limited to 'python/pyspark')
-rw-r--r--python/pyspark/java_gateway.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyspark/java_gateway.py b/python/pyspark/java_gateway.py
index 7243ee6861..c15add5237 100644
--- a/python/pyspark/java_gateway.py
+++ b/python/pyspark/java_gateway.py
@@ -31,7 +31,7 @@ def launch_gateway():
# Launch the Py4j gateway using Spark's run command so that we pick up the
# proper classpath and SPARK_MEM settings from spark-env.sh
on_windows = platform.system() == "Windows"
- script = "./sbin/spark-class.cmd" if on_windows else "./sbin/spark-class"
+ script = "./bin/spark-class.cmd" if on_windows else "./bin/spark-class"
command = [os.path.join(SPARK_HOME, script), "py4j.GatewayServer",
"--die-on-broken-pipe", "0"]
if not on_windows: