docs: replace round-robin references with sticky selection

The account selection is now sticky (stays on same account for cache
continuity), not round-robin. Updated comments and docs to reflect this.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Badri Narayanan S
2025-12-25 13:37:20 +05:30
parent 01cda835d9
commit 21f923b4ec
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
/**
* Account Manager
* Manages multiple Antigravity accounts with round-robin selection,
* Manages multiple Antigravity accounts with sticky selection,
* automatic failover, and smart cooldown for rate-limited accounts.
*/
@@ -199,7 +199,7 @@ export class AccountManager {
}
/**
* Pick the next available account (round-robin).
* Pick the next available account (fallback when current is unavailable).
* Sets activeIndex to the selected account's index.
* @returns {Object|null} The next available account or null if none available
*/