[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-08-24 06:33:36 +00:00
committed by GitHub
parent 37c34fdadc
commit 5e4444610c
2 changed files with 12 additions and 6 deletions

View File

@@ -55,8 +55,7 @@ const formSchema = z
cronExpression: z.string().min(1, "Cron expression is required"),
volumeName: z.string().min(1, "Volume name is required"),
prefix: z.string(),
keepLatestCount: z
.coerce
keepLatestCount: z.coerce
.number()
.int()
.gte(1, "Must be at least 1")
@@ -188,7 +187,8 @@ export const HandleVolumeBackups = ({
serviceType: volumeBackup.serviceType,
});
setKeepLatestCountInput(
volumeBackup.keepLatestCount !== null && volumeBackup.keepLatestCount !== undefined
volumeBackup.keepLatestCount !== null &&
volumeBackup.keepLatestCount !== undefined
? String(volumeBackup.keepLatestCount)
: "",
);
@@ -203,7 +203,7 @@ export const HandleVolumeBackups = ({
if (!id && !volumeBackupId) return;
const preparedKeepLatestCount =
keepLatestCountInput === "" ? null : values.keepLatestCount ?? null;
keepLatestCountInput === "" ? null : (values.keepLatestCount ?? null);
await mutateAsync({
...values,

View File

@@ -1,7 +1,13 @@
import { findVolumeBackupById } from "@dokploy/server/services/volume-backups";
import { scheduledJobs, scheduleJob } from "node-schedule";
import { createDeploymentVolumeBackup, updateDeploymentStatus } from "@dokploy/server/services/deployment";
import { execAsync, execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
import {
createDeploymentVolumeBackup,
updateDeploymentStatus,
} from "@dokploy/server/services/deployment";
import {
execAsync,
execAsyncRemote,
} from "@dokploy/server/utils/process/execAsync";
import { backupVolume } from "./backup";
import { getS3Credentials, normalizeS3Path } from "../backups/utils";