zerobyte/app/server/jobs/auto-remount.ts
Nico 94f49e2022
refactor: separate healthcheck and auto remount in two separate jobs (#179)
* refactor: separate healthcheck and auto remount in two separate jobs

* fix: try catch in volume auto remount
2025-12-18 23:03:41 +01:00

28 lines
786 B
TypeScript

import { Job } from "../core/scheduler";
import { volumeService } from "../modules/volumes/volume.service";
import { logger } from "../utils/logger";
import { db } from "../db/db";
import { eq } from "drizzle-orm";
import { volumesTable } from "../db/schema";
export class VolumeAutoRemountJob extends Job {
async run() {
logger.debug("Running auto-remount for all errored volumes...");
const volumes = await db.query.volumesTable.findMany({
where: eq(volumesTable.status, "error"),
});
for (const volume of volumes) {
if (volume.autoRemount) {
try {
await volumeService.mountVolume(volume.name);
} catch (err) {
logger.error(`Failed to auto-remount volume ${volume.name}:`, err);
}
}
}
return { done: true, timestamp: new Date() };
}
}