mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-25 02:37:53 -07:00
5f4701c174
Pressing ESC during a read_background_output call with delay_ms left the scheduler blocked until the timer fired, since the sleep ignored the abort signal. Use the abortable timers/promises setTimeout so cancellation rejects immediately with an AbortError, which the tool executor already converts into a Cancelled result. Fixes #18007