Fix tests

This commit is contained in:
Wolfgang Kulhanek
2025-10-17 10:59:29 +02:00
parent 254bd5a149
commit 593555bc82
2 changed files with 72 additions and 63 deletions

View File

@@ -60,7 +60,7 @@ setInterval(() => {
streamSessions.delete(sid);
}
}
}, 5 * 60 * 1000); // Run every 5 minutes
}, 5 * 60 * 1000).unref(); // Run every 5 minutes, but don't prevent process exit
interface RangeFilter extends Transform {
range: (length: number) => string;