diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index 5ad1c6a..faddd6a 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -32,6 +32,9 @@ export async function getWorkflowLandingId( }; const res = await ky.post(WORKFLOW_LANDINGS_URL, { json: body, + retry: { + methods: ["post"], + }, }); return (await res.json()).uuid; }