Skip to content

Commit

Permalink
Remove Dashboard port 8787 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson authored Nov 20, 2023
1 parent dabb3df commit 8f810bd
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 @@ -48,7 +48,7 @@ def run(worker_command, worker_args, cuda):

if DB_IS_DRIVER == "TRUE":
log.info("This node is the Dask scheduler.")
scheduler_process = subprocess.Popen(["dask", "scheduler", "--dashboard-address", ":8787,:8087"])
scheduler_process = subprocess.Popen(["dask", "scheduler", "--dashboard-address", ":8087"])
time.sleep(5) # give the scheduler time to start
if scheduler_process.poll() is not None:
log.error("Scheduler process has exited prematurely.")
Expand Down

0 comments on commit 8f810bd

Please sign in to comment.