-
Notifications
You must be signed in to change notification settings - Fork 56
[HOLD - do not merge] fix: add missing env variables for scheduler #231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -173,3 +173,21 @@ failedLoginAttempt=5 | |
| jwt.access.expiration=86400000 | ||
| jwt.refresh.expiration=604800000 | ||
|
|
||
|
|
||
| ##-------------------------------###cti data sync Scheduler configurations------------------------------------------------------ | ||
|
|
||
| #Runs at every alternative days at 2AM | ||
| start-ctidatasync-scheduler=true | ||
| cron-scheduler-ctidatasync=0 30 01 * * ? * | ||
|
|
||
| ##-------------------------------###cti data check with call detail report Scheduler------------------------------------------------------ | ||
|
|
||
| #Runs at everyday 12:10AM | ||
| start-ctidatacheck-scheduler=true | ||
| cron-scheduler-ctidatacheck=0 00 02 * * * | ||
|
|
||
|
Comment on lines
+183
to
+188
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Incorrect cron field count & comment mismatch for CTI data check scheduler 🤖 Prompt for AI Agents |
||
|
|
||
| ##-----------------------------------------------#NHM data dashboard schedular---------------------------------------------------------------- | ||
| # run at everyday 12:01AM | ||
| start-nhmdashboard-scheduler=true | ||
| cron-scheduler-nhmdashboard=0 30 0 * * ? * | ||
|
Comment on lines
+190
to
+193
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo and mismatch in NHM data dashboard scheduler config 🤖 Prompt for AI Agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mismatch between cron and description for CTI data sync scheduler
The cron expression
0 30 01 * * ? *schedules a job daily at 1:30 AM—not every other day at 2 AM as the comment suggests. Update either the cron pattern (e.g.,0 30 01 1/2 * ? *for alternate days at 1:30 AM) or correct the comment/time details.🤖 Prompt for AI Agents