(name: string)
| 118 | const activityKey = (name: string, attempt: number) => cosmosId(`activity::${name}::${attempt}`) |
| 119 | const deferredKey = (name: string) => cosmosId(`deferred::${name}`) |
| 120 | const clockKey = (name: string) => cosmosId(`clock::${name}`) |
| 121 | |
| 122 | // Single-item Cosmos writes (`replace`) *throw* on 409/412/404 rather than |
| 123 | // returning the status code (only `read` and batch ops surface codes), so OCC |
no test coverage detected
searching dependent graphs…