Skip to content

Commit

Permalink
fix: wait_for_services_timeout needs to be an integer in config file (#…
Browse files Browse the repository at this point in the history
…874)

## Description

The current runners config leads to this error when installing the
gitlab runner service:
```sh
FATAL: toml: line 33 (last key "runners.docker.wait_for_services_timeout"): incompatible types: TOML value has type string; destination has type integer 
```
  • Loading branch information
dfrkp authored Jun 6, 2023
1 parent 9cf881c commit 8d89d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/runner-config.tftpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ listen_address = "${prometheus_listen_address}"
pull_policy = ${runners_pull_policies}
runtime = "${runners_docker_runtime}"
helper_image = "${runners_helper_image}"
wait_for_services_timeout = "${runners_wait_for_services_timeout}"
wait_for_services_timeout = ${runners_wait_for_services_timeout}
${runners_docker_services}
[runners.docker.tmpfs]
${runners_volumes_tmpfs}
Expand Down

0 comments on commit 8d89d91

Please sign in to comment.