Use filesystem watcher instead of 250ms polling for Antigravity resume binding #7
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Location
src-tauri/src/commands/sessions.rs(spawn_bind_thread)Problem
The Antigravity conversation binding thread polls
~/.gemini/antigravity-cli/conversationsevery 250ms for up to 20 seconds using SQLite/fs stat queries to detect when the CLI writes a new conversation database.Suggested Fix
Use a
notifydirectory watcher on the conversations folder (with a fallback timeout) to discover new conversation databases reactively instead of polling.