Skip to content

Commit

Permalink
case class signature changed
Browse files Browse the repository at this point in the history
  • Loading branch information
sllynn committed Nov 29, 2024
1 parent 6c9d477 commit 58c3ba5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .github/actions/scala_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,8 @@ runs:
if: inputs.skip_tests == 'false'
shell: bash
run: |
readlink -f $(which python3)
source /databricks/python3/bin/activate
readlink -f $(which python3)
echo $PATH
/databricks/python3/bin/python3 -c 'import numpy as np; print(np.__version__)'
python3 -c 'import numpy as np; print(np.__version__)'
sudo mvn -q clean install
- name: Build the scala JAR - skip tests is true
Expand Down
3 changes: 2 additions & 1 deletion python/mosaic/core/library_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def auto_attach_enabled(self) -> bool:
if self._auto_attached_enabled is None:
try:
result = (
self.spark.conf.get("spark.databricks.labs.mosaic.jar.autoattach")
self.spark.conf.get("spark.databricks.labs.mosaic.jar.autoattach", "true")
== "true"
)
except Py4JJavaError as e:
Expand Down Expand Up @@ -94,6 +94,7 @@ def auto_attach(self):
NoVersionModule.simpleString(),
optionModule.apply(None),
optionModule.apply(None),
optionModule.apply(None),
)
except:
lib = JavaJarId(
Expand Down

0 comments on commit 58c3ba5

Please sign in to comment.