Skip to content

Commit d778328

Browse files
authored
Website: Update Vanta integration script to retry failed requests to Vanta's authorization endpoint. (#17704)
Changes: - Chained a `.retry()` onto the post request that refreshes authorization tokens for Vanta connections, that will retry requests that return a `503 service unavailable` response.
1 parent 26965c8 commit d778328

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

website/scripts/send-data-to-vanta.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ module.exports = {
3434
grant_type: 'refresh_token',// eslint-disable-line camelcase
3535
},
3636
headers: { accept: 'application/json' }
37-
}).tolerate((err)=>{
37+
})
38+
.retry({raw:{statusCode: 503}})
39+
.tolerate((err)=>{
3840
// If an error occurs while sending a request to Vanta, we'll add the error to the errorReportById object, with this connections ID set as the key.
3941
errorReportById[connectionIdAsString] = new Error(`Could not refresh the token for Vanta connection (id: ${connectionIdAsString}). Full error: ${err}`);
4042
});

0 commit comments

Comments
 (0)