(ownerKey: string)
| 339 | } |
| 340 | |
| 341 | function ownerRedisKey(ownerKey: string): string { |
| 342 | return `${DISTRIBUTED_KEY_PREFIX}:${ownerKey}` |
| 343 | } |
| 344 | |
| 345 | type LeaseAcquireResult = 'acquired' | 'limit_exceeded' | 'unavailable' |
| 346 |
no outgoing calls
no test coverage detected