From 71a78eaf99af8e3d26ffaf5f5aef22f65a9be078 Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Fri, 29 May 2026 16:45:17 -0500 Subject: [PATCH] qa/workunits/rados: fetch files via GitHub instead of git.ceph.com The current method fetches files from git.ceph.com, which is unreliable and sometimes causes the file to contain HTML output instead of the C++ code. Fetching from GitHub is a more reliable way to get the C++ code. Fixes: https://tracker.ceph.com/issues/68669 Signed-off-by: Laura Flores --- qa/workunits/rados/test_librados_build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qa/workunits/rados/test_librados_build.sh b/qa/workunits/rados/test_librados_build.sh index d516d0ba588..386c045379c 100755 --- a/qa/workunits/rados/test_librados_build.sh +++ b/qa/workunits/rados/test_librados_build.sh @@ -32,8 +32,7 @@ case $(librados-config --release | grep -Po ' \(\K[^\)]+') in echo "unknown release '$(librados-config --release)'" >&2 return 1;; esac -DL_PREFIX="http://git.ceph.com/?p=ceph.git;a=blob_plain;hb=${BRANCH};f=examples/librados/" -#DL_PREFIX="https://raw.githubusercontent.com/ceph/ceph/master/examples/librados/" +DL_PREFIX="https://raw.githubusercontent.com/ceph/ceph/${BRANCH}/examples/librados/" DESTDIR=$(pwd) function cleanup () { -- 2.47.3