Skip to content

Commit 772644e

Browse files
committed
Fixes containerd-shim-runhcs State on exec id
Signed-off-by: Justin Terry (VM) <[email protected]>
1 parent 83437ef commit 772644e

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

runtime/v2/runhcs/service.go

+19-7
Original file line numberDiff line numberDiff line change
@@ -204,14 +204,26 @@ func (s *service) State(ctx context.Context, r *taskAPI.StateRequest) (*taskAPI.
204204
return nil, err
205205
}
206206

207-
rhcs := newRunhcs(p.bundle)
208-
cs, err := rhcs.State(ctx, p.id)
209-
if err != nil {
210-
return nil, err
207+
var tstatus string
208+
209+
// This is a container
210+
if p.cid == p.id {
211+
rhcs := newRunhcs(p.bundle)
212+
cs, err := rhcs.State(ctx, p.id)
213+
if err != nil {
214+
return nil, err
215+
}
216+
tstatus = cs.Status
217+
} else {
218+
if p.started {
219+
tstatus = "running"
220+
} else {
221+
tstatus = "created"
222+
}
211223
}
212224

213225
status := task.StatusUnknown
214-
switch cs.Status {
226+
switch tstatus {
215227
case "created":
216228
status = task.StatusCreated
217229
case "running":
@@ -224,8 +236,8 @@ func (s *service) State(ctx context.Context, r *taskAPI.StateRequest) (*taskAPI.
224236
pe := p.stat()
225237
return &taskAPI.StateResponse{
226238
ID: p.id,
227-
Bundle: cs.Bundle,
228-
Pid: uint32(cs.InitProcessPid),
239+
Bundle: p.bundle,
240+
Pid: p.pid,
229241
Status: status,
230242
Stdin: p.stdin,
231243
Stdout: p.stdout,

0 commit comments

Comments
 (0)