:wave: Hello friends! - I am building and testing ...
# troubleshoot
b
👋 Hello friends! - I am building and testing datahub locally and recently the
spark-lineage
smoke tests fail because of a difference in the browse path. I am working off the main branch with only a few slight fixes to get the test to run (see diff). I am wondering if the golden json files might be out of date from what is expected or if something else is off. For example the tests expected this
Copy code
'com.linkedin.common.BrowsePaths': {
					'paths': ['/spark/spark_spark-master_7077/pythonhdfsin2hivecreatetable']
				}
however the actual looks like this with the
/pythonhdfsin2hivecreatetable
part missing.
Copy code
'com.linkedin.common.BrowsePaths': {
					'paths': ['/spark/spark_spark-master_7077']
				}
the part that is missing is seen in the properties as
appName
so ... maybe I should update the expected golden json?
This is the only diff off the main branch.
Copy code
diff --git a/docker/docker-compose.dev.yml b/docker/docker-compose.dev.yml
index e8b11c4e95..dc59ee81d2 100644
--- a/docker/docker-compose.dev.yml
+++ b/docker/docker-compose.dev.yml
@@ -52,8 +52,8 @@ services:
   datahub-frontend-react:
     image: linkedin/datahub-frontend-react:debug
     build:
-      context: datahub-frontend
-      dockerfile: Dockerfile
+      context: ../
+      dockerfile: ./docker/datahub-frontend/Dockerfile
       args:
         APP_ENV: dev
     volumes:
diff --git a/metadata-integration/java/spark-lineage/spark-smoke-test/setup_spark_smoke_test.sh b/metadata-integration/java/spark-lineage/spark-smoke-test/setup_spark_smoke_test.sh
index d721027149..6572ffa0f5 100755
--- a/metadata-integration/java/spark-lineage/spark-smoke-test/setup_spark_smoke_test.sh
+++ b/metadata-integration/java/spark-lineage/spark-smoke-test/setup_spark_smoke_test.sh
@@ -1,5 +1,6 @@
 #!/bin/bash
 
+set -e
 pip install -r requirements.txt
 
 echo "--------------------------------------------------------------------"
diff --git a/metadata-integration/java/spark-lineage/spark-smoke-test/smoke.sh b/metadata-integration/java/spark-lineage/spark-smoke-test/smoke.sh
index 5be37d2825..b8622a55b0 100755
--- a/metadata-integration/java/spark-lineage/spark-smoke-test/smoke.sh
+++ b/metadata-integration/java/spark-lineage/spark-smoke-test/smoke.sh
@@ -1,5 +1,6 @@
 #!/bin/bash
 
+set -e
 
 # Script assumptions:
 #   - The gradle build has already been run.