()
| 304 | * List all daemon registry entries. |
| 305 | */ |
| 306 | export function listDaemonRegistryEntries(): DaemonRegistryEntry[] { |
| 307 | const entriesByWorkspaceKey = new Map<string, DaemonRegistryEntry>(); |
| 308 | for (const entry of listWorkspaceRegistryEntries()) { |
| 309 | entriesByWorkspaceKey.set(entry.workspaceKey, entry); |
| 310 | } |
| 311 | |
| 312 | return Array.from(entriesByWorkspaceKey.values()); |
| 313 | } |
| 314 | |
| 315 | export function findDaemonRegistryEntryBySocketPath( |
| 316 | socketPath: string, |
no test coverage detected