We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78c8242 commit 45162cfCopy full SHA for 45162cf
1 file changed
services/apps/cron_service/src/jobs/nangoGithubSync.job.ts
@@ -18,7 +18,7 @@ import { IJobDefinition } from '../types'
18
const job: IJobDefinition = {
19
name: 'nango-github-sync',
20
cronTime: CronTime.every(
21
- Number(process.env.CROWD_GH_NANGO_SYNC_INTERVAL_MINUTES || IS_DEV_ENV ? 5 : 60),
+ Number(process.env.CROWD_GH_NANGO_SYNC_INTERVAL_MINUTES || (IS_DEV_ENV ? 5 : 60)),
22
).minutes(),
23
timeout: 4 * 60 * 60, // 4 hours
24
process: async (ctx) => {
0 commit comments