* Close all cached project connections
()
| 1103 | * Close all cached project connections |
| 1104 | */ |
| 1105 | closeAll(): void { |
| 1106 | for (const cg of this.projectCache.values()) { |
| 1107 | cg.close(); |
| 1108 | } |
| 1109 | this.projectCache.clear(); |
| 1110 | this.worktreeMismatchCache.clear(); |
| 1111 | } |
| 1112 | |
| 1113 | /** |
| 1114 | * Validate that a value is a non-empty string within length bounds. |
no test coverage detected