This commit is contained in:
Zack Pollard
2025-06-11 11:42:56 +01:00
parent 16745e77d4
commit ab764f2423
8 changed files with 97 additions and 1 deletions
+5 -1
View File
@@ -136,7 +136,11 @@ const getEnv = (): EnvData => {
);
}
const includedWorkers = asSet(dto.IMMICH_WORKERS_INCLUDE, [ImmichWorker.API, ImmichWorker.MICROSERVICES]);
const includedWorkers = asSet(dto.IMMICH_WORKERS_INCLUDE, [
// ImmichWorker.API,
// ImmichWorker.MICROSERVICES,
ImmichWorker.MAINTENANCE,
]);
const excludedWorkers = asSet(dto.IMMICH_WORKERS_EXCLUDE, []);
const workers = [...setDifference(includedWorkers, excludedWorkers)];
for (const worker of workers) {