Skip to content

Commit 80b825c

Browse files
author
Kazuyoshi Kato
committed
Remove gogoproto.stdtime
This commit removes gogoproto.stdtime, since it is not supported by Google's official toolchain (see #6564). Signed-off-by: Kazuyoshi Kato <[email protected]>
1 parent 26a3ab4 commit 80b825c

71 files changed

Lines changed: 1803 additions & 1594 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

api/events/task.pb.go

Lines changed: 93 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/events/task.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ message TaskDelete {
4444
string container_id = 1;
4545
uint32 pid = 2;
4646
uint32 exit_status = 3;
47-
google.protobuf.Timestamp exited_at = 4 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
47+
google.protobuf.Timestamp exited_at = 4;
4848
// id is the specific exec. By default if omitted will be `""` thus matches
4949
// the init exec of the task matching `container_id`.
5050
string id = 5;
@@ -62,7 +62,7 @@ message TaskExit {
6262
string id = 2;
6363
uint32 pid = 3;
6464
uint32 exit_status = 4;
65-
google.protobuf.Timestamp exited_at = 5 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
65+
google.protobuf.Timestamp exited_at = 5;
6666
}
6767

6868
message TaskOOM {

0 commit comments

Comments
 (0)