-
Notifications
You must be signed in to change notification settings - Fork 269
Move hcsshim/main to containerd v2.1.2 and update CIs to WS2025 #2425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
2adfd99
to
8b91059
Compare
832e200
to
75dd87a
Compare
cc93904
to
4836058
Compare
4836058
to
ff0de5d
Compare
a99afdc
to
aea85ca
Compare
fab30fd
to
7d62265
Compare
7d62265
to
f3a3f7b
Compare
@@ -225,13 +225,13 @@ func (s *service) pidsInternal(ctx context.Context, req *task.PidsRequest) (*tas | |||
} | |||
processes := make([]*containerd_v1_types.ProcessInfo, len(pids)) | |||
for i, p := range pids { | |||
a, err := typeurl.MarshalAny(p) | |||
a, err := anypb.New(p) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we not need set the TypeUrl
field to "typeurl".TypeURL
, since I think that URL is different from the default that anypb
sets
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm I thought containerd/typeurl was also now defaulting to anypb prefixes. Let me check
@@ -183,6 +184,24 @@ The start command can either start a new shim or return an address to an existin | |||
}, | |||
} | |||
|
|||
// writeAddress writes a address file atomically |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// writeAddress writes a address file atomically | |
// writeAddress writes an address file atomically |
Signed-off-by: Kirtana Ashok <kiashok@microsoft.com>
f3a3f7b
to
4c9d1c0
Compare
Move hcsshim/main to containerd v2.1.2 and resolve dependencies.
Move CIs to WS2022 and WS2025.