(
path: Path.Path,
input: { hostname: string; scopeId: string },
)
| 86 | }; |
| 87 | |
| 88 | const daemonPointerPath = ( |
| 89 | path: Path.Path, |
| 90 | input: { hostname: string; scopeId: string }, |
| 91 | ): string => { |
| 92 | const host = sanitizeHostForPath(canonicalDaemonHost(input.hostname)); |
| 93 | const scope = scopeKeyForPath(input.scopeId); |
| 94 | return path.join(resolveDaemonDataDir(path), `daemon-active-${host}-${scope}.json`); |
| 95 | }; |
| 96 | |
| 97 | const daemonStartLockPath = ( |
| 98 | path: Path.Path, |
no test coverage detected