Merge pull request #1608 from Dokploy/fix/move-cron-to-after-migration

Fix/move cron to after migration
This commit is contained in:
Mauricio Siu
2025-04-02 06:58:38 -06:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

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

View File

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