mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-09 21:00:56 -07:00
Disallow unsafe type assertions (#18688)
This commit is contained in:
committed by
GitHub
parent
bce1caefd0
commit
fd65416a2f
@@ -52,6 +52,26 @@ export function disableSimulationAfterFallback(): void {
|
||||
fallbackOccurred = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a simulated 429 error response
|
||||
*/
|
||||
export function createSimulated429Error(): Error {
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
|
||||
const error = new Error('Rate limit exceeded (simulated)') as Error & {
|
||||
status: number;
|
||||
};
|
||||
error.status = 429;
|
||||
return error;
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset simulation state when switching auth methods
|
||||
*/
|
||||
export function resetSimulationState(): void {
|
||||
fallbackOccurred = false;
|
||||
resetRequestCounter();
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable/disable 429 simulation programmatically (for tests)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user