Skip to content

Commit 752f765

Browse files
authored
Merge pull request #7217 from dwsutherland/rm-fam-task-proxies-6689
remove proxies from task/family data-store objects
1 parent 47751ff commit 752f765

File tree

6 files changed

+54
-92
lines changed

6 files changed

+54
-92
lines changed

changes.d/7217.break.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GraphQL API: removed `proxies` field from `Task` and `Family` types.

cylc/flow/data_messages.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ message PbJob {
164164
}
165165

166166
message PbTask {
167+
reserved 7;
167168
optional string stamp = 1;
168169
optional string id = 2;
169170
optional string name = 3;
170171
optional PbMeta meta = 4;
171172
optional float mean_elapsed_time = 5;
172173
optional int32 depth = 6;
173-
repeated string proxies = 7;
174174
repeated string namespace = 8;
175175
repeated string parents = 9;
176176
optional string first_parent = 10;
@@ -246,12 +246,12 @@ message PbTaskProxy {
246246
}
247247

248248
message PbFamily {
249+
reserved 6;
249250
optional string stamp = 1;
250251
optional string id = 2;
251252
optional string name = 3;
252253
optional PbMeta meta = 4;
253254
optional int32 depth = 5;
254-
repeated string proxies = 6;
255255
repeated string parents = 7;
256256
repeated string child_tasks = 8;
257257
repeated string child_families = 9;

0 commit comments

Comments
 (0)