Skip to content

Commit 716ab56

Browse files
committed
proto/config: Explicit linux user message
Signed-off-by: Vincent Batts <[email protected]>
1 parent c57abfc commit 716ab56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proto/config.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ enum PlatformType {
6464
message User {
6565
// Type so that receivers of this message can `switch` for the fields expected
6666
optional PlatformType Type = 1 [default = LINUX];
67-
// LinuxUserFields are to be used when Type is LINUX
68-
optional linuxUserFields LinuxUserFields = 2;
67+
68+
optional LinuxUser LinuxUser = 2;
6969
}
7070

7171
// User specifies linux specific user and group information for the container's
7272
// main process.
73-
message linuxUserFields {
73+
message LinuxUser {
7474
// UID is the user id.
7575
optional int32 UID = 1;
7676
// GID is the group id.

0 commit comments

Comments
 (0)