Skip to content
Snippets Groups Projects
Commit c42d6cb2 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(gitlab): handle ETIMEDOUT

parent d1b427b5
No related branches found
Tags 25.12.8
No related merge requests found
......@@ -35,6 +35,7 @@ async function get(path: string, options: any) {
throw new Error('platform-failure');
}
if (
err.code === 'ETIMEDOUT' ||
err.code === 'ECONNRESET' ||
err.code === 'UNABLE_TO_VERIFY_LEAF_SIGNATURE'
) {
......
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