Skip to content

Commit

Permalink
Fix cron expression
Browse files Browse the repository at this point in the history
  • Loading branch information
gertjanmaas committed May 11, 2020
1 parent 007e6b8 commit 88ac0b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/runners/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@ variable "github_app" {
variable "scale_down_schedule_expression" {
description = "Scheduler expression to check every x for scale down."
type = string
default = "cron(*/5 * * * *)"
default = "cron(*/5 * * * ? *)"
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ variable "github_app" {
variable "scale_down_schedule_expression" {
description = "Scheduler expression to check every x for scale down."
type = string
default = "cron(*/5 * * * *)"
default = "cron(*/5 * * * ? *)"
}


0 comments on commit 88ac0b3

Please sign in to comment.