Skip to content

Commit d5ee778

Browse files
committed
Try re-enabling the background diff queue.
1 parent b84dc2e commit d5ee778

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Share/BackgroundJobs.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module Share.BackgroundJobs (startWorkers) where
22

33
import Ki.Unlifted qualified as Ki
4+
import Share.BackgroundJobs.Diffs.ContributionDiffs qualified as ContributionDiffs
45
import Share.BackgroundJobs.Monad (Background)
56
import Share.BackgroundJobs.Search.DefinitionSync qualified as DefnSearch
67
import Share.BackgroundJobs.SerializedEntitiesMigration.Worker qualified as SerializedEntitiesMigration
@@ -10,5 +11,5 @@ startWorkers :: Ki.Scope -> Background ()
1011
startWorkers scope = do
1112
DefnSearch.worker scope
1213
-- Temporary disable background diff jobs until the new diffing logic is done.
13-
-- ContributionDiffs.worker scope
14+
ContributionDiffs.worker scope
1415
SerializedEntitiesMigration.worker scope

0 commit comments

Comments
 (0)