aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuciano Resende <lresende@apache.org>2017-01-10 06:52:47 -0800
committerLuciano Resende <lresende@apache.org>2017-01-10 06:52:47 -0800
commitc6e4afd739a0b157aabc728e3153888eb554d682 (patch)
tree445f91dcb2977ae3f171d18f3210efe03ec14da8
parentd62dae86a5671bfca765eaadcbc989a3d73b2f03 (diff)
downloadtoree-gateway-c6e4afd739a0b157aabc728e3153888eb554d682.tar.gz
toree-gateway-c6e4afd739a0b157aabc728e3153888eb554d682.tar.bz2
toree-gateway-c6e4afd739a0b157aabc728e3153888eb554d682.zip
Update kernel name to Toree Proxy Kernel
-rw-r--r--kernel.json4
-rw-r--r--python/setup.py6
-rw-r--r--python/toree_kernel.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/kernel.json b/kernel.json
index 3294399..5169f26 100644
--- a/kernel.json
+++ b/kernel.json
@@ -2,10 +2,10 @@
"language_info": {
"name": "scala"
},
- "display_name": "Toree Client Kernel",
+ "display_name": "Toree Client Proxy Kernel",
"argv": [
"python",
- "/Users/bburns/toree_client/python/toree_kernel.py",
+ "/opt/toree_proxy/python/toree_proxy_kernel.py",
"-f",
"{connection_file}"
],
diff --git a/python/setup.py b/python/setup.py
index 307fcd4..eed2f4b 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -1,11 +1,11 @@
from setuptools import setup
-setup(name='toree_kernel',
+setup(name='toree_proxy_kernel',
version='0.1',
- description='Toree Client Kernel',
+ description='Toree Client Proxy Kernel',
long_description='A simple echo kernel for Jupyter/IPython, based on MetaKernel',
- py_modules=['toree_kernel'],
+ py_modules=['toree_proxy_kernel'],
install_requires=['metakernel', 'py4j'],
classifiers = [
'Framework :: IPython',
diff --git a/python/toree_kernel.py b/python/toree_kernel.py
index 9734ffa..fd30d6b 100644
--- a/python/toree_kernel.py
+++ b/python/toree_kernel.py
@@ -71,7 +71,7 @@ class ToreeKernel(MetaKernel):
def Error(self, output):
if not output:
return
-
+
super(ToreeKernel, self).Error(output)
def handle_output(self, fd, fn):