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 4746fe7ebb
commit f3cbeffde1
No known key found for this signature in database
GPG Key ID: 03E696BFD472B26A

View File

@ -120,6 +120,7 @@ export const update = async (
const got = await getGotInstance();
const { statusCode, headers, body } = await got(endpoint, {
retry: { limit: 0 },
headers: {
Authorization: `Bearer ${deviceApiKey}`,
'If-None-Match': cache?.etag,