pub const INBOX_WAIT_SECS_MAX: u16 = 60;Expand description
Ceiling on InboxRequest::wait_secs. Clamped, not refused, when a
caller asks for longer – unlike INBOX_LIMIT_MAX, which
InboxRequest::validate refuses outright above. The daemon holds an
HTTP (or MCP) connection open for the whole wait, so this door must
answer within a bounded time the same way
mirage2operator/crates/operator-box/src/ops/mcp.rs’s own
GET /ops/jobs/{id}?wait_secs=N caps its one long-poll shape, for the
same reason: nothing about this door streams, so nothing about it may
hold a connection open indefinitely either.