We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b8065 commit f570d8aCopy full SHA for f570d8a
RELEASE_NOTES.md
@@ -1 +1,3 @@
1
# Release notes
2
+
3
+- The field `create_time` has been removed from update requests.
proto/frequenz/api/dispatch/dispatch.proto
@@ -189,15 +189,12 @@ message DispatchUpdateRequest {
189
// The component selector
190
DispatchComponentSelector selector = 6;
191
192
- // The creation time
193
- google.protobuf.Timestamp create_time = 7;
194
-
195
// The "active" status
196
- optional bool is_active = 8;
+ optional bool is_active = 7;
197
198
// The "dry run" status
199
- optional bool is_dry_run = 9;
+ optional bool is_dry_run = 8;
200
201
// The dispatch payload
202
- google.protobuf.Struct payload = 10;
+ google.protobuf.Struct payload = 9;
203
}
0 commit comments