( logPath: string, flags: CommandFlags | undefined, appBundleId?: string, traceLogPath?: string, meta?: DaemonRequest['meta'], )
| 255 | } |
| 256 | |
| 257 | function contextFromRequestFlags( |
| 258 | logPath: string, |
| 259 | flags: CommandFlags | undefined, |
| 260 | appBundleId?: string, |
| 261 | traceLogPath?: string, |
| 262 | meta?: DaemonRequest['meta'], |
| 263 | ): DaemonCommandContext { |
| 264 | const requestId = getDiagnosticsMeta().requestId; |
| 265 | return { |
| 266 | ...contextFromFlagsWithLog(logPath, flags, appBundleId, traceLogPath, requestId, meta), |
| 267 | requestId, |
| 268 | }; |
| 269 | } |
| 270 | |
| 271 | function getLeaseRegistryExecutionLocks( |
| 272 | leaseRegistry: LeaseRegistry, |
no test coverage detected