Skip to content

Commit

Permalink
Fix: #722 - run the delete at statup
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJump committed Feb 27, 2025
1 parent 034fc7d commit de1346e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions uSync.BackOffice/Services/SyncService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ public async Task<IEnumerable<uSyncAction>> ImportAsync(string[] folders, bool f

}

// run the post actions (deletes) as part of the startup import methods.
var results = await SyncService.PerformPostImportAsync(handlers, actions);

// fire complete
await _mutexService.FireBulkCompleteAsync(new uSyncImportCompletedNotification(actions));

Expand Down

0 comments on commit de1346e

Please sign in to comment.