Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Umbraco.Core/Services/LongRunningOperationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private async Task<Attempt<Guid, LongRunningOperationEnqueueStatus>> RunInner<T>
{
// Acquire a write lock to ensure that no other operations of the same type can be enqueued while this one is being processed.
// This is only needed if we do not allow multiple runs of the same type.
scope.WriteLock(Constants.Locks.LongRunningOperations);
scope.EagerWriteLock(Constants.Locks.LongRunningOperations);
if (await IsAlreadyRunning(type))
{
scope.Complete();
Expand Down
Loading