Scan queue handler now returns a QueueLibraryScanResult enum (Queued|NotFound|SyncDisabled|AlreadyScanning) instead of a lying bool; LibrariesController.ScanLibrary maps them to 202/404/422/409 with ProblemDetails. Guard the lock->enqueue with the EnqueueWithTraktLock compensating-unlock pattern. ScannerService now releases every library/collection lock in a finally so a handler exception can't leak the lock. Plex "Shows" scheduler batch (one lock, two messages) now has only the trailing SynchronizePlexNetworks carry the single release (Unlock flag), mirroring the scheduler Trakt tail-token precedent. Guard the other lock->enqueue producers (Create/UpdateLocalLibrary, UpdateTraktList) with compensating unlock. SPA drops the PENDING_GRACE_TICKS heuristic now that the POST reports 202/409/404/422 directly: 202 -> pending+poll, 409 -> reconcile (no error toast), 404/422 -> surface error. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
11 lines
475 B
C#
11 lines
475 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Plex;
|
|
|
|
// Unlock defaults true so single-message callers release the library lock as before. In the Plex
|
|
// "Shows" scheduler batch this message runs LAST and carries the single release (the preceding
|
|
// library message runs with Unlock: false).
|
|
public record SynchronizePlexNetworks(int PlexLibraryId, bool ForceScan, bool Unlock = true)
|
|
: IRequest<Either<BaseError, Unit>>,
|
|
IScannerBackgroundServiceRequest;
|