mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-27 13:34:15 -07:00
feat(core): enhanced anchored iterative context compression with self-verification (#15710)
This commit is contained in:
committed by
GitHub
parent
e34f0b4a98
commit
1182168bd9
@@ -289,7 +289,11 @@ export class McpClientManager {
|
||||
*/
|
||||
async restart(): Promise<void> {
|
||||
await Promise.all(
|
||||
Array.from(this.clients.entries()).map(async ([name, client]) => {
|
||||
Array.from(this.clients.keys()).map(async (name) => {
|
||||
const client = this.clients.get(name);
|
||||
if (!client) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
await this.maybeDiscoverMcpServer(name, client.getServerConfig());
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user