SERVER-125488 Bump mongo-task-generator to v3.5.2 and add curl retries (#52582)

GitOrigin-RevId: 5bbb6a7fea39385af0dbd465d783f093a64613d8
This commit is contained in:
Teo Voinea 2026-04-27 10:13:15 -04:00 committed by MongoDB Bot
parent 83cf80888b
commit 33bb6b4a84

View File

@ -1,6 +1,6 @@
function setup_mongo_task_generator {
if [ ! -f mongo-task-generator ]; then
curl -L https://github.com/mongodb/mongo-task-generator/releases/download/v3.5.1/mongo-task-generator --output mongo-task-generator
curl -fL --retry 5 --retry-delay 10 --retry-max-time 120 https://github.com/mongodb/mongo-task-generator/releases/download/v3.5.2/mongo-task-generator --output mongo-task-generator
chmod +x mongo-task-generator
fi
}