mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 09:00:07 +00:00
Merge pull request #11270 from overleaf/jpa-retry-translations-upload
[web] scripts: add retry to translations upload script GitOrigin-RevId: b67af0def876d5e1dd0478e7b8fcd234bfc05447
This commit is contained in:
parent
95bb5ca4e4
commit
dea52fec6f
1 changed files with 14 additions and 1 deletions
|
@ -40,11 +40,24 @@ async function pollUploadStatus(importId) {
|
|||
}
|
||||
}
|
||||
|
||||
async function main() {
|
||||
async function uploadOnce() {
|
||||
const importId = await uploadLocales()
|
||||
await pollUploadStatus(importId)
|
||||
}
|
||||
|
||||
async function main() {
|
||||
try {
|
||||
await uploadOnce()
|
||||
} catch (err) {
|
||||
console.error('--- upload failed once ---')
|
||||
console.error(err)
|
||||
console.error('--- upload failed once ---')
|
||||
console.log('retrying upload in 30s')
|
||||
await sleep(30_000)
|
||||
await uploadOnce()
|
||||
}
|
||||
}
|
||||
|
||||
main().catch(error => {
|
||||
console.error({ error })
|
||||
process.exit(1)
|
||||
|
|
Loading…
Reference in a new issue