From c5518b42c6f5b3832a508eb302c34f84cf15b864 Mon Sep 17 00:00:00 2001 From: Ken Takagiwa Date: Wed, 16 Jul 2014 11:12:53 -0700 Subject: [PATCH] modified the code base on comment in https://github.com/tdas/spark/pull/10 --- core/pom.xml | 2 +- python/pyspark/streaming/__init__.py | 1 - python/pyspark/streaming/context.py | 5 +---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index 3ac830f2237f7..6d8be37037729 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent - 1.0.0 + 1.1.0-SNAPSHOT ../pom.xml diff --git a/python/pyspark/streaming/__init__.py b/python/pyspark/streaming/__init__.py index 719592912e80c..e69de29bb2d1d 100644 --- a/python/pyspark/streaming/__init__.py +++ b/python/pyspark/streaming/__init__.py @@ -1 +0,0 @@ -__author__ = 'ktakagiw' diff --git a/python/pyspark/streaming/context.py b/python/pyspark/streaming/context.py index c8ae9c4af85c9..40e9d98942e2e 100644 --- a/python/pyspark/streaming/context.py +++ b/python/pyspark/streaming/context.py @@ -1,6 +1,3 @@ -__author__ = 'ktakagiw' - - # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with @@ -41,7 +38,7 @@ class StreamingContext(object): """ - Main entry point for Spark functionality. A StreamingContext represents the + Main entry point for Spark Streaming functionality. A StreamingContext represents the connection to a Spark cluster, and can be used to create L{RDD}s and broadcast variables on that cluster. """