(shardId: string)
| 116 | const replyPartition = (requestId: string) => `reply::${requestId}` |
| 117 | const runnerDocId = (address: string) => cosmosId(`runner::${address}`) |
| 118 | const lockDocId = (shardId: string) => cosmosId(`lock::${shardId}`) |
| 119 | const tenMinutes = Duration.toMillis(Duration.minutes(10)) |
| 120 | const maxCosmosBatchOperations = 100 |
| 121 | const isSuccessfulStatus = (statusCode: number | undefined): boolean => |
no test coverage detected
searching dependent graphs…