mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
13 lines
309 B
Bash
13 lines
309 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
echo "-----------------------------------"
|
||
|
echo "Retry project-history errors (hard)"
|
||
|
echo "-----------------------------------"
|
||
|
date
|
||
|
|
||
|
PROJECT_HISTORY_URL='http://localhost:3054'
|
||
|
|
||
|
curl -X POST "${PROJECT_HISTORY_URL}/retry/failures?failureType=hard&timeout=3600000&limit=10000"
|