* Close all cached project connections
()
| 1144 | * Close all cached project connections |
| 1145 | */ |
| 1146 | closeAll(): void { |
| 1147 | for (const cg of this.projectCache.values()) { |
| 1148 | cg.close(); |
| 1149 | } |
| 1150 | this.projectCache.clear(); |
| 1151 | this.worktreeMismatchCache.clear(); |
| 1152 | } |
| 1153 | |
| 1154 | /** |
| 1155 | * Validate that a value is a non-empty string within length bounds. |
no test coverage detected