Skip to content

Commit

Permalink
Merge pull request #73 from Opetushallitus/tweak-dbt-cron-schedule
Browse files Browse the repository at this point in the history
Tweak dbt cron schedule
  • Loading branch information
msiukola authored Dec 10, 2024
2 parents 4e182de + eb56dd2 commit 7d05650
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cdk/lib/ecs-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ export class EcsStack extends cdk.Stack {

const schedule = appscaling.Schedule.cron({
minute: '30',
hour: '0-23/1',
hour: '5-15/1', //Tunnit UTC-ajassa
weekDay: '2-6/1',
});
const scheduledFargateTask = new ecsPatterns.ScheduledFargateTask(
this,
Expand Down

0 comments on commit 7d05650

Please sign in to comment.