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

[docs] fix PipesRayJobClient docstrings #56

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion dagster_ray/pipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ class PipesRayJobClient(PipesClient, TreatAsResourceParam):
Starts the job directly on the Ray cluster and reads the logs from the job.

Args:
client (JobSubmissionClient): The Ray job submission client
context_injector (Optional[PipesContextInjector]): A context injector to use to inject
context into the Ray job. Defaults to :py:class:`PipesEnvContextInjector`.
message_reader (Optional[PipesMessageReader]): A message reader to use to read messages
from the glue job run. Defaults to :py:class:`PipesRayJobMessageReader`.
client (Optional[boto3.client]): The Kubernetes API client.
forward_termination (bool): Whether to cancel the `RayJob` job run when the Dagster process receives a termination signal.
timeout (int): Timeout for various internal interactions with the Kubernetes RayJob.
poll_interval (int): Interval at which to poll the Kubernetes for status updates.
Expand Down
Loading