Skip to content

Commit 69eb93e

Browse files
author
Matthew Fisher
committed
fix(*): bump etcd ttl to 20 seconds
The component's boot relies on etcdctl for publishing keys to etcd. Bumping to 20 seconds should prevent users from having their TTLs expire due to etcd latency issues.
1 parent 168d283 commit 69eb93e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/boot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set -eo pipefail
1313
export ETCD_PORT=${ETCD_PORT:-4001}
1414
export ETCD="$HOST:$ETCD_PORT"
1515
export ETCD_PATH=${ETCD_PATH:-/deis/controller}
16-
export ETCD_TTL=${ETCD_TTL:-10}
16+
export ETCD_TTL=${ETCD_TTL:-20}
1717

1818
# wait for etcd to be available
1919
until etcdctl --no-sync -C $ETCD ls >/dev/null 2>&1; do

0 commit comments

Comments
 (0)