Skip to content

Commit 09149bc

Browse files
Move create_time to end of dispatch message and clarify docs
Signed-off-by: Stefan Brus <[email protected]>
1 parent f570d8a commit 09149bc

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

proto/frequenz/api/dispatch/dispatch.proto

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,18 @@ message Dispatch {
6565
// The component selector
6666
DispatchComponentSelector selector = 6;
6767

68-
// The creation time
69-
google.protobuf.Timestamp create_time = 7;
70-
7168
// The "active" status
72-
bool is_active = 8;
69+
bool is_active = 7;
7370

7471
// The "dry run" status
75-
bool is_dry_run = 9;
72+
bool is_dry_run = 8;
7673

7774
// The dispatch payload
78-
google.protobuf.Struct payload = 10;
75+
google.protobuf.Struct payload = 9;
76+
77+
// The creation time
78+
// This is set when a dispatch is created via the create request message
79+
google.protobuf.Timestamp create_time = 10;
7980
}
8081

8182
// Filter parameter for specifying multiple time intervals

0 commit comments

Comments
 (0)