[Projects] Fix template path (#5716)

This commit is contained in:
Philipp Moritz
2019-09-16 19:58:54 -07:00
committed by Robert Nishihara
parent b1aadd863b
commit a6dd794818
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -803,9 +803,9 @@ filegroup(
"python/ray/internal/*.py",
"python/ray/projects/*.py",
"python/ray/projects/schema.json",
"python/ray/projects/template/cluster_template.yaml",
"python/ray/projects/template/project_template.yaml",
"python/ray/projects/template/requirements.txt",
"python/ray/projects/templates/cluster_template.yaml",
"python/ray/projects/templates/project_template.yaml",
"python/ray/projects/templates/requirements.txt",
"python/ray/workers/default_worker.py",
]),
)
+3 -3
View File
@@ -47,9 +47,9 @@ ray_autoscaler_files = [
]
ray_project_files = [
"ray/projects/schema.json", "ray/projects/template/cluster_template.yaml",
"ray/projects/template/project_template.yaml",
"ray/projects/template/requirements.txt"
"ray/projects/schema.json", "ray/projects/templates/cluster_template.yaml",
"ray/projects/templates/project_template.yaml",
"ray/projects/templates/requirements.txt"
]
if "RAY_USE_NEW_GCS" in os.environ and os.environ["RAY_USE_NEW_GCS"] == "on":