Skip to content

Commit

Permalink
Trying to set a null prefix a little differently
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Nov 8, 2023
1 parent 7ccf565 commit 9dc1aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask_databricks/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run():

if DB_IS_DRIVER == "TRUE":
log.info("This node is the Dask scheduler.")
subprocess.Popen(["dask", "scheduler", "--dashboard-prefix", "", "--dashboard-address", ":8787,:8087"])
subprocess.Popen(["bash", "-c", "dask scheduler --dashboard-prefix '' --dashboard-address :8787,:8087"])
else:
log.info("This node is a Dask worker.")
log.info(f"Connecting to Dask scheduler at {DB_DRIVER_IP}:8786")
Expand Down

0 comments on commit 9dc1aff

Please sign in to comment.