You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by zr...@apache.org on 2022/03/18 20:40:37 UTC

[trafficcontrol] branch master updated: Reduce over-verbose logging (#6676)

This is an automated email from the ASF dual-hosted git repository.

zrhoffman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new a0d33de  Reduce over-verbose logging (#6676)
a0d33de is described below

commit a0d33de24b2953c15dad3fca445fcd86d80c2188
Author: ocket8888 <oc...@apache.org>
AuthorDate: Fri Mar 18 14:40:28 2022 -0600

    Reduce over-verbose logging (#6676)
---
 cache-config/testing/docker/ort_test/run.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cache-config/testing/docker/ort_test/run.sh b/cache-config/testing/docker/ort_test/run.sh
index 3155652..b728594 100755
--- a/cache-config/testing/docker/ort_test/run.sh
+++ b/cache-config/testing/docker/ort_test/run.sh
@@ -48,7 +48,7 @@ TERM=xterm; export TERM
 if [ -f /trafficcontrol/GO_VERSION ]; then
   go_version=$(cat /trafficcontrol/GO_VERSION) && \
       curl -Lo go.tar.gz https://dl.google.com/go/go${go_version}.linux-amd64.tar.gz && \
-        tar -C /usr/local -xvzf go.tar.gz && \
+        tar -C /usr/local -xzf go.tar.gz && \
         ln -s /usr/local/go/bin/go /usr/bin/go && \
         rm go.tar.gz
 else
@@ -65,7 +65,7 @@ fi
 cd "$(realpath /ort-tests)"
 
 # fetch dependent packages for tests
-go mod vendor -v
+go mod vendor
 
 cp /ort-tests/tc-fixtures.json /tc-fixtures.json
 ATS_RPM=`basename /yumserver/test-rpms/trafficserver-[0-9]*.rpm |