Reduce CLI timeout from 60s to 20s for faster recovery
Some checks are pending
CI / semgrep (push) Waiting to run

This commit is contained in:
AgentSeal 2026-04-24 05:53:52 +02:00
parent 053ca25253
commit d3c4de0375

View file

@ -6,7 +6,7 @@ import Foundation
/// Pipe file descriptors pinned forever.
private let maxPayloadBytes = 20 * 1024 * 1024
private let maxStderrBytes = 256 * 1024
private let spawnTimeoutSeconds: UInt64 = 60
private let spawnTimeoutSeconds: UInt64 = 20
enum DataClientError: Error {
case spawn(String)