Skip to content

Commit fa1ae38

Browse files
committed
proto: remove default values
Let the user decide the value. #179 (comment) Signed-off-by: Vincent Batts <[email protected]>
1 parent eb48ef2 commit fa1ae38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proto/config.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ message Spec {
77
// Version is the version of the specification that is supported.
88
optional string version = 1;
99
// Platform is the host information for OS and Arch.
10-
optional Platform platform = 2; // [default=77];
10+
optional Platform platform = 2;
1111
// Process is the container's main process.
1212
optional Process process = 3;
1313
// Root is the root information for the container's filesystem.
@@ -69,7 +69,7 @@ enum PlatformType {
6969
message User {
7070
// Type so that receivers of this message can `switch` for the fields
7171
// expected
72-
optional PlatformType type = 1 [default = LINUX];
72+
optional PlatformType type = 1;
7373

7474
optional LinuxUser linux_type = 2;
7575
}

0 commit comments

Comments
 (0)