Skip to content

Commit 198402e

Browse files
authored
Tools - Weathertop - Change cadence (#6856)
Switch weathertop to run nightly instead of hourly.
1 parent e9e95e7 commit 198402e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.tools/test/stacks/admin/typescript/admin_stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class AdminStack extends Stack {
4242

4343
private initRule(topic: sns.Topic): void {
4444
const rule = new events.Rule(this, "trigger-rule", {
45-
schedule: events.Schedule.cron({ minute: "0", hour: "*" }),
45+
schedule: events.Schedule.cron({ minute: "0", hour: "0" }),
4646
});
4747
rule.addTarget(new targets.SnsTopic(topic));
4848
}

0 commit comments

Comments
 (0)