diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index fb825d42d..69efb7af0 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -104,7 +104,6 @@ fastify.listen({ port, host }, async (err: any, address: any) => { } console.log(`Coolify's API is listening on ${host}:${port}`); await initServer(); - await scheduler.start('test'); // await scheduler.start('cleanupPrismaEngines'); // await scheduler.start('checkProxies'); diff --git a/apps/api/src/lib/scheduler.ts b/apps/api/src/lib/scheduler.ts index 2460b83d8..6c233d050 100644 --- a/apps/api/src/lib/scheduler.ts +++ b/apps/api/src/lib/scheduler.ts @@ -18,7 +18,6 @@ const options: any = { } }, jobs: [ - { name: 'test',interval: '2s' }, { name: 'deployApplication', },