Skip to content
Snippets Groups Projects
Unverified Commit 210aebe6 authored by Nicolò Pretto's avatar Nicolò Pretto Committed by GitHub
Browse files

fix(sdk): increase setup timeout to 15s to avoid 'user already created' issue on retry

parent 8b4f8554
No related branches found
No related tags found
No related merge requests found
......@@ -87,9 +87,9 @@ export const setupMetabaseInstance: CliStepMethod = async state => {
},
}),
headers: { "content-type": "application/json" },
signal: AbortSignal.timeout(2500),
signal: AbortSignal.timeout(15_000),
}),
{ retries: 20, delay: 1000 },
{ retries: 5, delay: 1000 },
);
if (!res.ok) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment