forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Serve] Relaxed input Serve config's schemas to allow extra params (r…
…ay-project#38748) * Relaxed input Serve config's schemas to allow extra params Signed-off-by: Alexey Kudinkin <ak@anyscale.com> * Adjusted for `DeploymentSchema`, `RayActorOptionsSchema` Signed-off-by: Alexey Kudinkin <ak@anyscale.com> * Enabled forward-compatibility for internal configs (`DeploymentConfig`, `HTTPOptions`) Signed-off-by: Alexey Kudinkin <ak@anyscale.com>
- Loading branch information
1 parent
f6c7dd9
commit dd41535
Showing
7 changed files
with
76 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
python/ray/serve/tests/test_config_files/bad_single_config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import_path: ray.serve.tests.test_config_files.test_dag.conditional_dag.serve_dag | ||
# Import path is a required field | ||
import_path: | ||
|
||
deployments: | ||
|
||
- name: Multiplier | ||
user_config: | ||
factor: 1 | ||
factor: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters