(workspaceId: string, serverId: string)
| 413 | } |
| 414 | |
| 415 | private async clearServerFailure(workspaceId: string, serverId: string): Promise<void> { |
| 416 | try { |
| 417 | await this.cacheAdapter.delete(failureCacheKey(workspaceId, serverId)) |
| 418 | } catch (err) { |
| 419 | logger.warn(`Failed to clear failure cache for server ${serverId}:`, err) |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | async discoverTools( |
| 424 | userId: string, |
no test coverage detected