We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce968ca commit 33d85ecCopy full SHA for 33d85ec
docker/notebook/startup.py
@@ -6,6 +6,7 @@
6
from IPython.display import *
7
from kubernetes import client, config
8
import requests
9
+import logging
10
11
environment = os.getenv('ENVIRONMENT', 'development') # Default to 'development' if not set
12
@@ -101,8 +102,9 @@ def _repr_html_(self):
101
102
"""
103
104
def create_spark_dev():
- response = requests.get("http://llocalhost:5002/directory/work/user_0@gmail.com/")
105
+ response = requests.get("http://localhost:5002/directory/work/user_0@gmail.com/")
106
print(response.json())
107
+ logging.info("Got response from server: %s", response.json())
108
109
spark = PawMarkSparkSession(SparkSession.builder \
110
.appName("PySpark Example") \
0 commit comments