Skip to content

Commit f570d8a

Browse files
Remove create_time from update request
Signed-off-by: Stefan Brus <[email protected]>
1 parent 19b8065 commit f570d8a

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# Release notes
2+
3+
- The field `create_time` has been removed from update requests.

proto/frequenz/api/dispatch/dispatch.proto

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,12 @@ message DispatchUpdateRequest {
189189
// The component selector
190190
DispatchComponentSelector selector = 6;
191191

192-
// The creation time
193-
google.protobuf.Timestamp create_time = 7;
194-
195192
// The "active" status
196-
optional bool is_active = 8;
193+
optional bool is_active = 7;
197194

198195
// The "dry run" status
199-
optional bool is_dry_run = 9;
196+
optional bool is_dry_run = 8;
200197

201198
// The dispatch payload
202-
google.protobuf.Struct payload = 10;
199+
google.protobuf.Struct payload = 9;
203200
}

0 commit comments

Comments
 (0)