Remove GOT retries on state poll

The state poll already has retry implementation, making the GOT default
unnecessary.

Change-type: patch
This commit is contained in:
Felipe Lalanne 2025-03-11 18:18:30 -03:00
parent bdbc6a4ba4
commit ae337a1dd7
No known key found for this signature in database
GPG Key ID: 03E696BFD472B26A

View File

@ -121,6 +121,7 @@ export const update = async (
const got = await getGotInstance();
const { statusCode, headers, body } = await got(endpoint, {
retry: { limit: 0 },
agent: {
https: new Agent({
keepAlive: true,