diff --git a/ethd b/ethd index b6984f14..c746ea1e 100755 --- a/ethd +++ b/ethd @@ -777,10 +777,9 @@ envmigrate() { var=ENV_VERSION __target_ver=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "default.env" || true) __source_ver=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "${ENV_FILE}" || true) -# Not yet - I want invis to find that bug. After that, enable this -# if [[ "${__keep_targets}" -eq 1 && "${__target_ver}" = "${__source_ver}" ]]; then # No changes in template, do nothing -# return 0 -# fi + if [[ "${__keep_targets}" -eq 1 && "${__target_ver}" = "${__source_ver}" ]]; then # No changes in template, do nothing + return 0 + fi if [ "${__keep_targets}" -eq 0 ]; then echo "Refreshing build targets in ${ENV_FILE}" diff --git a/loki/loki.yml b/loki/loki.yml index 2af0d979..213ff93b 100644 --- a/loki/loki.yml +++ b/loki/loki.yml @@ -44,3 +44,5 @@ schema_config: limits_config: retention_period: 30d + ingestion_rate_mb: 128 + ingestion_burst_size_mb: 512