From f7840da71252734dd1421f0e4e89721fab99bbee Mon Sep 17 00:00:00 2001 From: Sergio Garcia <47090312+singiamtel@users.noreply.github.com> Date: Wed, 29 Jan 2025 11:22:44 +0100 Subject: [PATCH] Don't log passwords (#1466) --- ci/build-helpers.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/build-helpers.sh b/ci/build-helpers.sh index 9913d8eb..090f84f9 100755 --- a/ci/build-helpers.sh +++ b/ci/build-helpers.sh @@ -14,6 +14,7 @@ function influxdb_push () { esac done data="$data $(date +%s)000000000" + set +x case "$INFLUXDB_WRITE_URL" in '') ;; # If INFLUXDB_WRITE_URL starts with insecure_https://, then strip @@ -23,6 +24,7 @@ function influxdb_push () { *) curl -fSs --max-time 20 -XPOST --data-binary "$data" "$INFLUXDB_WRITE_URL" || :;; esac + set -x } function report_state () {