Skip to content

Commit e792256

Browse files
authored
fix: add " to the new update_interval_* options of the autoscaler (#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
1 parent d19a565 commit e792256

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/runner-docker-autoscaler-config.tftpl

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
plugin = "fleeting-plugin-aws"
44

55
capacity_per_instance = ${runners_capacity_per_instance}
6-
update_interval = ${runners_update_interval}
7-
update_interval_when_expecting = ${runners_update_interval_when_expecting}
6+
update_interval = "${runners_update_interval}"
7+
update_interval_when_expecting = "${runners_update_interval_when_expecting}"
88

99
max_use_count = ${runners_max_use_count}
1010
max_instances = ${runners_max_instances}

0 commit comments

Comments
 (0)