You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2022/09/28 18:54:14 UTC

[trafficserver] branch master updated: Fix expected sha1sum for the Proxy Verifier binary (#9112)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 48d358ff7 Fix expected sha1sum for the Proxy Verifier binary (#9112)
48d358ff7 is described below

commit 48d358ff731a002b7aee6aeadb22b67497cdfe62
Author: Brian Neradt <br...@gmail.com>
AuthorDate: Wed Sep 28 13:54:08 2022 -0500

    Fix expected sha1sum for the Proxy Verifier binary (#9112)
    
    With #9110, I accidentally used the md5sum instead of the sha1sum. This
    fixes the expected checksum to the correct value.
---
 tests/prepare_proxy_verifier.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/prepare_proxy_verifier.sh b/tests/prepare_proxy_verifier.sh
index 2995da84c..9789ee953 100755
--- a/tests/prepare_proxy_verifier.sh
+++ b/tests/prepare_proxy_verifier.sh
@@ -40,7 +40,7 @@ pv_dir="${pv_name}-${pv_version}"
 pv_tar_filename="${pv_dir}.tar.gz"
 pv_tar="${pv_top_dir}/${pv_tar_filename}"
 pv_tar_url="https://ci.trafficserver.apache.org/bintray/${pv_tar_filename}"
-expected_sha1="5962f0f1b3d4d983c4385301337cef2f"
+expected_sha1="ecedbb88f38bc797ed7b6a1cfad5fcd6de69037d"
 pv_client="${bin_dir}/verifier-client"
 pv_server="${bin_dir}/verifier-server"
 TAR=${TAR:-tar}