mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 17:24:56 +03:00
fix: add integrity report repository to service depends.
This commit is contained in:
@@ -80,6 +80,7 @@ export const BASE_SERVICE_DEPENDENCIES = [
|
||||
DuplicateRepository,
|
||||
EmailRepository,
|
||||
EventRepository,
|
||||
IntegrityReportRepository,
|
||||
JobRepository,
|
||||
LibraryRepository,
|
||||
MachineLearningRepository,
|
||||
|
||||
@@ -72,6 +72,22 @@ const updatedConfig = Object.freeze<SystemConfig>({
|
||||
accelDecode: false,
|
||||
tonemap: ToneMapping.Hable,
|
||||
},
|
||||
integrityChecks: {
|
||||
orphanedFiles: {
|
||||
enabled: true,
|
||||
cronExpression: '0 03 * * *',
|
||||
},
|
||||
missingFiles: {
|
||||
enabled: true,
|
||||
cronExpression: '0 03 * * *',
|
||||
},
|
||||
checksumFiles: {
|
||||
enabled: true,
|
||||
cronExpression: '0 03 * * *',
|
||||
timeLimit: 60 * 60 * 1000,
|
||||
percentageLimit: 1.0,
|
||||
},
|
||||
},
|
||||
logging: {
|
||||
enabled: true,
|
||||
level: LogLevel.Log,
|
||||
|
||||
Reference in New Issue
Block a user