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

[Serve] Remove EXPERIMENTAL inside the comments for user config #26521

Merged
merged 1 commit into from
Jul 18, 2022
Merged
Show file tree
Hide file tree
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 python/ray/serve/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def deployment(
catch-all.
ray_actor_options: Options to be passed to the Ray actor
constructor such as resource requirements.
user_config (Optional[Any]): [experimental] Config to pass to the
user_config (Optional[Any]): Config to pass to the
reconfigure method of the deployment. This can be updated
dynamically without changing the version of the deployment and
restarting its replicas. The user_config needs to be hashable to
Expand Down
2 changes: 1 addition & 1 deletion python/ray/serve/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class DeploymentSchema(
user_config: Dict = Field(
default=None,
description=(
"[EXPERIMENTAL] Config to pass into this deployment's "
"Config to pass into this deployment's "
"reconfigure method. This can be updated dynamically "
"without restarting replicas"
),
Expand Down