Skip to content

Commit

Permalink
update skills to run cron every week, to save costs.
Browse files Browse the repository at this point in the history
  • Loading branch information
aasmal97 committed Jan 7, 2025
1 parent e8f8e44 commit a68b27a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const createSkillCronJob = ({
});
//run every three days
const skillsCronJobEvent = new Rule(stack, "skillsCronJobEvent", {
schedule: Schedule.rate(cdk.Duration.days(3)),
schedule: Schedule.rate(cdk.Duration.days(7)),
targets: [skillsCronJobTarget],
});
return skillsCronJobEvent;
Expand Down

0 comments on commit a68b27a

Please sign in to comment.