## Problem The `_edit_log` list grows unbounded with no rotation or pruning. **File:** `src/hypervisor/session/sso.py` (line 44) ## Impact Long-running sessions will eventually OOM. ## Suggested Fix Implement ring buffer or rolling window (keep last 10K edits).
Problem
The
_edit_loglist grows unbounded with no rotation or pruning.File:
src/hypervisor/session/sso.py(line 44)Impact
Long-running sessions will eventually OOM.
Suggested Fix
Implement ring buffer or rolling window (keep last 10K edits).