0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 16:46:00 +01:00

SERVER-94887 Increase sleep timeout between git clone retry attempts (#27178)

GitOrigin-RevId: fe6ddbd8e7a1d050106ff00d6a57de9ac34c9fc6
This commit is contained in:
Juan Gu 2024-09-17 15:16:03 -07:00 committed by MongoDB Bot
parent dcb8554d7f
commit a5a5cc0ccc

View File

@ -3,7 +3,7 @@ set -o verbose
cd src
for i in {1..5}; do
git clone --depth 1 git@github.com:10gen/QA.git jstests/qa_tests && RET=0 && break || RET=$? && sleep 1
git clone --depth 1 git@github.com:10gen/QA.git jstests/qa_tests && RET=0 && break || RET=$? && sleep 5
echo "Failed to clone git@github.com:10gen/QA.git, retrying..."
done