48df8c9f38
GitOrigin-RevId: 8a2eda551796e62af6fddf80a3ce8cf37ec309d4
13 lines
308 B
Bash
Executable File
13 lines
308 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
echo "-----------------------------------"
|
|
echo "Retry project-history errors (hard)"
|
|
echo "-----------------------------------"
|
|
date
|
|
|
|
PROJECT_HISTORY_URL='http://127.0.0.1:3054'
|
|
|
|
curl -X POST "${PROJECT_HISTORY_URL}/retry/failures?failureType=hard&timeout=3600000&limit=10000"
|