fix(db): change buffer lock interval

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-09-18 10:29:23 +02:00
parent cf949646eb
commit 13a83155cf

View File

@@ -76,7 +76,7 @@ export class RedisBuffer<T> {
protected async waitForReleasedLock(
maxWaitTime = 8000,
checkInterval = 500,
checkInterval = 250,
): Promise<boolean> {
const startTime = performance.now();