From: Xiubo Li Date: Mon, 28 Aug 2023 09:13:24 +0000 (+0800) Subject: qa: increase the http postBuffer size and disable sslVerify X-Git-Tag: v19.0.0~472^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cafbe1cf1568eab894d21899f1ec40320a019ee9;p=ceph.git qa: increase the http postBuffer size and disable sslVerify The git repo size is large and maybe the postBuffer size is not large enough and this will cause git commands' failure of '128'. Fixes: https://tracker.ceph.com/issues/59413 Signed-off-by: Xiubo Li --- diff --git a/qa/workunits/fs/snaps/snaptest-git-ceph.sh b/qa/workunits/fs/snaps/snaptest-git-ceph.sh index 12c1f0fdc003..2b38720c9a57 100755 --- a/qa/workunits/fs/snaps/snaptest-git-ceph.sh +++ b/qa/workunits/fs/snaps/snaptest-git-ceph.sh @@ -2,6 +2,10 @@ set -e +# increase the cache size +sudo git config --global http.sslVerify false +sudo git config --global http.postBuffer 1048576000 + # try it again if the clone is slow and the second time retried=false trap -- 'retry' EXIT