Skip to content

Commit e418855

Browse files
committed
Disable Contribution Diffs background job for now
1 parent 894ae04 commit e418855

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Share/BackgroundJobs.hs

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

33
import Ki.Unlifted qualified as Ki
4-
import Share.BackgroundJobs.Diffs.ContributionDiffs qualified as ContributionDiffs
54
import Share.BackgroundJobs.Monad (Background)
65
import Share.BackgroundJobs.Search.DefinitionSync qualified as DefnSearch
76
import Share.BackgroundJobs.SerializedEntitiesMigration.Worker qualified as SerializedEntitiesMigration
@@ -10,5 +9,6 @@ import Share.BackgroundJobs.SerializedEntitiesMigration.Worker qualified as Seri
109
startWorkers :: Ki.Scope -> Background ()
1110
startWorkers scope = do
1211
DefnSearch.worker scope
13-
ContributionDiffs.worker scope
12+
-- Temporary disable background diff jobs until the new diffing logic is done.
13+
-- ContributionDiffs.worker scope
1414
SerializedEntitiesMigration.worker scope

0 commit comments

Comments
 (0)