Skip to content

Commit 1527386

Browse files
committed
remove pause hack (its a Core issue, being looked at - umbraco/Umbraco-CMS#17550)
1 parent 0fa8ec0 commit 1527386

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

uSync.BackOffice/SyncHandlers/Handlers/ContentTypeBaseHandler.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,4 @@ protected ContentTypeBaseHandler(
3636
ISyncItemFactory syncItemFactory)
3737
: base(logger, entityService, appCaches, shortStringHelper, syncFileService, mutexService, uSyncConfig, syncItemFactory)
3838
{ }
39-
40-
public override async Task HandleAsync(SavingNotification<TObject> notification, CancellationToken cancellationToken)
41-
{
42-
// this is a hack fix, while we look into it,
43-
// deeply suspect there is a lock in the core :(
44-
Thread.Sleep(75);
45-
await base.HandleAsync(notification, cancellationToken);
46-
}
47-
4839
}

0 commit comments

Comments
 (0)