aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorStephen Haberman <stephen@exigencecorp.com>2013-01-22 15:25:41 -0600
committerStephen Haberman <stephen@exigencecorp.com>2013-01-25 11:03:00 -0600
commit7dfb82a992d47491174d7929e31351d26cadfcda (patch)
tree3609d51aefa8b577a391b1797c36bd3a1d620146 /python
parent04bfee2d08a566c06ebb6278b56556e914814497 (diff)
downloadspark-7dfb82a992d47491174d7929e31351d26cadfcda.tar.gz
spark-7dfb82a992d47491174d7929e31351d26cadfcda.tar.bz2
spark-7dfb82a992d47491174d7929e31351d26cadfcda.zip
Replace old 'master' term with 'driver'.
Diffstat (limited to 'python')
-rw-r--r--python/pyspark/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyspark/tests.py b/python/pyspark/tests.py
index 46ab34f063..df7235756d 100644
--- a/python/pyspark/tests.py
+++ b/python/pyspark/tests.py
@@ -26,7 +26,7 @@ class PySparkTestCase(unittest.TestCase):
sys.path = self._old_sys_path
# To avoid Akka rebinding to the same port, since it doesn't unbind
# immediately on shutdown
- self.sc.jvm.System.clearProperty("spark.master.port")
+ self.sc.jvm.System.clearProperty("spark.driver.port")
class TestCheckpoint(PySparkTestCase):