* Close all cached project connections
()
| 1666 | * Close all cached project connections |
| 1667 | */ |
| 1668 | closeAll(): void { |
| 1669 | for (const cg of this.projectCache.values()) { |
| 1670 | cg.close(); |
| 1671 | } |
| 1672 | this.projectCache.clear(); |
| 1673 | this.worktreeMismatchCache.clear(); |
| 1674 | } |
| 1675 | |
| 1676 | /** |
| 1677 | * Validate that a value is a non-empty string within length bounds. |
no test coverage detected