From 8d77c786da2e2d827859f7302756cc4711e05ae9 Mon Sep 17 00:00:00 2001 From: Guozhen La Date: Tue, 8 Aug 2023 13:22:22 -0400 Subject: [PATCH] fix import --- protos/flyteidl/plugins/ray.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/protos/flyteidl/plugins/ray.proto b/protos/flyteidl/plugins/ray.proto index e3d872344..383a615e1 100644 --- a/protos/flyteidl/plugins/ray.proto +++ b/protos/flyteidl/plugins/ray.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -import "flyteidl/core/tasks.proto"; - package flyteidl.plugins; option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; +import "flyteidl/core/tasks.proto"; + // RayJobSpec defines the desired state of RayJob message RayJob { // RayClusterSpec is the cluster template to run the job @@ -31,7 +31,7 @@ message HeadGroupSpec { // Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start map ray_start_params = 1; // Resource specification for ray head pod - Resources resources = 6; + core.Resources resources = 6; } // WorkerGroupSpec are the specs for the worker pods @@ -48,5 +48,5 @@ message WorkerGroupSpec { // Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start map ray_start_params = 5; // Resource specification for ray worker pods - Resources resources = 6; + core.Resources resources = 6; }