This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 7468a3a964954c1eedf69002cc64e58ad5084a7f Author: Brian Neradt <[email protected]> AuthorDate: Wed Jul 10 18:30:21 2024 -0500 Proxy Verifier: Update to version v2.12.0 (#11534) This new Proxy Verifier release includes the following that will be helpful for our tests: * --poll-timeout: a new command line argument to specify what the socket timeout should be. The previous hard-coded value, and the current default value, is 5000 milliseconds. * close-on-goaway: a new session directive for HTTP/2 connections that directs whether the verifier client will close the connection on a GOAWAY frame after processing outstanding streams, or continue to try to send the other specified streams from the replay file. The former behavior is the default as that is more in keeping with the RFC. * HTTP/2 Expect: 100-Continue fixes. (cherry picked from commit 68a5ee56deee9c76c0204f046883f2752f1d7c1e) --- CMakeLists.txt | 4 ++-- tests/prepare_proxy_verifier.sh | 2 +- tests/proxy-verifier-version.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2a30b1afa..5b0a9ba594 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -535,8 +535,8 @@ if(ENABLE_AUTEST) "" CACHE STRING "Additional options for autest (default \"\")" ) - set(PROXY_VERIFIER_VERSION "v2.10.1") - set(PROXY_VERIFIER_HASH "SHA1=0f189a37596d7488b5b81b5547df6fc1eadf56a1") + set(PROXY_VERIFIER_VERSION "v2.12.0") + set(PROXY_VERIFIER_HASH "SHA1=8e9adc6e0b31251ca8e6fc2064ae54e5d752bb72") include(proxy-verifier) endif() diff --git a/tests/prepare_proxy_verifier.sh b/tests/prepare_proxy_verifier.sh index 7b58807aec..729bf82aa9 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="0f189a37596d7488b5b81b5547df6fc1eadf56a1" +expected_sha1="8e9adc6e0b31251ca8e6fc2064ae54e5d752bb72" pv_client="${bin_dir}/verifier-client" pv_server="${bin_dir}/verifier-server" TAR=${TAR:-tar} diff --git a/tests/proxy-verifier-version.txt b/tests/proxy-verifier-version.txt index c0151c8a56..9f94b801a3 100644 --- a/tests/proxy-verifier-version.txt +++ b/tests/proxy-verifier-version.txt @@ -1 +1 @@ -v2.10.1 +v2.12.0
