You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ide forward: integrated terminal ~12 s through the relay while explorer is 7 s and localhost < 1 s — attribute the terminal channel's latency, fix the codev-side share #1708
With the #1677 H2 flow-control fix live on both halves (tower 3.3.4 + relay), the browser IDE served through the /ide/ forward (#1668/PR #1683) shows a split personality in the 2026-09-19 field re-test (WSL tower, Windows browser, real repository):
before
after
localhost reference
Explorer populates
45–52 s
7 s
< 1 s
Integrated terminal usable
~15 s
12 s
< 1 s
The explorer's 7x improvement proves the head-of-line starvation is fixed. The terminal barely moved (15 s → 12 s), so its latency is dominated by something the window fix does not touch. 12 s vs a sub-second localhost reference is a 12x gap on a path we forward.
Field numbers and environment: see the 2026-09-19 closure comment on #1677.
Scope: attribute first, then fix what is ours
Phase 1 is measurement — identify which leg eats the 12 s before changing anything:
The terminal channel's WebSocket upgrade through the forward (ide-forward.ts) and the relay: handshake steps that are round-trip-bound multiply by the ~150 ms relay RTT; count the round trips.
PTY spawn on the server side once the channel is up (is the spawn itself slow under WSL, independent of the forward? The localhost reference suggests not, but confirm on the same box).
Remote extension-host / terminal-contribution startup inside the VS Code server (potentially not ours to fix; if attribution lands here, document and close).
Phase 2: fix whatever of that is in the forward or tunnel client; anything attributed to the upstream IDE server or the relay gets documented on this issue and handed to the owning side.
Acceptance
Either the integrated terminal becomes usable in low single-digit seconds through the forward, or the 12 s is attributed leg-by-leg with evidence and the codev-side share is fixed, with the remainder explicitly assigned elsewhere.
Problem
With the #1677 H2 flow-control fix live on both halves (tower 3.3.4 + relay), the browser IDE served through the
/ide/forward (#1668/PR #1683) shows a split personality in the 2026-09-19 field re-test (WSL tower, Windows browser, real repository):The explorer's 7x improvement proves the head-of-line starvation is fixed. The terminal barely moved (15 s → 12 s), so its latency is dominated by something the window fix does not touch. 12 s vs a sub-second localhost reference is a 12x gap on a path we forward.
Field numbers and environment: see the 2026-09-19 closure comment on #1677.
Scope: attribute first, then fix what is ours
Phase 1 is measurement — identify which leg eats the 12 s before changing anything:
ide-forward.ts) and the relay: handshake steps that are round-trip-bound multiply by the ~150 ms relay RTT; count the round trips.Phase 2: fix whatever of that is in the forward or tunnel client; anything attributed to the upstream IDE server or the relay gets documented on this issue and handed to the owning side.
Acceptance
Either the integrated terminal becomes usable in low single-digit seconds through the forward, or the 12 s is attributed leg-by-leg with evidence and the codev-side share is fixed, with the remainder explicitly assigned elsewhere.