mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-23 14:00:08 +02:00
11 lines
303 B
Bash
Executable file
11 lines
303 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
echo "-----------------------------------"
|
|
echo "Retry project-history errors (soft)"
|
|
echo "-----------------------------------"
|
|
|
|
PROJECT_HISTORY_URL='http://127.0.0.1:3054'
|
|
|
|
curl -X POST "${PROJECT_HISTORY_URL}/retry/failures?failureType=soft&timeout=3600000&limit=10000"
|