* Close all cached project connections
()
| 1133 | * Close all cached project connections |
| 1134 | */ |
| 1135 | closeAll(): void { |
| 1136 | for (const cg of this.projectCache.values()) { |
| 1137 | cg.close(); |
| 1138 | } |
| 1139 | this.projectCache.clear(); |
| 1140 | this.worktreeMismatchCache.clear(); |
| 1141 | } |
| 1142 | |
| 1143 | /** |
| 1144 | * Validate that a value is a non-empty string within length bounds. |
no test coverage detected