mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-19 02:40:53 +00:00
11 lines
304 B
Bash
Executable file
11 lines
304 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
echo "-----------------------------------"
|
|
echo "Retry project-history errors (soft)"
|
|
echo "-----------------------------------"
|
|
|
|
PROJECT_HISTORY_URL='http://localhost:3054'
|
|
|
|
curl -X POST "${PROJECT_HISTORY_URL}/retry/failures?failureType=soft&timeout=3600000&limit=10000"
|