Skip to content

Commit 90fe432

Browse files
fix(contrib/coreos) etdcd_request_timeout value type
When validating the ``user-data.example`` in https://coreos.com/validate/ it warns (or errors?) about "Line 19:incorrect type for "etcd_request_timeout" (want float64)." Also it failed to discover the cluster nodes (but worked after lunch when I changed the ``3`` to ``3.0`` and reinited the cluster) haven't retried it with ``3`` again, could just be coincidence. Solution: Use float64 as the value type for etcd_request_timeout
1 parent 84381bf commit 90fe432

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

contrib/coreos/user-data.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ coreos:
1616
# will all publish the same private IP. This is harmless for cloud providers.
1717
public-ip: $private_ipv4
1818
# allow etcd to slow down at times
19-
etcd_request_timeout: 3
19+
etcd_request_timeout: 3.0
2020
units:
2121
- name: etcd.service
2222
command: start

0 commit comments

Comments
 (0)