mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[CE/SP] `cron` jobs for Full Project History GitOrigin-RevId: 1f52bd4baaed5856193cd3babfe2c95865b25cf8
12 lines
304 B
Bash
Executable File
12 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=hard&timeout=3600000&limit=10000"
|