Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --dashboard/--no-dashboard flag and enable by default #127

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions dask_mpi/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@
default=None,
help="JSON serialised dict of options to pass to workers",
)
@click.option(
"--dashboard/--no-dashboard",
"dashboard",
default=True,
required=False,
help="Launch the Dashboard [default: --dashboard]",
)
@click.option(
"--dashboard-address",
type=str,
Expand All @@ -88,6 +95,7 @@ def main(
local_directory,
memory_limit,
scheduler,
dashboard,
dashboard_address,
nanny,
worker_class,
Expand Down Expand Up @@ -118,6 +126,7 @@ async def run_scheduler():
async with Scheduler(
interface=interface,
protocol=protocol,
dashboard=dashboard,
dashboard_address=dashboard_address,
scheduler_file=scheduler_file,
port=scheduler_port,
Expand Down
Loading