From c550fc1472510a71ba189f626621783b32a37b88 Mon Sep 17 00:00:00 2001 From: Ramiz Dundar Date: Mon, 20 Nov 2023 23:26:13 -0500 Subject: [PATCH] Fix hostname --- compiler/dspash/hdfs_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/dspash/hdfs_utils.py b/compiler/dspash/hdfs_utils.py index cc9ece00a..c6758cfa6 100644 --- a/compiler/dspash/hdfs_utils.py +++ b/compiler/dspash/hdfs_utils.py @@ -7,7 +7,7 @@ # if you are running this outside of the docker container # you may want to change this to localhost for testing -host = "localhost" +host = "namenode" port = "9870" daemon_quit = Event()