1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +12:00

Use timers

This commit is contained in:
Adria Navarro 2023-11-29 18:31:53 +01:00
parent 5a7dbb0076
commit 26a77298ac

View file

@ -5,6 +5,7 @@ import * as context from "../context"
import env from "../environment"
import { logWarn } from "../logging"
import { Duration } from "../utils"
import { timers } from ".."
async function getClient(
type: LockType,
@ -118,7 +119,7 @@ export async function doWithLock<T>(
if (!opts.ttl) {
// No TTL is provided, so we keep extending the lock while the task is running
interval = setInterval(async () => {
interval = timers.set(async () => {
await lock?.extend(ttl / 2)
}, ttl / 2)
}
@ -146,7 +147,7 @@ export async function doWithLock<T>(
await lock.unlock()
}
if (interval) {
clearInterval(interval)
timers.clear(interval)
}
}
}