Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 8d77c78

Browse files
committed
fix import
1 parent dd6a9bc commit 8d77c78

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

protos/flyteidl/plugins/ray.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
syntax = "proto3";
22

3-
import "flyteidl/core/tasks.proto";
4-
53
package flyteidl.plugins;
64

75
option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
86

7+
import "flyteidl/core/tasks.proto";
8+
99
// RayJobSpec defines the desired state of RayJob
1010
message RayJob {
1111
// RayClusterSpec is the cluster template to run the job
@@ -31,7 +31,7 @@ message HeadGroupSpec {
3131
// Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start
3232
map<string, string> ray_start_params = 1;
3333
// Resource specification for ray head pod
34-
Resources resources = 6;
34+
core.Resources resources = 6;
3535
}
3636

3737
// WorkerGroupSpec are the specs for the worker pods
@@ -48,5 +48,5 @@ message WorkerGroupSpec {
4848
// Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start
4949
map<string, string> ray_start_params = 5;
5050
// Resource specification for ray worker pods
51-
Resources resources = 6;
51+
core.Resources resources = 6;
5252
}

0 commit comments

Comments
 (0)