From dea52fec6f374851b395ed4f27a611c24fb1bf5a Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Mon, 16 Jan 2023 12:01:37 +0000 Subject: [PATCH] Merge pull request #11270 from overleaf/jpa-retry-translations-upload [web] scripts: add retry to translations upload script GitOrigin-RevId: b67af0def876d5e1dd0478e7b8fcd234bfc05447 --- services/web/scripts/translations/upload.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/services/web/scripts/translations/upload.js b/services/web/scripts/translations/upload.js index 3a2034ceed..942222add1 100644 --- a/services/web/scripts/translations/upload.js +++ b/services/web/scripts/translations/upload.js @@ -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)