aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/python/wordcount.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/src/main/python/wordcount.py')
-rwxr-xr-xexamples/src/main/python/wordcount.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/src/main/python/wordcount.py b/examples/src/main/python/wordcount.py
index dcc095fdd0..ae6cd13b83 100755
--- a/examples/src/main/python/wordcount.py
+++ b/examples/src/main/python/wordcount.py
@@ -33,3 +33,5 @@ if __name__ == "__main__":
output = counts.collect()
for (word, count) in output:
print "%s: %i" % (word, count)
+
+ sc.stop()