Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: kaihsun <[email protected]>
  • Loading branch information
kevin85421 committed Nov 23, 2024
1 parent 56413d2 commit 518171e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions python/ray/scripts/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,13 @@ def debug(address: str, verbose: bool):
type=str,
help="a JSON serialized dictionary mapping label name to label value.",
)
@click.option(
"--include-log-monitor",
default=None,
type=bool,
help="If set to True or left unset, a log monitor will start to monitor "
"the log files of all processes on this node and push their contents to GCS.",
)
@add_click_logging_options
@PublicAPI
def start(
Expand Down Expand Up @@ -668,6 +675,7 @@ def start(
ray_debugger_external,
disable_usage_stats,
labels,
include_log_monitor,
):
"""Start Ray processes manually on the local machine."""

Expand Down Expand Up @@ -757,6 +765,7 @@ def start(
no_monitor=no_monitor,
tracing_startup_hook=tracing_startup_hook,
ray_debugger_external=ray_debugger_external,
include_log_monitor=include_log_monitor,
)

if ray_constants.RAY_START_HOOK in os.environ:
Expand Down

0 comments on commit 518171e

Please sign in to comment.