Skip to content

Commit 9e5bda9

Browse files
committed
Refactor create_spark_dev function and update API request in startup.py
1 parent 7a3f1c4 commit 9e5bda9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/notebook/startup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def __init__(self, spark_session):
8484
self._spark_session = spark_session
8585
self.history_server_base_url = "http://localhost:18080"
8686

87-
self.response = requests.get("http://llocalhost:5002/spark_app/config").json()
87+
self.response = requests.get("http://localhost:5002/spark_app/config")
8888

8989
def __getattr__(self, name):
9090
return getattr(self._spark_session, name)

0 commit comments

Comments
 (0)