Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/node/runtime/SSHRuntime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,8 @@ export class SSHRuntime implements Runtime {

// Suppress SSH warnings (e.g., ControlMaster messages) that would pollute command output
// These go to stderr and get merged with stdout in bash tool results
args.push("-o", "LogLevel=ERROR");
// Use FATAL (not ERROR) because mux_client_request_session messages are at ERROR level
args.push("-o", "LogLevel=FATAL");

// Add ControlMaster options for connection multiplexing
// This ensures all SSH operations reuse the master connection
Expand Down