Compare commits

...

3 Commits

Author SHA1 Message Date
Mauricio Siu
9d0f5bc8cd Update package.json 2025-04-02 00:31:55 -06:00
Mauricio Siu
3dc558c260 Merge pull request #1599 from vicke4/backup-cron-fix-attempt
fix(backups): awaiting initCronJobs call in an attempt to fix backups cron
2025-04-02 00:31:20 -06:00
vicke4
180aa34140 fix(backups): awaiting initcronjobs in an attempt to fix backups cron 2025-04-02 11:07:48 +05:30
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "dokploy",
"version": "v0.21.0",
"version": "v0.21.1",
"private": true,
"license": "Apache-2.0",
"type": "module",

View File

@@ -46,7 +46,7 @@ void app.prepare().then(async () => {
await initializeNetwork();
createDefaultTraefikConfig();
createDefaultServerTraefikConfig();
initCronJobs();
await initCronJobs();
await migration();
await sendDokployRestartNotifications();
}