From 7de3998799e5e74c74ca0e4217087f1345e986e4 Mon Sep 17 00:00:00 2001 From: Nick Travers Date: Thu, 17 Mar 2022 14:24:03 +0000 Subject: [PATCH] roachprod: update thrift artifact url for use with charybdefs The version of Thrift used in tests that use `charybdefs` has disappeared from the Apache artifacts repository that is used currently, which causes any roachtest that depends on `charybdefs` to fail due to not being able to fetch the artifact it needs. Update the artifact URL to pull from the Apache archive instead. Touches #78006,#78007,#78008,#78010,#78015,#78016. Release note: None. --- pkg/roachprod/install/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/roachprod/install/install.go b/pkg/roachprod/install/install.go index 88de74a20896..184dcc0800bc 100644 --- a/pkg/roachprod/install/install.go +++ b/pkg/roachprod/install/install.go @@ -39,7 +39,7 @@ sudo service cassandra stop; sudo mkdir -p "${thrift_dir}" sudo chmod 777 "${thrift_dir}" cd "${thrift_dir}" - curl "https://downloads.apache.org/thrift/0.13.0/thrift-0.13.0.tar.gz" | sudo tar xvz --strip-components 1 + curl "https://archive.apache.org/dist/thrift/0.13.0/thrift-0.13.0.tar.gz" | sudo tar xvz --strip-components 1 sudo ./configure --prefix=/usr sudo make -j$(nproc) sudo make install