Skip to content

Commit

Permalink
roachprod: update thrift artifact url for use with charybdefs
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nicktrav committed Mar 18, 2022
1 parent 4c55430 commit e054e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/roachprod/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e054e3f

Please sign in to comment.