aboutsummaryrefslogtreecommitdiff
path: root/python/run-tests.py
diff options
context:
space:
mode:
authorTathagata Das <tathagata.das1565@gmail.com>2015-08-11 12:02:28 -0700
committerTathagata Das <tathagata.das1565@gmail.com>2015-08-11 12:02:28 -0700
commit5b8bb1b213b8738f563fcd00747604410fbb3087 (patch)
tree9bb4f60b2b23b529a20754c028b419a82550a961 /python/run-tests.py
parentdbd778d84d094ca142bc08c351478595b280bc2a (diff)
downloadspark-5b8bb1b213b8738f563fcd00747604410fbb3087.tar.gz
spark-5b8bb1b213b8738f563fcd00747604410fbb3087.tar.bz2
spark-5b8bb1b213b8738f563fcd00747604410fbb3087.zip
[SPARK-9572] [STREAMING] [PYSPARK] Added StreamingContext.getActiveOrCreate() in Python
Author: Tathagata Das <tathagata.das1565@gmail.com> Closes #8080 from tdas/SPARK-9572 and squashes the following commits: 64a231d [Tathagata Das] Fix based on comments 741a0d0 [Tathagata Das] Fixed style f4f094c [Tathagata Das] Tweaked test 9afcdbe [Tathagata Das] Merge remote-tracking branch 'apache-github/master' into SPARK-9572 e21488d [Tathagata Das] Minor update 1a371d9 [Tathagata Das] Addressed comments. 60479da [Tathagata Das] Fixed indent 9c2da9c [Tathagata Das] Fixed bugs b5bd32c [Tathagata Das] Merge remote-tracking branch 'apache-github/master' into SPARK-9572 b55b348 [Tathagata Das] Removed prints 5781728 [Tathagata Das] Fix style issues b711214 [Tathagata Das] Reverted run-tests.py 643b59d [Tathagata Das] Revert unnecessary change 150e58c [Tathagata Das] Added StreamingContext.getActiveOrCreate() in Python
Diffstat (limited to 'python/run-tests.py')
-rwxr-xr-xpython/run-tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/run-tests.py b/python/run-tests.py
index cc56077937..fd56c7ab6e 100755
--- a/python/run-tests.py
+++ b/python/run-tests.py
@@ -158,7 +158,7 @@ def main():
else:
log_level = logging.INFO
logging.basicConfig(stream=sys.stdout, level=log_level, format="%(message)s")
- LOGGER.info("Running PySpark tests. Output is in python/%s", LOG_FILE)
+ LOGGER.info("Running PySpark tests. Output is in %s", LOG_FILE)
if os.path.exists(LOG_FILE):
os.remove(LOG_FILE)
python_execs = opts.python_executables.split(',')