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
5 changes: 0 additions & 5 deletions apps/desktop/src/main/terminal-host/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1067,11 +1067,6 @@ export class Session {
try {
const canWrite = socket.write(message);
if (!canWrite) {
// Socket buffer full - data will be queued but may cause memory pressure
// In production, could track this and pause PTY output temporarily
console.warn(
`[Session ${this.sessionId}] Client socket buffer full, output may be delayed`,
);
this.handleClientBackpressure(socket);
}
} catch {
Expand Down
Loading