latest build pipeline

This commit is contained in:
2026-03-07 16:29:57 +01:00
parent 0a2d6a558c
commit 462c8a7c7b
2 changed files with 113 additions and 1 deletions
@@ -308,7 +308,7 @@ public class RecordingService : IRecordingService, IDisposable
public async Task ProcessRecordingsAsync(CancellationToken cancellationToken)
{
// Prevent overlapping scheduler runs from spawning duplicate ffmpeg processes
if (!await _processLock.WaitAsync(0).ConfigureAwait(false))
if (!await _processLock.WaitAsync(0, CancellationToken.None).ConfigureAwait(false))
{
_logger.LogDebug("ProcessRecordingsAsync already running, skipping");
return;