Skip to content

Commit

Permalink
Rename Ray dashboard address option to host in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandr Movchan committed Nov 21, 2024
1 parent ed8a4dc commit ed16a5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aana/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def load_app(app_path: str):
help="Address of the Ray cluster (default: auto)",
)
@click.option(
"--ray-dashboard-address",
"--ray-dashboard-host",
default="127.0.0.1",
type=str,
help=(
Expand All @@ -77,7 +77,7 @@ def deploy(
port: int,
hide_logs: bool,
ray_address: str,
ray_dashboard_address: str,
ray_dashboard_host: str,
ray_dashboard_port: int,
skip_migrations: bool,
):
Expand All @@ -94,7 +94,7 @@ def deploy(
host=host,
show_logs=show_logs,
address=ray_address,
dashboard_address=ray_dashboard_address,
dashboard_host=ray_dashboard_host,
dashboard_port=ray_dashboard_port,
)
with contextlib.suppress(
Expand Down

0 comments on commit ed16a5d

Please sign in to comment.