Skip to content

Commit 64a231d

Browse files
committed
Fix based on comments
1 parent 741a0d0 commit 64a231d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/streaming/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def tearDown(self):
7474
# Clean up in the JVM just in case there has been some issues in Python API
7575
jStreamingContextOption = StreamingContext._jvm.SparkContext.getActive()
7676
if jStreamingContextOption.nonEmpty():
77-
jStreamingContextOption.get().stop(false)
77+
jStreamingContextOption.get().stop(False)
7878

7979
def wait_for(self, result, n):
8080
start_time = time.time()

0 commit comments

Comments
 (0)