Skip to content

Commit

Permalink
fix: add " to the new update_interval_* options of the autoscaler (
Browse files Browse the repository at this point in the history
…#1177)

## Description

The new options `update_interval` and `update_interval_when_expecting`
are strings and need a `"` around the value. Otherwise the configuration
file has the wrong format and the Agent might not work as expected.

Closes #1176
  • Loading branch information
kayman-mk authored Aug 22, 2024
1 parent d19a565 commit e792256
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template/runner-docker-autoscaler-config.tftpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
plugin = "fleeting-plugin-aws"

capacity_per_instance = ${runners_capacity_per_instance}
update_interval = ${runners_update_interval}
update_interval_when_expecting = ${runners_update_interval_when_expecting}
update_interval = "${runners_update_interval}"
update_interval_when_expecting = "${runners_update_interval_when_expecting}"

max_use_count = ${runners_max_use_count}
max_instances = ${runners_max_instances}
Expand Down

0 comments on commit e792256

Please sign in to comment.