mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
feat: "exec" command to start processes inside remote containers (#139)
This commit is contained in:
@@ -0,0 +1,303 @@
|
||||
package docker
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io"
|
||||
"log/slog"
|
||||
"os"
|
||||
"os/signal"
|
||||
|
||||
"github.com/moby/term"
|
||||
"github.com/psviderski/uncloud/internal/machine/api/pb"
|
||||
"github.com/psviderski/uncloud/pkg/api"
|
||||
"golang.org/x/sync/errgroup"
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
// ExecConfig contains options for executing a command in a container.
|
||||
type ExecConfig struct {
|
||||
// Container ID to execute the command in.
|
||||
ContainerID string
|
||||
// Exec configuration.
|
||||
Options api.ExecOptions
|
||||
}
|
||||
|
||||
// sendResizeRequest sends a terminal resize request to the exec stream.
|
||||
func sendResizeRequest(stream pb.Docker_ExecContainerClient, size *term.Winsize) error {
|
||||
slog.Debug("sending resize request", "width", size.Width, "height", size.Height)
|
||||
return stream.Send(
|
||||
&pb.ExecContainerRequest{
|
||||
Payload: &pb.ExecContainerRequest_Resize{
|
||||
Resize: &pb.ResizeEvent{
|
||||
Height: uint32(size.Height),
|
||||
Width: uint32(size.Width),
|
||||
},
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
// setupTerminal configures the terminal for interactive TTY sessions.
|
||||
// It checks if stdin is a terminal, sets it to raw mode, and sets up resize handling.
|
||||
// Returns a cleanup function to restore terminal state, or an error.
|
||||
func setupTerminal(ctx context.Context, stream pb.Docker_ExecContainerClient) (func(), error) {
|
||||
inFd, isTerminal := term.GetFdInfo(os.Stdin)
|
||||
if !isTerminal {
|
||||
return nil, fmt.Errorf("stdin is not a terminal")
|
||||
}
|
||||
|
||||
// Set terminal to raw mode
|
||||
oldState, err := term.SetRawTerminal(inFd)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("set raw terminal: %w", err)
|
||||
}
|
||||
|
||||
// Cleanup function
|
||||
restoreFunc := func() {
|
||||
_ = term.RestoreTerminal(inFd, oldState)
|
||||
}
|
||||
|
||||
// Set up resize handling
|
||||
if err := handleTerminalResize(ctx, inFd, stream); err != nil {
|
||||
restoreFunc()
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return restoreFunc, nil
|
||||
}
|
||||
|
||||
// handleTerminalResize sends initial window size and handles window resize signals for TTY sessions.
|
||||
func handleTerminalResize(ctx context.Context, inFd uintptr, stream pb.Docker_ExecContainerClient) error {
|
||||
// Handle window resize signals
|
||||
sigCh := make(chan os.Signal, 1)
|
||||
signal.Notify(sigCh, unix.SIGWINCH)
|
||||
|
||||
// Send initial window size
|
||||
if size, err := term.GetWinsize(inFd); err == nil {
|
||||
_ = sendResizeRequest(stream, size)
|
||||
}
|
||||
|
||||
go func() {
|
||||
defer signal.Stop(sigCh)
|
||||
for {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
return
|
||||
case <-sigCh:
|
||||
size, err := term.GetWinsize(inFd)
|
||||
if err != nil {
|
||||
slog.Debug("get window size", "error", err)
|
||||
continue
|
||||
}
|
||||
if err = sendResizeRequest(stream, size); err != nil {
|
||||
slog.Debug("send resize request", "error", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// handleClientInputStream reads from stdin and sends data to the remote server.
|
||||
// It also periodically checks for context cancellation to exit gracefully when e.g.
|
||||
// the output stream is closed.
|
||||
func handleClientInputStream(ctx context.Context, stream pb.Docker_ExecContainerClient, stdin io.Reader) error {
|
||||
slog.Debug("Input goroutine started")
|
||||
defer slog.Debug("Input goroutine exited")
|
||||
|
||||
defer stream.CloseSend()
|
||||
|
||||
// Channel to receive stdin data
|
||||
stdinCh := make(chan []byte)
|
||||
|
||||
stdinErrCh := make(chan error, 1)
|
||||
|
||||
// Read from stdin in a separate goroutine
|
||||
// Note: this goroutine may continue blocking on Read even after we exit from the function,
|
||||
// but that's OK - it will eventually unblock when data arrives or stdin closes.
|
||||
go func() {
|
||||
buf := make([]byte, 32*1024) // 32KB buffer
|
||||
for {
|
||||
n, err := stdin.Read(buf)
|
||||
if n > 0 {
|
||||
data := make([]byte, n)
|
||||
copy(data, buf[:n])
|
||||
select {
|
||||
case stdinCh <- data:
|
||||
case <-ctx.Done():
|
||||
slog.Debug("stdin reader exiting due to context done")
|
||||
return
|
||||
}
|
||||
}
|
||||
if err != nil {
|
||||
if err == io.EOF {
|
||||
slog.Debug("stdin reader: EOF received")
|
||||
} else {
|
||||
slog.Debug("stdin reader error", "error", err)
|
||||
}
|
||||
stdinErrCh <- err
|
||||
return
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
// Send stdin data to the server or exit when context is cancelled
|
||||
for {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
return nil
|
||||
case data := <-stdinCh:
|
||||
if err := stream.Send(&pb.ExecContainerRequest{
|
||||
Payload: &pb.ExecContainerRequest_Stdin{Stdin: data},
|
||||
}); err != nil {
|
||||
return fmt.Errorf("send stdin: %w", err)
|
||||
}
|
||||
case err := <-stdinErrCh:
|
||||
if err != io.EOF {
|
||||
return fmt.Errorf("read stdin: %w", err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// handleClientOutputStream receives output from the exec stream and writes to stdout/stderr.
|
||||
// It also captures the exit code and signals completion via context cancellation.
|
||||
func handleClientOutputStream(ctx context.Context, stream pb.Docker_ExecContainerClient, stdout, stderr io.Writer, exitCode *int) error {
|
||||
slog.Debug("Output goroutine started")
|
||||
defer slog.Debug("Output goroutine exited")
|
||||
|
||||
for {
|
||||
resp, err := stream.Recv()
|
||||
if err == io.EOF {
|
||||
slog.Debug("output stream: EOF received")
|
||||
return nil
|
||||
}
|
||||
if err != nil {
|
||||
return fmt.Errorf("receive from stream: %w", err)
|
||||
}
|
||||
|
||||
switch payload := resp.Payload.(type) {
|
||||
case *pb.ExecContainerResponse_ExecId:
|
||||
// This is sent first; we already processed it earlier, so just ignore duplicates.
|
||||
case *pb.ExecContainerResponse_Stdout:
|
||||
if _, err := stdout.Write(payload.Stdout); err != nil {
|
||||
return fmt.Errorf("write stdout: %w", err)
|
||||
}
|
||||
case *pb.ExecContainerResponse_Stderr:
|
||||
if _, err := stderr.Write(payload.Stderr); err != nil {
|
||||
return fmt.Errorf("write stderr: %w", err)
|
||||
}
|
||||
case *pb.ExecContainerResponse_ExitCode:
|
||||
slog.Debug("received exit code", "code", payload.ExitCode)
|
||||
*exitCode = int(payload.ExitCode)
|
||||
return nil
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ExecContainer executes a command in a running container with bidirectional streaming.
|
||||
// TODO: This can be merged with pkg/client as it's an unnecessary logic split.
|
||||
func (c *Client) ExecContainer(ctx context.Context, opts ExecConfig) (exitCode int, err error) {
|
||||
// TODO: We need to handle Ctrl-C and other signals here to forward them to the container process.
|
||||
// Right now, Ctrl-C will just terminate the client process, which is not ideal.
|
||||
// We should catch the signal, send it to the container process, and only exit
|
||||
// when the container process exits.
|
||||
|
||||
slog.Debug("starting ExecContainer", "containerID", opts.ContainerID, "options", opts.Options)
|
||||
|
||||
// Initialize exit code to non-zero in case we have to return early
|
||||
exitCode = 1
|
||||
|
||||
// Set up I/O streams - use custom streams if provided, otherwise default to os.Stdin/Stdout/Stderr
|
||||
stdin := io.Reader(os.Stdin)
|
||||
stdout := io.Writer(os.Stdout)
|
||||
stderr := io.Writer(os.Stderr)
|
||||
|
||||
if opts.Options.Stdin != nil {
|
||||
stdin = opts.Options.Stdin
|
||||
}
|
||||
if opts.Options.Stdout != nil {
|
||||
stdout = opts.Options.Stdout
|
||||
}
|
||||
if opts.Options.Stderr != nil {
|
||||
stderr = opts.Options.Stderr
|
||||
}
|
||||
|
||||
// Marshal the exec config
|
||||
configBytes, err := json.Marshal(opts.Options)
|
||||
if err != nil {
|
||||
return -1, fmt.Errorf("marshal exec config: %w", err)
|
||||
}
|
||||
|
||||
// Create the bidirectional stream
|
||||
stream, err := c.GRPCClient.ExecContainer(ctx)
|
||||
if err != nil {
|
||||
return -1, fmt.Errorf("create exec stream: %w", err)
|
||||
}
|
||||
|
||||
// Send the initial configuration
|
||||
if err := stream.Send(&pb.ExecContainerRequest{
|
||||
Payload: &pb.ExecContainerRequest_Config{
|
||||
Config: &pb.ExecConfig{
|
||||
ContainerId: opts.ContainerID,
|
||||
Options: configBytes,
|
||||
},
|
||||
},
|
||||
}); err != nil {
|
||||
return -1, fmt.Errorf("send exec config: %w", err)
|
||||
}
|
||||
|
||||
// Receive the exec ID
|
||||
resp, err := stream.Recv()
|
||||
if err != nil {
|
||||
return -1, fmt.Errorf("receive exec ID: %w", err)
|
||||
}
|
||||
execID := resp.GetExecId()
|
||||
if execID == "" {
|
||||
return -1, fmt.Errorf("expected exec ID in first response")
|
||||
}
|
||||
|
||||
errGroup, ctx := errgroup.WithContext(ctx)
|
||||
|
||||
// Create cancellable context for goroutine coordination
|
||||
ctx, cancel := context.WithCancel(ctx)
|
||||
defer cancel()
|
||||
|
||||
// Handle terminal setup for interactive sessions
|
||||
if opts.Options.AttachStdin && opts.Options.Tty {
|
||||
restoreTerminal, err := setupTerminal(ctx, stream)
|
||||
if err != nil {
|
||||
return -1, fmt.Errorf("setup terminal: %w", err)
|
||||
}
|
||||
if restoreTerminal != nil {
|
||||
defer restoreTerminal()
|
||||
}
|
||||
}
|
||||
|
||||
// Handle stdin stream if needed
|
||||
if opts.Options.AttachStdin {
|
||||
errGroup.Go(func() error {
|
||||
return handleClientInputStream(ctx, stream, stdin)
|
||||
})
|
||||
} else {
|
||||
// Close send direction immediately if not attaching stdin
|
||||
stream.CloseSend()
|
||||
}
|
||||
|
||||
// Handle output streams (stdout/stderr)
|
||||
errGroup.Go(func() error {
|
||||
defer cancel()
|
||||
return handleClientOutputStream(ctx, stream, stdout, stderr, &exitCode)
|
||||
})
|
||||
|
||||
err = errGroup.Wait()
|
||||
|
||||
if err == nil && opts.Options.Detach {
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
return exitCode, err
|
||||
}
|
||||
@@ -23,6 +23,7 @@ import (
|
||||
"github.com/distribution/reference"
|
||||
dockercommand "github.com/docker/cli/cli/command"
|
||||
dockerconfig "github.com/docker/cli/cli/config"
|
||||
"github.com/docker/docker/api/types"
|
||||
"github.com/docker/docker/api/types/container"
|
||||
"github.com/docker/docker/api/types/filters"
|
||||
"github.com/docker/docker/api/types/image"
|
||||
@@ -30,6 +31,7 @@ import (
|
||||
"github.com/docker/docker/api/types/network"
|
||||
"github.com/docker/docker/api/types/volume"
|
||||
"github.com/docker/docker/client"
|
||||
"github.com/docker/docker/pkg/stdcopy"
|
||||
"github.com/docker/go-connections/nat"
|
||||
"github.com/google/go-containerregistry/pkg/authn"
|
||||
"github.com/google/go-containerregistry/pkg/name"
|
||||
@@ -1012,3 +1014,250 @@ func (s *Server) RemoveServiceContainer(ctx context.Context, req *pb.RemoveConta
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
// receiveExecConfig receives and validates the initial exec configuration from the stream.
|
||||
func (s *Server) receiveExecConfig(stream pb.Docker_ExecContainerServer) (*pb.ExecConfig, api.ExecOptions, error) {
|
||||
req, err := stream.Recv()
|
||||
if err != nil {
|
||||
return nil, api.ExecOptions{}, status.Errorf(codes.InvalidArgument, "receive config: %v", err)
|
||||
}
|
||||
|
||||
execConfig := req.GetConfig()
|
||||
if execConfig == nil {
|
||||
return nil, api.ExecOptions{}, status.Error(codes.InvalidArgument, "first message must contain exec config")
|
||||
}
|
||||
|
||||
// Unmarshal the Uncloud's execOpts
|
||||
var execOpts api.ExecOptions
|
||||
if err := json.Unmarshal(execConfig.Options, &execOpts); err != nil {
|
||||
return nil, api.ExecOptions{}, status.Errorf(codes.InvalidArgument, "unmarshal exec config: %v", err)
|
||||
}
|
||||
|
||||
return execConfig, execOpts, nil
|
||||
}
|
||||
|
||||
// handleServerExecInput reads from the gRPC stream and writes to Docker stdin, handling resize requests.
|
||||
func (s *Server) handleServerExecInput(
|
||||
ctx context.Context,
|
||||
stream pb.Docker_ExecContainerServer,
|
||||
attachConn types.HijackedResponse,
|
||||
execID string,
|
||||
tty bool,
|
||||
) error {
|
||||
slog.Debug("Input goroutine started", "exec_id", execID, "tty", tty)
|
||||
defer slog.Debug("Input goroutine exited", "exec_id", execID)
|
||||
|
||||
defer attachConn.CloseWrite()
|
||||
for {
|
||||
req, err := stream.Recv()
|
||||
switch {
|
||||
case errors.Is(err, io.EOF):
|
||||
slog.Debug("Input goroutine received EOF", "exec_id", execID)
|
||||
return nil
|
||||
case status.Code(err) == codes.Canceled:
|
||||
// Can be the case when the output goroutine ends and the stream context is canceled.
|
||||
slog.Debug("Input goroutine context canceled", "exec_id", execID)
|
||||
return nil
|
||||
case err == nil:
|
||||
// continue processing
|
||||
default:
|
||||
return fmt.Errorf("receive from stream: %w", err)
|
||||
}
|
||||
|
||||
switch payload := req.Payload.(type) {
|
||||
case *pb.ExecContainerRequest_Stdin:
|
||||
if _, err := attachConn.Conn.Write(payload.Stdin); err != nil {
|
||||
return fmt.Errorf("write to stdin: %w", err)
|
||||
}
|
||||
case *pb.ExecContainerRequest_Resize:
|
||||
if tty {
|
||||
resizeOpts := container.ResizeOptions{
|
||||
Height: uint(payload.Resize.Height),
|
||||
Width: uint(payload.Resize.Width),
|
||||
}
|
||||
if err := s.client.ContainerExecResize(ctx, execID, resizeOpts); err != nil {
|
||||
slog.Warn("Failed to resize TTY", "err", err, "exec_id", execID)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// handleServerExecOutput reads from Docker stdout/stderr and writes to the gRPC stream.
|
||||
func (s *Server) handleServerExecOutput(
|
||||
stream pb.Docker_ExecContainerServer,
|
||||
attachResp types.HijackedResponse,
|
||||
execID string,
|
||||
tty bool,
|
||||
) error {
|
||||
slog.Debug("Output goroutine started", "exec_id", execID, "tty", tty)
|
||||
defer slog.Debug("Output goroutine exited", "exec_id", execID)
|
||||
|
||||
if tty {
|
||||
// In TTY mode, all output is stdout - copy directly to stream
|
||||
stdoutWriter := &grpcStreamWriter{stream: stream, isStderr: false}
|
||||
_, err := io.Copy(stdoutWriter, attachResp.Reader)
|
||||
if err != nil && err != io.EOF {
|
||||
return fmt.Errorf("copy tty output: %w", err)
|
||||
}
|
||||
return nil
|
||||
} else {
|
||||
// In non-TTY mode, Docker multiplexes stdout/stderr with headers
|
||||
// Use stdcopy to demultiplex
|
||||
slog.Debug("Starting StdCopy for non-TTY", "exec_id", execID)
|
||||
stdoutWriter := &grpcStreamWriter{stream: stream, isStderr: false}
|
||||
stderrWriter := &grpcStreamWriter{stream: stream, isStderr: true}
|
||||
|
||||
written, err := stdcopy.StdCopy(stdoutWriter, stderrWriter, attachResp.Reader)
|
||||
slog.Debug("StdCopy completed", "exec_id", execID, "bytes", written, "err", err)
|
||||
if err != nil && err != io.EOF {
|
||||
return fmt.Errorf("demultiplex docker output: %w", err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
// grpcStreamWriter is a writer that sends data to a gRPC stream as stdout or stderr.
|
||||
type grpcStreamWriter struct {
|
||||
stream pb.Docker_ExecContainerServer
|
||||
isStderr bool
|
||||
}
|
||||
|
||||
func (w *grpcStreamWriter) Write(p []byte) (n int, err error) {
|
||||
data := make([]byte, len(p))
|
||||
copy(data, p)
|
||||
|
||||
var resp *pb.ExecContainerResponse
|
||||
if w.isStderr {
|
||||
resp = &pb.ExecContainerResponse{
|
||||
Payload: &pb.ExecContainerResponse_Stderr{Stderr: data},
|
||||
}
|
||||
} else {
|
||||
resp = &pb.ExecContainerResponse{
|
||||
Payload: &pb.ExecContainerResponse_Stdout{Stdout: data},
|
||||
}
|
||||
}
|
||||
|
||||
if err := w.stream.Send(resp); err != nil {
|
||||
return 0, err
|
||||
}
|
||||
return len(p), nil
|
||||
}
|
||||
|
||||
// ExecContainer executes a command in a running container with bidirectional streaming for stdin/stdout/stderr.
|
||||
func (s *Server) ExecContainer(stream pb.Docker_ExecContainerServer) error {
|
||||
slog.Debug("ExecContainer server-side called")
|
||||
defer slog.Debug("ExecContainer server-side ended")
|
||||
|
||||
ctx := stream.Context()
|
||||
|
||||
// Receive and validate configuration
|
||||
execConfig, execOpts, err := s.receiveExecConfig(stream)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// Convert to Docker's ExecOptions
|
||||
dockerExecOpts := container.ExecOptions{
|
||||
Cmd: execOpts.Command,
|
||||
AttachStdin: execOpts.AttachStdin,
|
||||
AttachStdout: execOpts.AttachStdout,
|
||||
AttachStderr: execOpts.AttachStderr,
|
||||
Tty: execOpts.Tty,
|
||||
User: execOpts.User,
|
||||
Privileged: execOpts.Privileged,
|
||||
WorkingDir: execOpts.WorkingDir,
|
||||
Env: execOpts.Env,
|
||||
}
|
||||
|
||||
// Create the exec instance
|
||||
execResp, err := s.client.ContainerExecCreate(ctx, execConfig.ContainerId, dockerExecOpts)
|
||||
if err != nil {
|
||||
if errdefs.IsNotFound(err) {
|
||||
return status.Error(codes.NotFound, err.Error())
|
||||
}
|
||||
return status.Errorf(codes.Internal, "create exec: %v", err)
|
||||
}
|
||||
|
||||
// Send the exec ID back to the client
|
||||
if err := stream.Send(&pb.ExecContainerResponse{
|
||||
Payload: &pb.ExecContainerResponse_ExecId{ExecId: execResp.ID},
|
||||
}); err != nil {
|
||||
return status.Errorf(codes.Internal, "send exec ID: %v", err)
|
||||
}
|
||||
slog.Debug("Sent exec ID to the client", "exec_id", execResp.ID)
|
||||
|
||||
// For detached mode, start without attaching
|
||||
if execOpts.Detach {
|
||||
dockerStartOpts := container.ExecStartOptions{
|
||||
Tty: dockerExecOpts.Tty,
|
||||
Detach: true,
|
||||
}
|
||||
if err := s.client.ContainerExecStart(ctx, execResp.ID, dockerStartOpts); err != nil {
|
||||
return status.Errorf(codes.Internal, "start exec: %v", err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// For attached mode, attach to the exec instance
|
||||
attachOpts := container.ExecAttachOptions{
|
||||
Tty: dockerExecOpts.Tty,
|
||||
}
|
||||
attachConn, err := s.client.ContainerExecAttach(ctx, execResp.ID, attachOpts)
|
||||
if err != nil {
|
||||
return status.Errorf(codes.Internal, "attach to exec: %v", err)
|
||||
}
|
||||
defer attachConn.Close()
|
||||
|
||||
// Create a cancelable context for the handlers
|
||||
handlerCtx, cancel := context.WithCancel(ctx)
|
||||
defer cancel() // Ensure handlers are canceled when we return
|
||||
|
||||
// Create a channel to wait for output completion
|
||||
outputDone := make(chan error, 1)
|
||||
|
||||
// Start stdin handler if stdin is attached
|
||||
if dockerExecOpts.AttachStdin {
|
||||
go func() {
|
||||
err := s.handleServerExecInput(handlerCtx, stream, attachConn, execResp.ID, dockerExecOpts.Tty)
|
||||
if err != nil {
|
||||
slog.Warn("Error in exec input handler", "err", err, "exec_id", execResp.ID)
|
||||
}
|
||||
}()
|
||||
} else {
|
||||
// If not attaching stdin, close the write side immediately
|
||||
attachConn.CloseWrite()
|
||||
}
|
||||
|
||||
// Start output handler
|
||||
// We only wait for this goroutine to complete - it signals when the exec process finishes
|
||||
go func() {
|
||||
outputDone <- s.handleServerExecOutput(stream, attachConn, execResp.ID, dockerExecOpts.Tty)
|
||||
}()
|
||||
|
||||
// Wait for the output goroutine to complete (it signals when done)
|
||||
// We only wait for output, not for stdin goroutine.
|
||||
if err := <-outputDone; err != nil {
|
||||
slog.Warn("Error in exec output handler", "err", err, "exec_id", execResp.ID)
|
||||
}
|
||||
// The stdin goroutine may still be blocked in stream.Recv() waiting for client data,
|
||||
// so cancel it explicitly.
|
||||
cancel()
|
||||
|
||||
inspectResp, err := s.client.ContainerExecInspect(ctx, execResp.ID)
|
||||
if err != nil {
|
||||
slog.Error("Failed to inspect exec after completion", "err", err, "exec_id", execResp.ID)
|
||||
return status.Errorf(codes.Internal, "inspect exec: %v", err)
|
||||
}
|
||||
|
||||
// Send the exit code
|
||||
slog.Debug("Sending exec exit code", "exec_id", execResp.ID, "exit_code", inspectResp.ExitCode)
|
||||
if err := stream.Send(&pb.ExecContainerResponse{
|
||||
Payload: &pb.ExecContainerResponse_ExitCode{ExitCode: int32(inspectResp.ExitCode)},
|
||||
}); err != nil {
|
||||
slog.Error("Failed to send exec exit code", "err", err, "exec_id", execResp.ID)
|
||||
return status.Errorf(codes.Internal, "send exit code: %v", err)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user