mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-23 14:00:08 +02:00
12 lines
308 B
Bash
Executable file
12 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"
|