MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / readDaemonRegistryEntry

Function readDaemonRegistryEntry

src/daemon/daemon-registry.ts:292–301  ·  view source on GitHub ↗
(workspaceKey: string)

Source from the content-addressed store, hash-verified

290 * Returns null if the entry doesn't exist.
291 */
292export function readDaemonRegistryEntry(workspaceKey: string): DaemonRegistryEntry | null {
293 const workspaceResult = readRegistryEntryAtPath(
294 registryPathForWorkspaceKey(workspaceKey),
295 workspaceKey,
296 );
297 if (workspaceResult.status === 'valid') {
298 return workspaceResult.entry;
299 }
300 return null;
301}
302
303/**
304 * List all daemon registry entries.

Callers 6

collectProtectedLogPathsFunction · 0.90
forceStopDaemonFunction · 0.90
handleStatusFunction · 0.90
handleLogsFunction · 0.90

Calls 2

readRegistryEntryAtPathFunction · 0.85

Tested by

no test coverage detected