Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: fahed dorgaa <fahed.dorgaa@gmail.com>
  • Loading branch information
fahedouch committed Apr 1, 2024
1 parent 0270677 commit c84d44b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/containerd-shim-runc-v2/process/io.go
Expand Up @@ -111,7 +111,8 @@ func createIO(ctx context.Context, id string, ioUID, ioGID int, stdio stdio.Stdi
case "binary":
pio.io, err = NewBinaryIO(ctx, id, u)
case "attachablebinary":
fifoSet, err := newAttachableBinaryIO(ctx, id, u)
var fifoSet *cio.FIFOSet
fifoSet, err = newAttachableBinaryIO(ctx, id, u)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit c84d44b

Please sign in to comment.