Synced from monorepo
Synced from monorepo Changes: - Report invalid MCP server config instead of failing startup - Keep completed terminal output when the gateway connection is lost - Show a duration-only detail view for single-task task output - Don't let a stale registry turn counter hide local sessions - Raise the file-descriptor soft limit on Linux and log effective limits at startup - Stop aborting when HTTP client construction fails - Make session thread and runtime spawn failures recoverable - Fix main-prompt paste parity in the question freeform input - Fire SessionEnd hooks on /exit and headless quit - Embed the deployment-config signing public key - Repaint paste-chip background on inline panel inputs - Security: prevent acceptEdits from auto-approving agent writes into the always-trusted global hook root - Fix stacked "Worked for" markers so parks render as status and turns close with exactly one marker - Parse hooks from config files - Add a remote kill-switch for managed-config signature verification - Security: fix workspace file-reference resolution bypassing workspace filesystem confinement Source-Revision: d02693a856a54f1030695b36b91d276e96b30b23
This commit is contained in:
parent
6e38642082
commit
47348d13ec
138 changed files with 7283 additions and 5796 deletions
|
|
@ -26,6 +26,14 @@ async fn minimal_continue_reprints_transcript() {
|
|||
first
|
||||
.wait_for_full_text(&turn_sentinel(1), Duration::from_secs(30))
|
||||
.expect("turn 1 committed to scrollback");
|
||||
// Idle before quit so the agent finishes turn completion + updates.jsonl
|
||||
// flush. Quitting mid-finalize under suite load left `--continue` loading a
|
||||
// session with the user message but no assistant payload (resume then
|
||||
// shows "Loading session…" / empty chrome past RESUME_TIMEOUT).
|
||||
first
|
||||
.wait_for_text(MINIMAL_IDLE_SENTINEL, Duration::from_secs(15))
|
||||
.expect("turn 1 returned to idle before quit");
|
||||
first.update(Duration::from_millis(300));
|
||||
quit_minimal(&mut first);
|
||||
|
||||
// Resume the same session. The transcript is reprinted into native
|
||||
|
|
|
|||
Loading…
Reference in a new issue